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

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

Issue 1871343006: [NTP Snippets] 📷 Add placeholders and start caching thumbnails (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move the async task out as it needs to be stopped from the view, not the snippet Created 4 years, 8 months 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 <color name="sad_tab_body_text_color">#646464</color> 89 <color name="sad_tab_body_text_color">#646464</color>
90 90
91 <!-- NTP Colors. Used on the bookmarks and recent tabs pages. --> 91 <!-- NTP Colors. Used on the bookmarks and recent tabs pages. -->
92 <color name="ntp_bg">#fff</color> 92 <color name="ntp_bg">#fff</color>
93 <color name="ntp_bg_incognito">#222</color> 93 <color name="ntp_bg_incognito">#222</color>
94 <color name="ntp_list_item_text">#333</color> 94 <color name="ntp_list_item_text">#333</color>
95 <color name="ntp_list_header_text">#333</color> 95 <color name="ntp_list_header_text">#333</color>
96 <color name="ntp_list_header_subtext">#969696</color> 96 <color name="ntp_list_header_subtext">#969696</color>
97 <color name="ntp_list_header_subtext_active">#7cadff</color> 97 <color name="ntp_list_header_subtext_active">#7cadff</color>
98 <color name="ntp_with_cards_bg">#f2f2f2</color> 98 <color name="ntp_with_cards_bg">#f2f2f2</color>
99 <color name="snippets_thumnail_placeholder_bg">#f2f2f2</color>
99 <color name="snippets_background_color">#fff</color> 100 <color name="snippets_background_color">#fff</color>
100 <color name="snippets_publisher_name_color">#646464</color> 101 <color name="snippets_publisher_name_color">#646464</color>
101 <color name="snippets_text_color">#646464</color> 102 <color name="snippets_text_color">#646464</color>
102 <color name="snippets_list_header_text_color">#646464</color> 103 <color name="snippets_list_header_text_color">#646464</color>
103 <color name="snippets_headline_text_color">#333333</color> 104 <color name="snippets_headline_text_color">#333333</color>
104 105
105 <!-- Signin promo screen colors --> 106 <!-- Signin promo screen colors -->
106 <color name="illustration_background_color">#4FC3F7</color> 107 <color name="illustration_background_color">#4FC3F7</color>
107 108
108 <!-- Contextual Search colors --> 109 <!-- Contextual Search colors -->
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 173
173 <!-- Physical Web diagnostics colors --> 174 <!-- Physical Web diagnostics colors -->
174 <color name="physical_web_diags_success_color">#00933b</color> 175 <color name="physical_web_diags_success_color">#00933b</color>
175 <color name="physical_web_diags_failure_color">#f90101</color> 176 <color name="physical_web_diags_failure_color">#f90101</color>
176 <color name="physical_web_diags_indeterminate_color">#f2b50f</color> 177 <color name="physical_web_diags_indeterminate_color">#f2b50f</color>
177 178
178 <!-- Bottom bar colors --> 179 <!-- Bottom bar colors -->
179 <color name="bottom_bar_shadow_color">#1d000000</color> 180 <color name="bottom_bar_shadow_color">#1d000000</color>
180 181
181 </resources> 182 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698