diff options
author | 2024-03-07 15:57:24 +0000 | |
---|---|---|
committer | 2024-03-07 23:09:02 +0000 | |
commit | e35ff341f58698ed521fa4d6ee689fc57ee3a67a (patch) | |
tree | b43afe033d16de1dc2effb1b657661ca0a6d42ed | |
parent | 355961be15a6bb1f9957da4d7326f9b2077068a5 (diff) |
Update surface colors for Wear
Align with black background convention
Note this is required for CTS SystemPaletteTest(contrast)
Bug: b/327528730
Test: atest SystemPaletteTest
Change-Id: Ib9e02083c1d3231e29b4fe933ad625c11324f4c8
-rw-r--r-- | core/res/res/values-watch/colors.xml | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/core/res/res/values-watch/colors.xml b/core/res/res/values-watch/colors.xml index 0b00bd8ea686..e2b7505f3c6e 100644 --- a/core/res/res/values-watch/colors.xml +++ b/core/res/res/values-watch/colors.xml @@ -18,11 +18,26 @@ <resources> <color name="system_error_light">#B3261E</color> <color name="system_on_error_light">#FFFFFF</color> - <color name="system_error_container_light">#F9DEDC</color> + <color name="system_error_container_light">#F7DCDA</color> <color name="system_on_error_container_light">#410E0B</color> - <color name="system_error_dark">#EC928E</color> - <color name="system_on_error_dark">#410E0B</color> - <color name="system_error_container_dark">#F2B8B5</color> - <color name="system_on_error_container_dark">#601410</color> + <color name="system_error_dark">#F2B8B5</color> + <color name="system_on_error_dark">#601410</color> + <color name="system_error_container_dark">#FF8986</color> + <color name="system_on_error_container_dark">#410E0B</color> + + <!-- With material deprecation of 'background' in favor of 'surface' we flatten these + on watches to match the black background requirements --> + <color name="system_surface_dark">#000000</color> + <color name="system_surface_dim_dark">#000000</color> + <color name="system_surface_bright_dark">#000000</color> + + <!-- Wear flattens the typical 5 container layers to 3; container + high & low --> + <color name="system_surface_container_dark">#303030</color> + <color name="system_surface_variant_dark">#303030</color> + <color name="system_surface_container_high_dark">#474747</color> + <color name="system_surface_container_highest_dark">#474747</color> + <color name="system_surface_container_low_dark">#252626</color> + <color name="system_surface_container_lowest_dark">#252626</color> + </resources> |