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

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

Issue 493293003: Use a background for the main search box in the experimental app list. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/views/app_list_background.cc » ('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 namespace app_list { 7 namespace app_list {
8 8
9 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xFB, 0xFB, 0xFB); 9 const SkColor kContentsBackgroundColor = SkColorSetRGB(0xFB, 0xFB, 0xFB);
10 const SkColor kContentsSwitcherBackgroundColor = SK_ColorWHITE; 10 const SkColor kContentsSwitcherBackgroundColor = SK_ColorWHITE;
(...skipping 14 matching lines...) Expand all
25 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC); 25 const SkColor kPagerSelectedColor = SkColorSetRGB(0x46, 0x8F, 0xFC);
26 26
27 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5); 27 const SkColor kResultBorderColor = SkColorSetRGB(0xE5, 0xE5, 0xE5);
28 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33); 28 const SkColor kResultDefaultTextColor = SkColorSetRGB(0x33, 0x33, 0x33);
29 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96); 29 const SkColor kResultDimmedTextColor = SkColorSetRGB(0x96, 0x96, 0x96);
30 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33); 30 const SkColor kResultURLTextColor = SkColorSetRGB(0x00, 0x99, 0x33);
31 31
32 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A); 32 const SkColor kGridTitleColor = SkColorSetRGB(0x5A, 0x5A, 0x5A);
33 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C); 33 const SkColor kGridTitleHoverColor = SkColorSetRGB(0x3C, 0x3C, 0x3C);
34 34
35 // Color of the borders used in the experimental app list start page.
36 const SkColor kStartPageBorderColor = SkColorSetRGB(0xEE, 0xEE, 0xEE);
37
38 // Color of the folder ink bubble. 35 // Color of the folder ink bubble.
39 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7); 36 const SkColor kFolderBubbleColor = SkColorSetRGB(0xD7, 0xD7, 0xD7);
40 37
41 // Duration in milliseconds for page transition. 38 // Duration in milliseconds for page transition.
42 const int kPageTransitionDurationInMs = 180; 39 const int kPageTransitionDurationInMs = 180;
43 40
44 // Duration in milliseconds for over scroll page transition. 41 // Duration in milliseconds for over scroll page transition.
45 const int kOverscrollPageTransitionDurationMs = 50; 42 const int kOverscrollPageTransitionDurationMs = 50;
46 43
47 // Duration in milliseconds for fading in the target page when opening 44 // Duration in milliseconds for fading in the target page when opening
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 94
98 #if defined(OS_LINUX) 95 #if defined(OS_LINUX)
99 #if defined(GOOGLE_CHROME_BUILD) 96 #if defined(GOOGLE_CHROME_BUILD)
100 const char kAppListWMClass[] = "chrome_app_list"; 97 const char kAppListWMClass[] = "chrome_app_list";
101 #else // CHROMIUM_BUILD 98 #else // CHROMIUM_BUILD
102 const char kAppListWMClass[] = "chromium_app_list"; 99 const char kAppListWMClass[] = "chromium_app_list";
103 #endif 100 #endif
104 #endif 101 #endif
105 102
106 } // namespace app_list 103 } // namespace app_list
OLDNEW
« no previous file with comments | « ui/app_list/app_list_constants.h ('k') | ui/app_list/views/app_list_background.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698