Files
gtk/testsuite/css/parser/currentcolor-everywhere.ref.css
Matthias Clasen 3b40d95581 css: Fix currentcolor serialization
According to css specs, the serialization is supposed to be
all lowercase.
2024-05-29 21:45:10 -04:00

22 lines
259 B
CSS

@define-color some-color currentcolor;
a {
color: currentcolor;
}
b {
color: shade(currentcolor, 1.5);
}
c {
color: alpha(currentcolor, 0.5);
}
d {
color: mix(currentcolor, @some-color, 0.5);
}
e {
color: mix(@some-color, currentcolor, 0.5);
}