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

Side by Side Diff: ui/app_list/app_list_constants.cc

Issue 2941573002: cros: add google/mic icons to searchbox (Closed)
Patch Set: constexpr Created 3 years, 6 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
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/vector_icons/ic_google_black.icon » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/app_list/app_list_constants.h" 5 #include "ui/app_list/app_list_constants.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "ui/gfx/color_palette.h" 8 #include "ui/gfx/color_palette.h"
9 9
10 namespace app_list { 10 namespace app_list {
11 11
12 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xF2, 0xF2, 0xF2); 12 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xF2, 0xF2, 0xF2);
13 const SkColor kSearchBoxBackground = SK_ColorWHITE; 13 const SkColor kSearchBoxBackgroundDefault = SK_ColorWHITE;
14 14
15 const SkColor kSearchTextColor = SkColorSetRGB(0x33, 0x33, 0x33); 15 const SkColor kSearchTextColor = SkColorSetRGB(0x33, 0x33, 0x33);
16 16
17 const SkColor kLabelBackgroundColor = SK_ColorTRANSPARENT; 17 const SkColor kLabelBackgroundColor = SK_ColorTRANSPARENT;
18 18
19 const SkColor kTopSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); 19 const SkColor kTopSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0);
20 const SkColor kBottomSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0); 20 const SkColor kBottomSeparatorColor = SkColorSetRGB(0xC0, 0xC0, 0xC0);
21 21
22 // The color of the separator used inside dialogs in the app list. 22 // The color of the separator used inside dialogs in the app list.
23 const SkColor kDialogSeparatorColor = SkColorSetRGB(0xD1, 0xD1, 0xD1); 23 const SkColor kDialogSeparatorColor = SkColorSetRGB(0xD1, 0xD1, 0xD1);
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 } 160 }
161 161
162 const gfx::ShadowValues& IconEndShadows() { 162 const gfx::ShadowValues& IconEndShadows() {
163 CR_DEFINE_STATIC_LOCAL(const gfx::ShadowValues, icon_shadows, 163 CR_DEFINE_STATIC_LOCAL(const gfx::ShadowValues, icon_shadows,
164 (1, gfx::ShadowValue(gfx::Vector2d(0, 4), 8, 164 (1, gfx::ShadowValue(gfx::Vector2d(0, 4), 8,
165 SkColorSetARGB(0x50, 0, 0, 0)))); 165 SkColorSetARGB(0x50, 0, 0, 0))));
166 return icon_shadows; 166 return icon_shadows;
167 } 167 }
168 168
169 } // namespace app_list 169 } // namespace app_list
OLDNEW
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/vector_icons/ic_google_black.icon » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698