gtk/testsuite/css/parser/hsl.ref.css
Alice Mikhaylenko b70bcd6bfe csscolorvalue: Add modern rgb() and hsl() syntax
Make calc() work in colors too, since we need to support degrees for hsl()
hue anyway and it goes through the same machinery. Make that work for
legacy syntax too, matching the spec.

Ignore missing components/none for now.

Ignore gdk_rgba_parser_parse(), that's also used outside css.
2024-05-21 16:32:52 +04:00

44 lines
351 B
CSS

a {
color: rgb(0,0,0);
}
b {
color: rgb(0,255,0);
}
c {
color: rgb(255,0,0);
}
d {
color: rgb(191,161,64);
}
e {
color: rgba(0,0,0,0.5);
}
g {
color: rgb(0,255,0);
}
h {
color: rgba(0,255,0,0.5);
}
i {
color: rgb(0,255,255);
}
j {
color: rgb(0,255,255);
}
k {
color: rgba(128,0,255,0.5);
}
l {
color: rgb(0,255,255);
}