Per*_*son 14 css themes media-queries
在Firefox 67中,人们可以使用媒体查询来检测用户对浅色或深色主题的偏好。
在我的Firefox版本(在Ubuntu下)中,我的偏好似乎是轻主题。也就是说,以下CSS给出了蓝色背景:
@media (prefers-color-scheme: light) {
:root {}
body {
background-color: blue;
}
}Run Code Online (Sandbox Code Playgroud)
如何更改Firefox首选项,使其prefers-color-scheme: dark
评估为true?
我发现一个似乎可以解决问题的加载项,但是我自己的CSS一定做错了,因为它在我的页面上不起作用。 黑暗的网站力量
amc*_*usl 12
You can update the style used by Firefox by going to about:config and adding a new property ui.systemUsesDarkTheme of integer type with value 1.
它不会以与在Windows或Mac中更新OS设置相同的方式自动更新活动页面上的值,但是如果在更新后刷新页面,它将自动显示。
编辑:在firefox 71上,更新无需更改即可应用于活动页面