In Edge + Windows HC, the radio buttons in assessments are always white even if selected. It's therefore unclear what the state is. This issue only shows up when Windows high contrast mode is on. Toggling high-contrast mode from the extension itself (in both chrome and edge) produces the right behavior.
To Reproduce
Steps to reproduce the behavior:

Potentially related fluentui issues/PRs:
This issue has been marked as ready for team triage; we will triage it in our weekly review and update the issue. Thank you for contributing to Accessibility Insights!
In the latest Fluent UI (7.144.2 as of writing), this issue is sort-of resolved; the choicegroup buttons do use our override colors in that version, but we're providing override colors that don't meet contrast requirements, so it's a different problem rather than a complete fix:

(there are also a variety of other, unrelated high-contrast bugs introduced by upgrading from our current fabric version to fluentUI 7.144.2)
This issue requires additional investigation by the Accessibility Insights team. When the issue is ready to be triaged again, we will update the issue with the investigation result and add "status: ready for triage". Thank you for contributing to Accessibility Insights!
@iamrafan can we please take a look at the fluent UI update to see if it introduces other HC issues? @dbjorge was this pushed to playground?
@ferBonnin Just pushed it to playground now (sorry for the delay, needed to fix a few unit tests before it became releasable), should be there as soon as it clears store review.
I spent an hour or two investigating more immediate workarounds. It's easy enough to "force" our styles to apply to the button colors even in HC mode (forced-color-adjust: none), but it's not great because we don't actually apply our HC color definitions if you're in windows HC mode but not our app HC mode. We could update our color definitions to apply the HC colors if either our app-setting-based .high-contrast-theme selector is in play or the page matches the media query @media (forced-colors: active), but that still isn't ideal because some of our theme coloring happens via theme colors passed to fabric in JS rather than strictly in CSS. Probably the right way would be something like:
window.matchMedia('(forced-colors: active)').addListener(mq => userConfigActionCreator.nativeHighContrastTransition(mq.matches));forced-color-adjust: none on the button colorsNote however that would be making an assumption that we want dark HC colors for any forced-color scenario, which still isn't right; we would ideally want to be smarter about being respectful of users that pick a "High Contrast White" theme at the OS level. The right way to do that would be to redo most of our HC coloring in forced-color scenarios to be based on the system colors provided by the OS/browser in forced-color scenarios.
If we really wanted to do a quickest-possible fix for this very specific issue, we could explore a hack on the pass/fail button styles like:
// Temporary hack for issue #3435
.radio-button-inner {
@include ms-high-color-override {
forced-color-adjust: none;
color: HighlightText;
}
}
.radio-button-outer {
@include ms-high-color-override {
forced-color-adjust: none;
color: Highlight;
}
}
References:
In Edge Version 87.0.664.66 (Official build) (64-bit) with (1) Windows high contrast on and (2) the extension high contrast both on and off, the checkbox to turn on the visualization for a specific instance is not visible (first image) unless I am clicking on the instance (second image).


@ferBonnin to create a feature for OF update.
@iamrafan how did the investigation on playground with the OF update went?
@ferBonnin I will share the investigation document via email
Most helpful comment
@ferBonnin Just pushed it to playground now (sorry for the delay, needed to fix a few unit tests before it became releasable), should be there as soon as it clears store review.