File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ CSS, following the [CSS Color] specification.
10
10
11
11
``` pcss
12
12
:root {
13
- --firebrick: lab(40 56.6 39);
14
- --firebrick-a50: lch(40 68.8 34.5 / 50%);
13
+ --firebrick: lab(40% 56.6 39);
14
+ --firebrick-a50: lch(40% 68.8 34.5 / 50%);
15
15
--gray-40: gray(40);
16
16
--gray-40a50: gray(40 / .5);
17
17
}
@@ -72,17 +72,17 @@ postcssLabFunction({ preserve: true })
72
72
73
73
``` pcss
74
74
:root {
75
- --firebrick: lab(40 56.6 39);
76
- --firebrick-a50: lch(40 68.8 34.5 / 50%);
75
+ --firebrick: lab(40% 56.6 39);
76
+ --firebrick-a50: lch(40% 68.8 34.5 / 50%);
77
77
}
78
78
79
79
/* becomes */
80
80
81
81
:root {
82
82
--firebrick: rgb(178, 34, 34);
83
- --firebrick: lab(40 56.6 39);
83
+ --firebrick: lab(40% 56.6 39);
84
84
--firebrick-a50: rgba(178, 34, 34, .5);
85
- --firebrick-a50: lch(40 68.8 34.5 / 50%);
85
+ --firebrick-a50: lch(40% 68.8 34.5 / 50%);
86
86
}
87
87
```
88
88
You can’t perform that action at this time.
0 commit comments