You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
.test-auto {
--color-l: green;
--color-d: red;
color: var(--color-l);
}
html.skin-theme-clientpref-night .test-auto {
color: var(--color-d);
}
@media (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .test-auto {
color: var(--color-d);
}
}
000
1:0
Return to Template:Sandbox/styles.css.