From e54b10160f809bbb03eda8d0d933d22069c4e164 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Sat, 29 Oct 2011 16:06:08 +0000 Subject: [PATCH] Close #3223 with patch provided by Humdinger (which I adjusted to the current state of the code). git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42964 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/diskusage/DiskUsage.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/diskusage/DiskUsage.h b/src/apps/diskusage/DiskUsage.h index cdd222ee47..fc258bd67c 100644 --- a/src/apps/diskusage/DiskUsage.h +++ b/src/apps/diskusage/DiskUsage.h @@ -18,10 +18,10 @@ const rgb_color RGB_WIN = { 0xDE, 0xDB, 0xDE, 0xFF }; const rgb_color RGB_PIE_OL = { 0x80, 0x80, 0x80, 0xFF }; const rgb_color RGB_PIE_BG = { 0xFF, 0xFF, 0xFF, 0xFF }; const rgb_color RGB_PIE_MT = { 0xA0, 0xA0, 0xA0, 0xFF }; -const rgb_color RGB_PIE_1 = { 0x00, 0x60, 0x60, 0xFF }; +const rgb_color RGB_PIE_1 = { 0x00, 0x00, 0xb6, 0xFF }; const rgb_color RGB_PIE_2 = { 0x00, 0x00, 0x68, 0xFF }; -const rgb_color RGB_PIE_3 = { 0x60, 0x00, 0x60, 0xFF }; -const rgb_color RGB_PIE_4 = { 0x68, 0x00, 0x00, 0xFF }; +const rgb_color RGB_PIE_3 = { 0xcf, 0x00, 0x00, 0xFF }; +const rgb_color RGB_PIE_4 = { 0xaf, 0x63, 0xb1, 0xFF }; const int kBasePieColorCount = 4; const rgb_color kBasePieColor[kBasePieColorCount]