From 9a54d9645df4b08789dcf5a7a74e60bf84e407be Mon Sep 17 00:00:00 2001 From: Barry Wardell Date: Mon, 5 May 2008 13:11:38 +0000 Subject: [PATCH] Change the default background colour to black on colour targets. It fits better with the default theme and also with the bootloaders. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17380 a1c6a512-1295-4272-9138-f99709370657 --- firmware/export/lcd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index 6b2352f187..3e0ec780d2 100644 --- a/firmware/export/lcd.h +++ b/firmware/export/lcd.h @@ -285,8 +285,8 @@ static inline unsigned lcd_color_to_native(unsigned color) #define LCD_DARKGRAY LCD_RGBPACK(85, 85, 85) #define LCD_LIGHTGRAY LCD_RGBPACK(170, 170, 170) #define LCD_WHITE LCD_RGBPACK(255, 255, 255) -#define LCD_DEFAULT_FG LCD_BLACK -#define LCD_DEFAULT_BG LCD_RGBPACK(182, 198, 229) /* rockbox blue */ +#define LCD_DEFAULT_FG LCD_WHITE +#define LCD_DEFAULT_BG LCD_BLACK #define LCD_DEFAULT_LS LCD_WHITE #elif LCD_DEPTH > 1 /* greyscale */