From f26dffe5e30b05cf48ac85924148377084302139 Mon Sep 17 00:00:00 2001 From: Sandro Giessl Date: Thu, 24 Mar 2005 17:01:04 +0000 Subject: [PATCH] make the button background lighter again as suggested on kde-devel... svn path=/trunk/kdebase/kwin/; revision=400269 --- clients/plastik/plastikbutton.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/clients/plastik/plastikbutton.cpp b/clients/plastik/plastikbutton.cpp index 8789560696..9813b4d219 100644 --- a/clients/plastik/plastikbutton.cpp +++ b/clients/plastik/plastikbutton.cpp @@ -183,13 +183,13 @@ void PlastikButton::drawButton(QPainter *painter) } QColor contourTop = alphaBlendColors(Handler()->getColor(TitleGradient2, active), - Qt::white, 215); + Qt::black, 215); QColor contourBottom = alphaBlendColors(Handler()->getColor(TitleGradient3, active), - Qt::white, 215); + Qt::black, 215); QColor sourfaceTop = alphaBlendColors(Handler()->getColor(TitleGradient2, active), - Qt::black, 225); + Qt::white, 210); QColor sourfaceBottom = alphaBlendColors(Handler()->getColor(TitleGradient3, active), - Qt::black, 225); + Qt::white, 210); int highlightAlpha = static_cast(255-((60/static_cast(ANIMATIONSTEPS))* static_cast(animProgress) ) );