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

Side by Side Diff: ui/gfx/color_palette.h

Issue 1393163002: Update app menu button MD colors for the notification case. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: replace amber with yellow700 Created 5 years, 2 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef UI_GFX_COLOR_PALETTE_H_ 5 #ifndef UI_GFX_COLOR_PALETTE_H_
6 #define UI_GFX_COLOR_PALETTE_H_ 6 #define UI_GFX_COLOR_PALETTE_H_
7 7
8 #include "third_party/skia/include/core/SkColor.h" 8 #include "third_party/skia/include/core/SkColor.h"
9 9
10 namespace gfx { 10 namespace gfx {
11 11
12 const SkColor kAmber = SkColorSetRGB(0xFF, 0xC1, 0x07);
13 const SkColor kChromeIconGrey = SkColorSetRGB(0x5A, 0x5A, 0x5A); 12 const SkColor kChromeIconGrey = SkColorSetRGB(0x5A, 0x5A, 0x5A);
14 const SkColor kErrorRed = SkColorSetRGB(0xC5, 0x39, 0x29);
15 const SkColor kGoogleBlue = SkColorSetRGB(0x42, 0x85, 0xF4); 13 const SkColor kGoogleBlue = SkColorSetRGB(0x42, 0x85, 0xF4);
16 14
15 // The number (700) refers to the shade of darkness. Each color in the MD
16 // palette ranges from 100-900.
17 const SkColor kGoogleRed700 = SkColorSetRGB(0xC5, 0x39, 0x29);
18 const SkColor kGoogleGreen700 = SkColorSetRGB(0x0B, 0x80, 0x43);
19 const SkColor kGoogleYellow700 = SkColorSetRGB(0xF0, 0x93, 0x00);
20
17 } // namespace gfx 21 } // namespace gfx
18 22
19 #endif // UI_GFX_COLOR_PALETTE_H_ 23 #endif // UI_GFX_COLOR_PALETTE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/toolbar/wrench_toolbar_button.cc ('k') | ui/views/controls/combobox/combobox.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698