Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: chrome/android/java/res/values/colors.xml

Issue 2586643002: [Downloads] Add a horizontal material-styled ProgressBar (Closed)
Patch Set: Get rid of specialized throbber color Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <resources> 6 <resources>
7 <!-- Common colors --> 7 <!-- Common colors -->
8 <color name="default_text_color">#333</color> 8 <color name="default_text_color">#333</color>
9 <color name="default_primary_color">#f2f2f2</color> 9 <color name="default_primary_color">#f2f2f2</color>
10 <color name="light_normal_color">#5A5A5A</color> 10 <color name="light_normal_color">#5A5A5A</color>
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 <color name="most_visited_offline_badge_tint">#4285f4</color> 117 <color name="most_visited_offline_badge_tint">#4285f4</color>
118 118
119 <!-- Contextual Search colors --> 119 <!-- Contextual Search colors -->
120 <color name="contextual_search_promo_text_color">#333333</color> 120 <color name="contextual_search_promo_text_color">#333333</color>
121 <color name="contextual_search_promo_background_color">#EEEEEE</color> 121 <color name="contextual_search_promo_background_color">#EEEEEE</color>
122 <color name="contextual_search_promo_border_color">#C2C2C2</color> 122 <color name="contextual_search_promo_border_color">#C2C2C2</color>
123 123
124 <!-- Progress Bar colors --> 124 <!-- Progress Bar colors -->
125 <color name="progress_bar_foreground">@color/light_active_color</color> 125 <color name="progress_bar_foreground">@color/light_active_color</color>
126 <color name="progress_bar_foreground_white">@android:color/white</color> 126 <color name="progress_bar_foreground_white">@android:color/white</color>
127 <color name="progress_bar_secondary">@color/google_grey_600</color>
127 <color name="progress_bar_background">#3d4386f7</color> 128 <color name="progress_bar_background">#3d4386f7</color>
128 <color name="progress_bar_background_white">#4d000000</color> 129 <color name="progress_bar_background_white">#4d000000</color>
129 130
130 <!-- Theme colors. Also used for toolbar background --> 131 <!-- Theme colors. Also used for toolbar background -->
131 <color name="incognito_primary_color">#505050</color> 132 <color name="incognito_primary_color">#505050</color>
132 133
133 <!-- LocationBar colors --> 134 <!-- LocationBar colors -->
134 <color name="locationbar_dark_hint_text">#969696</color> 135 <color name="locationbar_dark_hint_text">#969696</color>
135 <color name="locationbar_light_hint_text">#80ffffff</color> 136 <color name="locationbar_light_hint_text">#80ffffff</color>
136 <color name="locationbar_light_selection_color">#cc5595fe</color> 137 <color name="locationbar_light_selection_color">#cc5595fe</color>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 <color name="payments_section_edit_background">#f5f5f5</color> 195 <color name="payments_section_edit_background">#f5f5f5</color>
195 <color name="payments_section_chevron">#b2b2b2</color> 196 <color name="payments_section_chevron">#b2b2b2</color>
196 <color name="payments_section_separator">#e0e0e0</color> 197 <color name="payments_section_separator">#e0e0e0</color>
197 198
198 <!-- Other colors --> 199 <!-- Other colors -->
199 <color name="selectable_list_item_highlight_color">#804281f4</color> 200 <color name="selectable_list_item_highlight_color">#804281f4</color>
200 <color name="media_viewer_bg">#000000</color> 201 <color name="media_viewer_bg">#000000</color>
201 <color name="image_viewer_bg">#0e0e0e</color> 202 <color name="image_viewer_bg">#0e0e0e</color>
202 203
203 </resources> 204 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698