diff options
author | Nancy Chen <nancychen@google.com> | 2014-07-30 12:19:35 -0700 |
---|---|---|
committer | Nancy Chen <nancychen@google.com> | 2014-07-30 12:19:35 -0700 |
commit | b9a993620434e0e407ef7bc52f3712e611919f18 (patch) | |
tree | 3f520f5430cfcace835f3c52fb01e7de55b48dc3 /res | |
parent | c7db678907ef1ae16aec7e963ef4884a272ab48e (diff) |
Update red and green colors in call log
Missed and incoming/outgoing need updated red/green colors.
Bug: 16385550
Change-Id: I2cf95327a46b8a4dd5b50139e46db06dba8a4e8f
Diffstat (limited to 'res')
-rw-r--r-- | res/values/colors.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml index c3b99b9bb..448d1e6c1 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -20,6 +20,8 @@ <!-- Secondary text color in the Dialer --> <color name="dialtacts_secondary_text_color">#737373</color> <color name="dialer_accent_color">#eeff41</color> + <color name="dialer_red_highlight_color">#ff1744</color> + <color name="dialer_green_highlight_color">#00c853</color> <!-- Color for the setting text. --> <color name="setting_primary_color">#4d4c4c</color> @@ -28,7 +30,7 @@ <color name="setting_background_color">#ffffff</color> <!-- Color of the text describing an unconsumed missed call. --> - <color name="call_log_missed_call_highlight_color">#FF0000</color> + <color name="call_log_missed_call_highlight_color">@color/dialer_red_highlight_color</color> <!-- Color of the text describing an unconsumed voicemail. --> <color name="call_log_voicemail_highlight_color">#33b5e5</color> @@ -93,7 +95,7 @@ <color name="missed_call">#ff2e58</color> <!-- Color for answered or outgoing call icons. --> - <color name="answered_call">#2aad6f</color> + <color name="answered_call">@color/dialer_green_highlight_color</color> <!-- Color for icons in the actionbar --> <color name="actionbar_icon_color">#ffffff</color> |