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

Unified Diff: chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm

Issue 1858393002: [Mac] Increase contrast of toolbar button hover bg in MD Incognito. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm b/chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm
index e0726749932e1ff59d7655f05cf9be3780182e1e..3c22955f6c63c8e711909c50749dcf0808190ac3 100644
--- a/chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm
+++ b/chrome/browser/ui/cocoa/toolbar/toolbar_button_cocoa.mm
@@ -90,13 +90,13 @@ const NSSize kMDButtonIconSize = NSMakeSize(16, 16);
fillColor = [NSColor colorWithCalibratedWhite:0 alpha:0.08];
break;
case ToolbarButtonImageBackgroundStyle::HOVER_THEMED:
- fillColor = [NSColor colorWithCalibratedWhite:1 alpha:0.08];
+ fillColor = [NSColor colorWithCalibratedWhite:1 alpha:0.12];
break;
case ToolbarButtonImageBackgroundStyle::PRESSED:
fillColor = [NSColor colorWithCalibratedWhite:0 alpha:0.12];
break;
case ToolbarButtonImageBackgroundStyle::PRESSED_THEMED:
- fillColor = [NSColor colorWithCalibratedWhite:1 alpha:0.12];
+ fillColor = [NSColor colorWithCalibratedWhite:1 alpha:0.16];
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698