diff options
| author | Barry Wardell <rockbox@barrywardell.net> | 2008-05-05 13:11:38 +0000 |
|---|---|---|
| committer | Barry Wardell <rockbox@barrywardell.net> | 2008-05-05 13:11:38 +0000 |
| commit | 9a54d9645df4b08789dcf5a7a74e60bf84e407be (patch) | |
| tree | becb91eb69a20e4c8a9167f592ce90174115f9f5 | |
| parent | 57cbd777889010c39db892fe6e9f844f26eb3ed9 (diff) | |
| download | rockbox-9a54d9645df4b08789dcf5a7a74e60bf84e407be.zip rockbox-9a54d9645df4b08789dcf5a7a74e60bf84e407be.tar.gz rockbox-9a54d9645df4b08789dcf5a7a74e60bf84e407be.tar.bz2 rockbox-9a54d9645df4b08789dcf5a7a74e60bf84e407be.tar.xz | |
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
| -rw-r--r-- | firmware/export/lcd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index 6b2352f..3e0ec78 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 */ |