diff options
| author | 2009-06-02 15:15:12 -0700 | |
|---|---|---|
| committer | 2009-06-02 15:15:12 -0700 | |
| commit | ce16d787bdcefa393cb2da09652b580ba94b94a9 (patch) | |
| tree | 78f5020d064a5294e4f7aad4636c9c85c65b8b1a | |
| parent | b56736b666dd906a214639e24b624ec368e383f5 (diff) | |
Fixes #1890914.
Bright theme's background color should be #fff9f9f9 instead of pure white (#ffffffff).
| -rw-r--r-- | core/res/res/values/colors.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/res/res/values/colors.xml b/core/res/res/values/colors.xml index 96369f4099a4..f67f04cf2469 100644 --- a/core/res/res/values/colors.xml +++ b/core/res/res/values/colors.xml @@ -18,7 +18,7 @@ */ --> <resources> - <drawable name="screen_background_light">#ffffffff</drawable> + <drawable name="screen_background_light">#fff9f9f9</drawable> <drawable name="screen_background_dark">#ff1a1a1a</drawable> <drawable name="status_bar_closed_default_background">#ff000000</drawable> <drawable name="status_bar_opened_default_background">#ff000000</drawable> @@ -37,7 +37,7 @@ <color name="dim_foreground_dark_inverse">#323232</color> <color name="dim_foreground_dark_inverse_disabled">#80323232</color> <color name="hint_foreground_dark">#808080</color> - <color name="background_light">#ffffffff</color> + <color name="background_light">#fff9f9f9</color> <color name="bright_foreground_light">#ff000000</color> <color name="bright_foreground_light_inverse">#ffffffff</color> <color name="bright_foreground_light_disabled">#80000000</color> @@ -58,7 +58,7 @@ <drawable name="editbox_dropdown_dark_frame">@drawable/editbox_dropdown_background_dark</drawable> <drawable name="editbox_dropdown_light_frame">@drawable/editbox_dropdown_background</drawable> - <drawable name="input_method_fullscreen_background">#ffffffff</drawable> + <drawable name="input_method_fullscreen_background">#fff9f9f9</drawable> <!-- For date picker widget --> <drawable name="selected_day_background">#ff0092f4</drawable> |