File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
- syn match cssColorProp contained " \< color-adjust\> "
2
1
syn region cssFunction contained matchgroup =cssFunctionName start =" \<\( hwb\| lab\| lch\| gray\| color\| device-cmyk\=\)\s *(" end =" )" oneline keepend
3
2
syn match cssFontDescriptor " @color-profile\> " nextgroup =cssFontDescriptorBlock skipwhite skipnl
Original file line number Diff line number Diff line change
1
+ syn match cssColorProp contained " \<\( forced-\)\= color-adjust\> "
2
+ syn match cssColorProp contained " \< color-scheme\> "
3
+ syn keyword cssFontAttr contained only economy exact
Original file line number Diff line number Diff line change 88
88
}
89
89
90
90
.color-4 {
91
- color-adjust : auto;
92
91
display : hwb (120deg , 44% , 50% );
93
92
display : lab (1 2 3 );
94
93
display : lch (4 5 6 );
101
100
src : url ("http://example.org/swop-coated.icc" );
102
101
}
103
102
103
+ .color-adjust-1 {
104
+ color-scheme : auto;
105
+ forced-color-adjust : auto;
106
+ color-adjust : auto;
107
+ display : only;
108
+ display : economy;
109
+ display : exact;
110
+ }
111
+
104
112
.compositing-1 {
105
113
mix-blend-mode : auto;
106
114
isolation : auto;
You can’t perform that action at this time.
0 commit comments