Commit 88853d3d authored by Leonard Grey's avatar Leonard Grey Committed by Commit Bot

Use dark mode colors for incognito buttons

This was broken by the GM2 style update. Since these constants are only used in the infobar, we can unconditionally use dark mode style.

Bug: 940900
Change-Id: I9da25d945da94e72c4e0c7d8a08dfd8ca021196c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1539125
Auto-Submit: Leonard Grey <lgrey@chromium.org>
Reviewed-by: default avatarElly Fong-Jones <ellyjones@chromium.org>
Commit-Queue: Leonard Grey <lgrey@chromium.org>
Cr-Commit-Position: refs/heads/master@{#644777}
parent dfba2464
...@@ -26,11 +26,11 @@ SkColor NativeThemeDarkAura::GetSystemColor(ColorId color_id) const { ...@@ -26,11 +26,11 @@ SkColor NativeThemeDarkAura::GetSystemColor(ColorId color_id) const {
// Button // Button
case kColorId_ButtonEnabledColor: case kColorId_ButtonEnabledColor:
return SK_ColorWHITE; return gfx::kGoogleGrey200;
case kColorId_ProminentButtonFocusedColor: case kColorId_ProminentButtonFocusedColor:
return gfx::kGoogleBlue500; return gfx::kGoogleBlue400;
case kColorId_ProminentButtonColor: case kColorId_ProminentButtonColor:
return gfx::kGoogleBlue600; return gfx::kGoogleBlue300;
// Label // Label
case kColorId_LabelEnabledColor: case kColorId_LabelEnabledColor:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment