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

Unified Diff: ash/common/ash_constants.cc

Issue 2527513002: Update ash shelf/tray focus rects. (Closed)
Patch Set: fixes Created 4 years, 1 month 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
Index: ash/common/ash_constants.cc
diff --git a/ash/common/ash_constants.cc b/ash/common/ash_constants.cc
index 44f3eb799b72ae5ae06381f8574f825b8a21d89b..4d483be7d1b03b3fd682222bd6935514fc4dd419 100644
--- a/ash/common/ash_constants.cc
+++ b/ash/common/ash_constants.cc
@@ -5,6 +5,7 @@
#include "ash/common/ash_constants.h"
#include "third_party/skia/include/core/SkColor.h"
+#include "ui/gfx/color_palette.h"
namespace ash {
@@ -17,6 +18,7 @@ const int kResizeInsideBoundsSize = 1;
const SkColor kChromeOsBootColor = SkColorSetRGB(0xfe, 0xfe, 0xfe);
#endif
-const SkColor kFocusBorderColor = SkColorSetRGB(64, 128, 250);
+const SkColor kFocusBorderColor = SkColorSetA(gfx::kGoogleBlue500, 0x99);
tdanderson 2016/11/23 02:19:07 I'm /mildly/ concerned about these focus rects loo
Evan Stade 2016/11/28 19:05:53 Acknowledged. I don't think we should be working t
+const float kFocusBorderThickness = 2.f;
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698