We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0bf96 commit 063325aCopy full SHA for 063325a
1 file changed
README.md
@@ -34,17 +34,17 @@ from media query to special class.
34
/* Output CSS */
35
36
@media (prefers-color-scheme: dark) {
37
- html:not(.is-light) {
+ html:where(:not(.is-light)) {
38
--text-color: white
39
}
40
- html:not(.is-light) body {
+ :where(html:not(.is-light)) body {
41
background: black
42
43
44
-html.is-dark {
+html:where(.is-dark) {
45
46
47
-html.is-dark body {
+:where(html.is-dark) body {
48
49
50
```
0 commit comments