This feature is not Baseline because it does not work in some of the most widely-used browsers.
The forced-color-adjust CSS property allows authors to opt certain elements out of forced colors mode. This then restores the control of those values to CSS.
forced-color-adjust: auto; forced-color-adjust: none; forced-color-adjust: preserve-parent-color; /* Global values */ forced-color-adjust: inherit; forced-color-adjust: initial; forced-color-adjust: revert; forced-color-adjust: revert-layer; forced-color-adjust: unset;
The forced-color-adjust property's value must be one of the following keywords.
autoThe element's colors are adjusted by the user agent in forced colors mode. This is the default value.
noneThe element's colors are not automatically adjusted by the user agent in forced colors mode.
preserve-parent-colorIn forced colors mode, if the color property inherits from its parent (i.e., there is no cascaded value or the cascaded value is currentColor, inherit, or another keyword that inherits from the parent), then it computes to the used color of its parent's color property. In all other cases, it behaves the same as none.
This property should only be used to makes changes that will support a user's color and contrast requirements. For example, if you become aware that the color optimizations made by the user agent result in a poor experience when in a high contrast or dark mode. Using this property would enable tweaking of the result in that mode to provide a better experience. It should not be used to prevent user choices being respected.
| Initial value | auto |
|---|---|
| Applies to | all elements and text |
| Inherited | yes |
| Computed value | as specified |
| Animation type | Not animatable |
forced-color-adjust =
auto |
none |
preserve-parent-color
In the example below the first box will use the color scheme that the user has set. For example in Windows High Contrast mode black scheme it will have a black background and white text. The second box will preserve the site colors set on the .box class.
By using the forced-colors media feature, you could add any other optimizations for forced color mode alongside the forced-color-adjust property.
.box {
border: 5px solid grey;
background-color: #cccccc;
width: 300px;
margin: 20px;
padding: 10px;
}
@media (forced-colors: active) {
.forced {
forced-color-adjust: none;
}
}
<div class="box"> <p>This is a box which should use your color preferences.</p> </div> <div class="box forced"> <p>This is a box which should stay the colors set by the site.</p> </div>
The following screenshot shows the image above in Windows High Contrast Mode:
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
forced-color-adjust |
89 | 7912 | 113 | 75 | No | 89 | 113 | 63 | No | 15.0 | 89 | No |
auto |
89 | 79 | 113 | 75 | No | 89 | 113 | 63 | No | 15.0 | 89 | No |
none |
89 | 79 | 113 | 75 | No | 89 | 113 | 63 | No | 15.0 | 89 | No |
preserve-parent-color |
106 | 106 | No | 92 | No | 106 | No | 72 | No | 20.0 | 106 | No |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/forced-color-adjust