diff options
| author | Gilles Debunne <debunne@google.com> | 2010-08-13 15:50:38 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-08-13 15:50:38 -0700 |
| commit | 162d709b934716650513b6330c734e77175c4668 (patch) | |
| tree | a207a470fc422a3765505c964bf19cd7594ebbf8 /core | |
| parent | b332747ee087d2baa5c54b3382e57ad435158737 (diff) | |
| parent | 9a30556b9a7dfebdb149a889afb58509067d86ef (diff) | |
| download | frameworks_base-162d709b934716650513b6330c734e77175c4668.zip frameworks_base-162d709b934716650513b6330c734e77175c4668.tar.gz frameworks_base-162d709b934716650513b6330c734e77175c4668.tar.bz2 | |
Merge "Changed default background colors to new UI style."
Diffstat (limited to 'core')
| -rw-r--r-- | core/res/res/values/colors.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/res/res/values/colors.xml b/core/res/res/values/colors.xml index b6af6b2..a2316e0 100644 --- a/core/res/res/values/colors.xml +++ b/core/res/res/values/colors.xml @@ -18,8 +18,8 @@ */ --> <resources> - <drawable name="screen_background_light">#ffffffff</drawable> - <drawable name="screen_background_dark">#ff000000</drawable> + <drawable name="screen_background_light">#ffefefef</drawable> + <drawable name="screen_background_dark">#ff101010</drawable> <drawable name="status_bar_closed_default_background">#ff000000</drawable> <drawable name="status_bar_opened_default_background">#ff000000</drawable> <drawable name="search_bar_default_color">#ff000000</drawable> @@ -36,18 +36,18 @@ <color name="white">#ffffffff</color> <color name="black">#ff000000</color> <color name="transparent">#00000000</color> - <color name="background_dark">#ff000000</color> - <color name="bright_foreground_dark">#ffffffff</color> + <color name="background_dark">#ff101010</color> + <color name="bright_foreground_dark">#ffefefef</color> <color name="bright_foreground_dark_disabled">#80ffffff</color> - <color name="bright_foreground_dark_inverse">#ff000000</color> + <color name="bright_foreground_dark_inverse">@android:color/background_dark</color> <color name="dim_foreground_dark">#bebebe</color> <color name="dim_foreground_dark_disabled">#80bebebe</color> <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="bright_foreground_light">#ff000000</color> - <color name="bright_foreground_light_inverse">#ffffffff</color> + <color name="background_light">@android:color/bright_foreground_dark</color> + <color name="bright_foreground_light">@android:color/background_dark</color> + <color name="bright_foreground_light_inverse">@android:color/bright_foreground_dark</color> <color name="bright_foreground_light_disabled">#80000000</color> <color name="dim_foreground_light">#323232</color> <color name="dim_foreground_light_disabled">#80323232</color> |
