From 74f0733cf1301eee551e784f5d1fb6741a7cd040 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 30 Jan 2025 12:27:28 -0800 Subject: [PATCH] fix(colorwheel): correct WHC disabled background color value --- components/colorwheel/index.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/components/colorwheel/index.css b/components/colorwheel/index.css index d7fc21514c..fa5b84fe82 100644 --- a/components/colorwheel/index.css +++ b/components/colorwheel/index.css @@ -153,9 +153,7 @@ /* Windows High Contrast Mode */ @media (forced-colors: active) { - .spectrum-ColorWheel { - --highcontrast-colorwheel-fill-color-disabled: Canvas; - - forced-color-adjust: none; + .spectrum-ColorWheel.is-disabled { + --highcontrast-colorwheel-fill-color-disabled: CanvasText; } }