Chromium Code Reviews| Index: ui/gfx/color_palette.h |
| diff --git a/ui/gfx/color_palette.h b/ui/gfx/color_palette.h |
| index f39e443792246030dcfafe692578c3201f23380a..cb7271ac5aa10456a4e4a1f2a556e548c8aa0b8a 100644 |
| --- a/ui/gfx/color_palette.h |
| +++ b/ui/gfx/color_palette.h |
| @@ -27,6 +27,15 @@ const SkColor kGoogleGreen700 = SkColorSetRGB(0x0B, 0x80, 0x43); |
| const SkColor kGoogleYellow300 = SkColorSetRGB(0xF7, 0xCB, 0x4D); |
| const SkColor kGoogleYellow700 = SkColorSetRGB(0xF0, 0x93, 0x00); |
| +// Material Design canonical colors, from |
| +// https://www.google.com/design/spec/style/color.html#color-color-palette |
| +const SkColor kMaterialBlue300 = SkColorSetRGB(0x64, 0xB5, 0xF6); |
| +const SkColor kMaterialBlue500 = SkColorSetRGB(0x21, 0x96, 0xF3); |
| +const SkColor kMaterialBlue700 = SkColorSetRGB(0x19, 0x76, 0xD2); |
| + |
| +const SkColor kMaterialGrey300 = SkColorSetRGB(0xE0, 0xE0, 0xE0); |
|
tapted
2016/03/22 11:20:26
Grey->Gray? (It's probably confusing to spell Colo
Elly Fong-Jones
2016/03/22 22:05:10
I believe it is. I would spell it as "grey", and a
|
| +const SkColor kMaterialGrey500 = SkColorSetRGB(0x9E, 0x9E, 0x9E); |
| + |
| } // namespace gfx |
| #endif // UI_GFX_COLOR_PALETTE_H_ |