From ba7545ce7a4ca3980bb5fc281a896fd2298dca77 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Tue, 16 Aug 2016 08:32:13 +0200 Subject: [PATCH] - themes: initialize foot_Text a little brighter --- src/gui/themes.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/themes.cpp b/src/gui/themes.cpp index 4493b8e94..58965f1f3 100644 --- a/src/gui/themes.cpp +++ b/src/gui/themes.cpp @@ -365,9 +365,9 @@ void CThemes::getTheme(CConfigFile &configfile) t.menu_Foot_green = configfile.getInt32( "menu_Foot_green", 0x10 ); t.menu_Foot_blue = configfile.getInt32( "menu_Foot_blue", 0x10 ); t.menu_Foot_Text_alpha = configfile.getInt32( "menu_Foot_Text_alpha", 0x00 ); - t.menu_Foot_Text_red = configfile.getInt32( "menu_Foot_Text_red", 0x28 ); - t.menu_Foot_Text_green = configfile.getInt32( "menu_Foot_Text_green", 0x28 ); - t.menu_Foot_Text_blue = configfile.getInt32( "menu_Foot_Text_blue", 0x28 ); + t.menu_Foot_Text_red = configfile.getInt32( "menu_Foot_Text_red", 0x40 ); + t.menu_Foot_Text_green = configfile.getInt32( "menu_Foot_Text_green", 0x40 ); + t.menu_Foot_Text_blue = configfile.getInt32( "menu_Foot_Text_blue", 0x40 ); t.menu_Hint_gradient = configfile.getInt32( "menu_Hint_gradient", CC_COLGRAD_OFF); t.menu_Hint_gradient_direction = configfile.getInt32( "menu_Hint_gradient_direction", CFrameBuffer::gradientVertical);