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

Unified Diff: ui/app_list/page_switcher.cc

Issue 10383199: app_list: Update colors and sizes for v2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | « ui/app_list/app_list_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/page_switcher.cc
diff --git a/ui/app_list/page_switcher.cc b/ui/app_list/page_switcher.cc
index a35c8be511c4ff9ff749614e81d3712d2b683593..e1c86eb791b21284a29a734872e1d54255c68b37 100644
--- a/ui/app_list/page_switcher.cc
+++ b/ui/app_list/page_switcher.cc
@@ -19,14 +19,11 @@ const int kButtonHeight = 6;
const int kButtonHeightPadding = 10;
const int kButtonCornerRadius = 2;
-// 0.16 black
-const SkColor kHoverColor = SkColorSetARGB(0x2A, 0x00, 0x00, 0x00);
+const SkColor kHoverColor = SkColorSetRGB(0x6E, 0x6E, 0x6E);
-// 0.2 black
-const SkColor kNormalColor = SkColorSetARGB(0x33, 0x00, 0x00, 0x00);
+const SkColor kNormalColor = SkColorSetRGB(0xBB, 0xBB, 0xBB);
-// 0.33 black
-const SkColor kSelectedColor = SkColorSetARGB(0x55, 0x00, 0x00, 0x00);
+const SkColor kSelectedColor = kHoverColor;
class PageSwitcherButton : public views::CustomButton {
public:
« no previous file with comments | « ui/app_list/app_list_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698