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

Side by Side Diff: ui/message_center/message_center_style.cc

Issue 16924016: Change notification center background color to 0xee. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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/message_center/message_center_style.h" 5 #include "ui/message_center/message_center_style.h"
6 6
7 namespace message_center { 7 namespace message_center {
8 8
9 // Exported values ///////////////////////////////////////////////////////////// 9 // Exported values /////////////////////////////////////////////////////////////
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 67
68 // Around notifications //////////////////////////////////////////////////////// 68 // Around notifications ////////////////////////////////////////////////////////
69 69
70 // Pixel dimensions. 70 // Pixel dimensions.
71 const int kMarginBetweenItems = 10; 71 const int kMarginBetweenItems = 10;
72 72
73 // Colors. 73 // Colors.
74 const SkColor kBackgroundLightColor = SkColorSetRGB(0xf1, 0xf1, 0xf1); 74 const SkColor kBackgroundLightColor = SkColorSetRGB(0xf1, 0xf1, 0xf1);
75 const SkColor kBackgroundDarkColor = SkColorSetRGB(0xe7, 0xe7, 0xe7); 75 const SkColor kBackgroundDarkColor = SkColorSetRGB(0xe7, 0xe7, 0xe7);
76 const SkColor kShadowColor = SkColorSetARGB(0.3 * 255, 0, 0, 0); 76 const SkColor kShadowColor = SkColorSetARGB(0.3 * 255, 0, 0, 0);
77 const SkColor kMessageCenterBackgroundColor = SkColorSetRGB(0xf1, 0xf1, 0xf1); 77 const SkColor kMessageCenterBackgroundColor = SkColorSetRGB(0xee, 0xee, 0xee);
78 const SkColor kFooterDelimiterColor = SkColorSetRGB(0xcc, 0xcc, 0xcc); 78 const SkColor kFooterDelimiterColor = SkColorSetRGB(0xcc, 0xcc, 0xcc);
79 const SkColor kFooterTextColor = SkColorSetRGB(0x7b, 0x7b, 0x7b); 79 const SkColor kFooterTextColor = SkColorSetRGB(0x7b, 0x7b, 0x7b);
80 80
81 } // namespace message_center 81 } // namespace message_center
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698