Skip to content

Instantly share code, notes, and snippets.

@clemeth
clemeth / function-validator-test.css
Last active January 27, 2025 21:41
Test functions in W3C CSS Validation Service: https://jigsaw.w3.org/css-validator/
:root {
--blue: blue;
--ld: light-dark(blue, green);
}
.direct-ok {
color: blue;
}
.var-ok{
color: var(--blue);
}
:root {
--blue: blue;
--ld: light-dark(blue, green);
}
.a1-ok{
color: blue;
}
.a1-error {
color: light-dark(blue, green);
}