Commit e31acebd authored by Mason Freed's avatar Mason Freed Committed by Commit Bot

Change orange to correct blue for Mac focus ring

The [1] CL attempted to change the focus ring to #005FCC, but
ended up actually changing it to #CC5F00. Because there are no
tests (until [2]), this got missed. This CL fixes that.

[1] https://chromium-review.googlesource.com/c/chromium/src/+/2088296
[2] https://chromium-review.googlesource.com/c/chromium/src/+/1986972

Bug: 1054813
Change-Id: I0eb848a99efd8d3e99f75ab5335e3453c63ab202
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2092412
Auto-Submit: Mason Freed <masonfreed@chromium.org>
Commit-Queue: Avi Drissman <avi@chromium.org>
Reviewed-by: default avatarAvi Drissman <avi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#748259}
parent 2b7c80e6
......@@ -182,7 +182,7 @@ void UpdateFromSystemSettings(blink::mojom::RendererPreferences* prefs,
if (::features::IsFormControlsRefreshEnabled()) {
#if defined(OS_MACOSX)
prefs->focus_ring_color = SkColorSetRGB(0xCC, 0x5F, 0x00);
prefs->focus_ring_color = SkColorSetRGB(0x00, 0x5F, 0xCC);
#else
prefs->focus_ring_color = SkColorSetRGB(0x10, 0x10, 0x10);
#endif
......
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