]> Pileus Git - ~andy/gtk/blob - tests/css/parser/currentcolor-everywhere.css
symboliccolor: Change the print output
[~andy/gtk] / tests / css / parser / currentcolor-everywhere.css
1 @define-color some-color currentColor;
2
3 a {
4   color: currentColor;
5 }
6
7 b {
8   color: shade(currentColor, 1.5);
9 }
10
11 c {
12   color: alpha(currentColor, 0.5);
13 }
14
15 d {
16   color: mix(currentColor, @some-color, 0.5);
17 }
18
19 e {
20   color: mix(@some-color, currentColor, 0.5);
21 }