From 4da7dee8cf18c17c451e9d9885545dcdd1ba22c7 Mon Sep 17 00:00:00 2001
From: Tomaz Canabrava <tomaz.canabrava@intel.com>
Date: Mon, 30 Jun 2014 18:46:51 -0300
Subject: [PATCH] Better colors for Add and Plan modes.

Those are ligther colors and it should be a better choice
a way better choice is to ask for a designer wich color to use
but most of my minions are busy.

Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
 qt-ui/profile/profilewidget2.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index 7fd182f12..0aa2a4a2e 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -805,7 +805,7 @@ void ProfileWidget2::setAddState()
 	/* show the same stuff that the profile shows. */
 	currentState = ADD; /* enable the add state. */
 	diveCeiling->setVisible(true);
-	setBackgroundBrush(QColor(Qt::blue).light());
+	setBackgroundBrush(QColor("#A7DCFF"));
 }
 
 void ProfileWidget2::setPlanState()
@@ -834,7 +834,7 @@ void ProfileWidget2::setPlanState()
 	/* show the same stuff that the profile shows. */
 	currentState = PLAN; /* enable the add state. */
 	diveCeiling->setVisible(true);
-	setBackgroundBrush(QColor(Qt::green).light());
+	setBackgroundBrush(QColor("#D7E3EF"));
 }
 
 extern struct ev_select *ev_namelist;