Commit f29eb108 authored by minch's avatar minch Committed by Commit Bot

dark_mode: Correct wrong colors.

Bug: 1133063
Change-Id: I60db20876987e3bc9daebb377e0f6e254e7ccc24
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2439640Reviewed-by: default avatarXiyuan Xia <xiyuan@chromium.org>
Commit-Queue: Min Chen <minch@chromium.org>
Cr-Commit-Position: refs/heads/master@{#812761}
parent 4640d0c1
...@@ -210,7 +210,7 @@ SkColor AshColorProvider::GetContentLayerColor(ContentLayerType type) const { ...@@ -210,7 +210,7 @@ SkColor AshColorProvider::GetContentLayerColor(ContentLayerType type) const {
return is_dark_mode ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600; return is_dark_mode ? gfx::kGoogleBlue300 : gfx::kGoogleBlue600;
case ContentLayerType::kButtonLabelColorPrimary: case ContentLayerType::kButtonLabelColorPrimary:
case ContentLayerType::kButtonIconColorPrimary: case ContentLayerType::kButtonIconColorPrimary:
return is_dark_mode ? gfx::kGoogleGrey200 : gfx::kGoogleGrey900; return is_dark_mode ? gfx::kGoogleGrey900 : gfx::kGoogleGrey200;
case ContentLayerType::kSliderThumbColorDisabled: case ContentLayerType::kSliderThumbColorDisabled:
return is_dark_mode ? gfx::kGoogleGrey600 : gfx::kGoogleGrey600; return is_dark_mode ? gfx::kGoogleGrey600 : gfx::kGoogleGrey600;
case ContentLayerType::kSystemMenuIconColor: case ContentLayerType::kSystemMenuIconColor:
......
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