From 946c6e2d9aafd3b0e78c345de91e0716e6441b79 Mon Sep 17 00:00:00 2001 From: Clemens Zeidler Date: Thu, 2 Dec 2010 21:05:46 +0000 Subject: [PATCH] Just a very slight improvement of the S&T highlight colour. Change it from red to a more descent greenish. Think the border colour is acceptable but the highlighted tab still looks awful. Feel free to improve it! By the way, is there a pattern how to select the colours? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39708 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../decorators/SATDecorator/SATDecorator.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/add-ons/decorators/SATDecorator/SATDecorator.cpp b/src/add-ons/decorators/SATDecorator/SATDecorator.cpp index 5643af96be..496c1a86b7 100644 --- a/src/add-ons/decorators/SATDecorator/SATDecorator.cpp +++ b/src/add-ons/decorators/SATDecorator/SATDecorator.cpp @@ -29,15 +29,15 @@ static const float kResizeKnobSize = 18.0; static const rgb_color kHighlightFrameColors[6] = { - { 152, 0, 0, 255 }, - { 240, 0, 0, 255 }, - { 224, 0, 0, 255 }, - { 208, 0, 0, 255 }, - { 152, 0, 0, 255 }, - { 108, 0, 0, 255 } + { 72, 152, 0, 255 }, + { 160, 240, 0, 255 }, + { 144, 224, 0, 255 }, + { 128, 208, 0, 255 }, + { 72, 152, 0, 255 }, + { 38, 108, 0, 255 } }; -static const rgb_color kHighlightTabColor = { 255, 0, 0, 255 }; +static const rgb_color kHighlightTabColor = { 128, 208, 0, 255 }; static const rgb_color kHighlightTabColorLight = tint_color(kHighlightTabColor, (B_LIGHTEN_MAX_TINT + B_LIGHTEN_2_TINT) / 2); static const rgb_color kHighlightTabColorBevel = tint_color(kHighlightTabColor,