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

Unified Diff: ui/gfx/color_palette.h

Issue 1819443002: MacViews: draw combobox arrow backgrounds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix linux build Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/native_theme/native_theme_mac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
Evan Stade 2016/03/23 18:50:26 I'm kinda surprised we wouldn't want to use Google
Elly Fong-Jones 2016/03/23 19:32:01 I just chatted with sgabriel@ about this, and they
+
+const SkColor kMaterialGrey300 = SkColorSetRGB(0xE0, 0xE0, 0xE0);
+const SkColor kMaterialGrey500 = SkColorSetRGB(0x9E, 0x9E, 0x9E);
+
} // namespace gfx
#endif // UI_GFX_COLOR_PALETTE_H_
« no previous file with comments | « no previous file | ui/native_theme/native_theme_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698