forced-colors - CSS: Cascading Style Sheets 编辑
The forced-colors
CSS media feature is used to detect if the user agent has enabled a forced colors mode where it enforces a user-chosen limited color palette on the page.
Note: This feature is not supported by any user agent and its specifics are subject to change.
Syntax
The forced-colors
media feature indicates whether or not the browser is currently in forced-colors mode.
Values
none
- Forced colors mode is not active; the page’s colors are not being forced into a limited palette.
active
- Indicates that forced colors mode is active. The browser provides the color palette to authors through the CSS system color keywords and, if appropriate, it triggers the appropriate value of
prefers-color-scheme
so that authors can adapt the page.
Usage notes
Properties affected by forced-color mode
In forced colors mode, the values of the following properties are treated as if they have no author-level values specified. That is, user-specified values (if any) or browser-specified values are used instead.
color
fill
stroke
text-decoration-color
text-emphasis-color
border-color
outline-color
column-rule-color
scrollbar-color
-webkit-tap-highlight-color
box-shadow
text-shadow
You can use system color keywords with any property other than those listed above, to ensure that the rest of the page integrates with the restricted color palette available in forced colors mode.
User preferences
Currently no user agent implements this feature, although various operating systems do support such preferences and if this media query is ever implemented user agents will likely rely on the settings provided by the operating system in use.
Examples
Note: No browser currently implements this feature so the following example will not work.
This example has an annoying color palette by default. This example does not take advantage of the colors provided by the user agent.
HTML
<div class="colors">weird color box</div>
CSS
.colors {
background-color: red;
color: grey;
}
@media (forced-colors: active) {
.colors {
background-color: white;
color: black;
}
}
Result
Specifications
Specification | Status | Comment |
---|---|---|
Media Queries Level 5 The definition of 'forced-colors' in that specification. | Editor's Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论