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

Unified Diff: ui/native_theme/native_theme_dark_aura.cc

Issue 2409563002: views: use darker stroke for non-prominent buttons (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: ui/native_theme/native_theme_dark_aura.cc
diff --git a/ui/native_theme/native_theme_dark_aura.cc b/ui/native_theme/native_theme_dark_aura.cc
index f40f64c654bd48061b9941c4b791d450a093a2c8..eacb1a6536d6c82d70eae15b5b2f6555c910d5bf 100644
--- a/ui/native_theme/native_theme_dark_aura.cc
+++ b/ui/native_theme/native_theme_dark_aura.cc
@@ -42,6 +42,10 @@ SkColor NativeThemeDarkAura::GetSystemColor(ColorId color_id) const {
return kButtonEnabledColor;
case kColorId_ProminentButtonColor:
return gfx::kGoogleBlue300;
+ case kColorId_ProminentButtonBorderColor:
+ return SK_ColorTRANSPARENT;
+ case kColorId_NonProminentButtonBorderColor:
+ return SK_ColorWHITE;
// Label
case kColorId_LabelEnabledColor:

Powered by Google App Engine
This is Rietveld 408576698