forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
1412 lines (1412 loc) · 95.9 KB
/
Copy pathdata.js
File metadata and controls
1412 lines (1412 loc) · 95.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default {
"generic": true,
"cssWideKeywords": [
"initial",
"inherit",
"unset",
"revert",
"revert-layer"
],
"units": {
"angle": [
"deg",
"grad",
"rad",
"turn"
],
"decibel": [
"db"
],
"flex": [
"fr"
],
"frequency": [
"hz",
"khz"
],
"length": [
"cm",
"mm",
"q",
"in",
"pt",
"pc",
"px",
"em",
"rem",
"ex",
"rex",
"cap",
"rcap",
"ch",
"rch",
"ic",
"ric",
"lh",
"rlh",
"vw",
"svw",
"lvw",
"dvw",
"vh",
"svh",
"lvh",
"dvh",
"vi",
"svi",
"lvi",
"dvi",
"vb",
"svb",
"lvb",
"dvb",
"vmin",
"svmin",
"lvmin",
"dvmin",
"vmax",
"svmax",
"lvmax",
"dvmax",
"cqw",
"cqh",
"cqi",
"cqb",
"cqmin",
"cqmax"
],
"resolution": [
"dpi",
"dpcm",
"dppx",
"x"
],
"semitones": [
"st"
],
"time": [
"s",
"ms"
]
},
"types": {
"abs()": "abs( <calc-sum> )",
"absolute-size": "xx-small|x-small|small|medium|large|x-large|xx-large|xxx-large",
"acos()": "acos( <calc-sum> )",
"alpha-value": "<number>|<percentage>",
"an+b": "odd|even|<integer>|<n-dimension>|'+'? † n|-n|<ndashdigit-dimension>|'+'? † <ndashdigit-ident>|<dashndashdigit-ident>|<n-dimension> <signed-integer>|'+'? † n <signed-integer>|-n <signed-integer>|<ndash-dimension> <signless-integer>|'+'? † n- <signless-integer>|-n- <signless-integer>|<n-dimension> ['+'|'-'] <signless-integer>|'+'? † n ['+'|'-'] <signless-integer>|-n ['+'|'-'] <signless-integer>",
"anchor()": "anchor( <anchor-name>?&&<anchor-side> , <length-percentage>? )",
"anchor-name": "<dashed-ident>",
"anchor-side": "inside|outside|top|left|right|bottom|start|end|self-start|self-end|<percentage>|center",
"anchor-size": "width|height|block|inline|self-block|self-inline",
"anchor-size()": "anchor-size( [<anchor-name>||<anchor-size>]? , <length-percentage>? )",
"angle-percentage": "<angle>|<percentage>",
"angular-color-hint": "<angle-percentage>|<zero>",
"angular-color-stop": "<color> <color-stop-angle>?",
"angular-color-stop-list": "<angular-color-stop> , [<angular-color-hint>? , <angular-color-stop>]#?",
"animateable-feature": "scroll-position|contents|<custom-ident>",
"animation-action": "none|play|play-once|play-forwards|play-backwards|pause|reset|replay",
"asin()": "asin( <calc-sum> )",
"atan()": "atan( <calc-sum> )",
"atan2()": "atan2( <calc-sum> , <calc-sum> )",
"attachment": "scroll|fixed|local",
"attr()": "attr( <attr-name> <attr-type>? , <declaration-value>? )",
"attr-matcher": "['~'|'|'|'^'|'$'|'*']? '='",
"attr-modifier": "i|s",
"attr-type": "type( <syntax> )|raw-string|number|<attr-unit>",
"attribute-selector": "'[' <wq-name> ']'|'[' <wq-name> <attr-matcher> [<string-token>|<ident-token>] <attr-modifier>? ']'",
"auto-repeat": "repeat( [auto-fill|auto-fit] , [<line-names>? <fixed-size>]+ <line-names>? )",
"auto-track-list": "[<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>? <auto-repeat> [<line-names>? [<fixed-size>|<fixed-repeat>]]* <line-names>?",
"axis": "block|inline|x|y",
"baseline-position": "[first|last]? baseline",
"basic-shape": "<inset()>|<xywh()>|<rect()>|<circle()>|<ellipse()>|<polygon()>|<path()>",
"basic-shape-rect": "<inset()>|<rect()>|<xywh()>",
"bg-clip": "<visual-box>|border-area|text",
"bg-image": "<image>|none",
"bg-layer": "<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<visual-box>||<visual-box>",
"bg-position": "[[left|center|right|top|bottom|<length-percentage>]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]|[center|[left|right] <length-percentage>?]&&[center|[top|bottom] <length-percentage>?]]",
"bg-size": "[<length-percentage [0,∞]>|auto]{1,2}|cover|contain",
"blend-mode": "normal|multiply|screen|overlay|darken|lighten|color-dodge|color-burn|hard-light|soft-light|difference|exclusion|hue|saturation|color|luminosity",
"blur()": "blur( <length>? )",
"brightness()": "brightness( [<number>|<percentage>]? )",
"calc()": "calc( <calc-sum> )",
"calc-constant": "e|pi|infinity|-infinity|NaN",
"calc-product": "<calc-value> ['*' <calc-value>|'/' <number>]*",
"calc-size()": "calc-size( <calc-size-basis> , <calc-sum> )",
"calc-size-basis": "<intrinsic-size-keyword>|<calc-size()>|any|<calc-sum>",
"calc-sum": "<calc-product> [['+'|'-'] <calc-product>]*",
"calc-value": "<number>|<dimension>|<percentage>|<calc-constant>|( <calc-sum> )",
"cf-final-image": "<image>|<color>",
"cf-mixing-image": "<percentage>?&&<image>",
"circle()": "circle( <radial-size>? [at <position>]? )",
"clamp()": "clamp( <calc-sum>#{3} )",
"class-selector": "'.' <ident-token>",
"clip-source": "<url>",
"color": "<color-base>|currentColor|<system-color>|<device-cmyk()>|<light-dark()>|<-non-standard-color>",
"color()": "color( <colorspace-params> [/ [<alpha-value>|none]]? )",
"color-base": "<hex-color>|<color-function>|<named-color>|<color-mix()>|transparent",
"color-function": "<rgb()>|<rgba()>|<hsl()>|<hsla()>|<hwb()>|<lab()>|<lch()>|<oklab()>|<oklch()>|<color()>",
"color-interpolation-method": "in [<rectangular-color-space>|<polar-color-space> <hue-interpolation-method>?|<custom-color-space>]",
"color-mix()": "color-mix( <color-interpolation-method> , [<color>&&<percentage [0,100]>?]#{2} )",
"color-stop": "<color-stop-length>|<color-stop-angle>",
"color-stop-angle": "[<angle-percentage>|<zero>]{1,2}",
"color-stop-length": "<length-percentage>{1,2}",
"color-stop-list": "<linear-color-stop> , [<linear-color-hint>? , <linear-color-stop>]#?",
"colorspace-params": "[<predefined-rgb-params>|<xyz-params>]",
"combinator": "'>'|'+'|'~'|['|' '|']",
"common-lig-values": "[common-ligatures|no-common-ligatures]",
"compat-auto": "searchfield|textarea|checkbox|radio|menulist|listbox|meter|progress-bar|button",
"compat-special": "textfield|menulist-button",
"complex-selector": "<complex-selector-unit> [<combinator>? <complex-selector-unit>]*",
"complex-selector-list": "<complex-selector>#",
"composite-style": "clear|copy|source-over|source-in|source-out|source-atop|destination-over|destination-in|destination-out|destination-atop|xor",
"compositing-operator": "add|subtract|intersect|exclude",
"compound-selector": "[<type-selector>? <subclass-selector>*]!",
"compound-selector-list": "<compound-selector>#",
"conic-gradient()": "conic-gradient( [<conic-gradient-syntax>] )",
"conic-gradient-syntax": "[[[from [<angle>|<zero>]]? [at <position>]?]||<color-interpolation-method>]? , <angular-color-stop-list>",
"container-condition": "not <query-in-parens>|<query-in-parens> [[and <query-in-parens>]*|[or <query-in-parens>]*]",
"container-name": "<custom-ident>",
"container-query": "not <query-in-parens>|<query-in-parens> [[and <query-in-parens>]*|[or <query-in-parens>]*]",
"content-distribution": "space-between|space-around|space-evenly|stretch",
"content-list": "[<string>|contents|<image>|<counter>|<quote>|<target>|<leader()>|<attr()>]+",
"content-position": "center|start|end|flex-start|flex-end",
"content-replacement": "<image>",
"contextual-alt-values": "[contextual|no-contextual]",
"contrast()": "contrast( [<number>|<percentage>]? )",
"coord-box": "content-box|padding-box|border-box|fill-box|stroke-box|view-box",
"corner-shape-value": "round|scoop|bevel|notch|square|squircle|<superellipse()>",
"cos()": "cos( <calc-sum> )",
"counter": "<counter()>|<counters()>",
"counter()": "counter( <counter-name> , <counter-style>? )",
"counter-name": "<custom-ident>",
"counter-style": "<counter-style-name>|symbols( )",
"counter-style-name": "<custom-ident>",
"counters()": "counters( <counter-name> , <string> , <counter-style>? )",
"cross-fade()": "cross-fade( <cf-mixing-image> , <cf-final-image>? )",
"cubic-bezier()": "cubic-bezier( [<number [0,1]> , <number>]#{2} )",
"cubic-bezier-easing-function": "ease|ease-in|ease-out|ease-in-out|cubic-bezier( <number [0,1]> , <number> , <number [0,1]> , <number> )",
"cursor-predefined": "auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing",
"custom-color-space": "<dashed-ident>",
"custom-params": "<dashed-ident> [<number>|<percentage>|none]+",
"dasharray": "[[<length-percentage>|<number>]+]#",
"dashndashdigit-ident": "<ident-token>",
"deprecated-system-color": "ActiveBorder|ActiveCaption|AppWorkspace|Background|ButtonHighlight|ButtonShadow|CaptionText|InactiveBorder|InactiveCaption|InactiveCaptionText|InfoBackground|InfoText|Menu|MenuText|Scrollbar|ThreeDDarkShadow|ThreeDFace|ThreeDHighlight|ThreeDLightShadow|ThreeDShadow|Window|WindowFrame|WindowText",
"discretionary-lig-values": "[discretionary-ligatures|no-discretionary-ligatures]",
"display-box": "contents|none",
"display-inside": "flow|flow-root|table|flex|grid|ruby",
"display-internal": "table-row-group|table-header-group|table-footer-group|table-row|table-cell|table-column-group|table-column|table-caption|ruby-base|ruby-text|ruby-base-container|ruby-text-container",
"display-legacy": "inline-block|inline-list-item|inline-table|inline-flex|inline-grid",
"display-listitem": "<display-outside>?&&[flow|flow-root]?&&list-item",
"display-outside": "block|inline|run-in",
"drop-shadow()": "drop-shadow( [<color>?&&<length>{2,3}] )",
"dynamic-range-limit-mix()": "dynamic-range-limit-mix( [<'dynamic-range-limit'>&&<percentage [0,100]>]#{2,} )",
"easing-function": "<linear-easing-function>|<cubic-bezier-easing-function>|<step-easing-function>",
"east-asian-variant-values": "[jis78|jis83|jis90|jis04|simplified|traditional]",
"east-asian-width-values": "[full-width|proportional-width]",
"element()": "element( <custom-ident> , [first|start|last|first-except]? )|element( <id-selector> )",
"ellipse()": "ellipse( <radial-size>? [at <position>]? )",
"env()": "env( <custom-ident> , <declaration-value>? )",
"exp()": "exp( <calc-sum> )",
"explicit-track-list": "[<line-names>? <track-size>]+ <line-names>?",
"family-name": "<string>|<custom-ident>+",
"feature-tag-value": "<string> [<integer>|on|off]?",
"feature-type": "@stylistic|@historical-forms|@styleset|@character-variant|@swash|@ornaments|@annotation",
"feature-value-block": "<feature-type> '{' <feature-value-declaration-list> '}'",
"feature-value-block-list": "<feature-value-block>+",
"feature-value-declaration": "<custom-ident> : <integer>+ ;",
"feature-value-declaration-list": "<feature-value-declaration>",
"feature-value-name": "<custom-ident>",
"filter-function": "<blur()>|<brightness()>|<contrast()>|<drop-shadow()>|<grayscale()>|<hue-rotate()>|<invert()>|<opacity()>|<saturate()>|<sepia()>",
"filter-value-list": "[<filter-function>|<url>]+",
"final-bg-layer": "<bg-image>||<bg-position> [/ <bg-size>]?||<repeat-style>||<attachment>||<visual-box>||<visual-box>||<'background-color'>",
"fit-content()": "fit-content( <length-percentage [0,∞]> )",
"fixed-breadth": "<length-percentage>",
"fixed-repeat": "repeat( [<integer [1,∞]>] , [<line-names>? <fixed-size>]+ <line-names>? )",
"fixed-size": "<fixed-breadth>|minmax( <fixed-breadth> , <track-breadth> )|minmax( <inflexible-breadth> , <fixed-breadth> )",
"font-stretch-absolute": "normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded|<percentage>",
"font-variant-css2": "normal|small-caps",
"font-weight-absolute": "normal|bold|<number [1,1000]>",
"font-width-css3": "normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded",
"form-control-identifier": "select",
"frequency-percentage": "<frequency>|<percentage>",
"generic-complete": "serif|sans-serif|system-ui|cursive|fantasy|math|monospace",
"general-enclosed": "[<function-token> <any-value>? )]|[( <any-value>? )]",
"generic-family": "<generic-script-specific>|<generic-complete>|<generic-incomplete>|<-non-standard-generic-family>",
"generic-incomplete": "ui-serif|ui-sans-serif|ui-monospace|ui-rounded",
"geometry-box": "<shape-box>|fill-box|stroke-box|view-box",
"gradient": "<linear-gradient()>|<repeating-linear-gradient()>|<radial-gradient()>|<repeating-radial-gradient()>|<conic-gradient()>|<repeating-conic-gradient()>|<-legacy-gradient>",
"grayscale()": "grayscale( [<number>|<percentage>]? )",
"grid-line": "auto|<custom-ident>|[<integer>&&<custom-ident>?]|[span&&[<integer>||<custom-ident>]]",
"historical-lig-values": "[historical-ligatures|no-historical-ligatures]",
"hsl()": "hsl( <hue> , <percentage> , <percentage> , <alpha-value>? )|hsl( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
"hsla()": "hsla( <hue> , <percentage> , <percentage> , <alpha-value>? )|hsla( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
"hue": "<number>|<angle>",
"hue-interpolation-method": "[shorter|longer|increasing|decreasing] hue",
"hue-rotate()": "hue-rotate( [<angle>|<zero>]? )",
"hwb()": "hwb( [<hue>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
"hypot()": "hypot( <calc-sum># )",
"image": "<url>|<image()>|<image-set()>|<element()>|<paint()>|<cross-fade()>|<gradient>",
"image()": "image( <image-tags>? [<image-src>? , <color>?]! )",
"image-set()": "image-set( <image-set-option># )",
"image-set-option": "[<image>|<string>] [<resolution>||type( <string> )]",
"image-src": "<url>|<string>",
"image-tags": "ltr|rtl",
"inflexible-breadth": "<length-percentage>|min-content|max-content|auto",
"inset()": "inset( <length-percentage>{1,4} [round <'border-radius'>]? )",
"invert()": "invert( [<number>|<percentage>]? )",
"keyframe-block": "<keyframe-selector># { <declaration-list> }",
"keyframe-selector": "from|to|<percentage [0,100]>|<timeline-range-name> <percentage>",
"keyframes-name": "<custom-ident>|<string>",
"lab()": "lab( [<percentage>|<number>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
"layer()": "layer( <layer-name> )",
"layer-name": "<ident> ['.' <ident>]*",
"lch()": "lch( [<percentage>|<number>|none] [<percentage>|<number>|none] [<hue>|none] [/ [<alpha-value>|none]]? )",
"leader()": "leader( <leader-type> )",
"leader-type": "dotted|solid|space|<string>",
"length-percentage": "<length>|<percentage>",
"light-dark()": "light-dark( <color> , <color> )",
"line-name-list": "[<line-names>|<name-repeat>]+",
"line-names": "'[' <custom-ident>* ']'",
"line-style": "none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset",
"line-width": "<length>|thin|medium|thick",
"linear()": "linear( [<number>&&<percentage>{0,2}]# )",
"linear-color-hint": "<length-percentage>",
"linear-color-stop": "<color> <color-stop-length>?",
"linear-easing-function": "linear|<linear()>",
"linear-gradient()": "linear-gradient( [<linear-gradient-syntax>] )",
"linear-gradient-syntax": "[[<angle>|<zero>|to <side-or-corner>]||<color-interpolation-method>]? , <color-stop-list>",
"log()": "log( <calc-sum> , <calc-sum>? )",
"mask-layer": "<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||<geometry-box>||[<geometry-box>|no-clip]||<compositing-operator>||<masking-mode>",
"mask-position": "[<length-percentage>|left|center|right] [<length-percentage>|top|center|bottom]?",
"mask-reference": "none|<image>|<mask-source>",
"mask-source": "<url>",
"masking-mode": "alpha|luminance|match-source",
"matrix()": "matrix( <number>#{6} )",
"matrix3d()": "matrix3d( <number>#{16} )",
"max()": "max( <calc-sum># )",
"media-and": "<media-in-parens> [and <media-in-parens>]+",
"media-condition": "<media-not>|<media-and>|<media-or>|<media-in-parens>",
"media-condition-without-or": "<media-not>|<media-and>|<media-in-parens>",
"media-feature": "( [<mf-plain>|<mf-boolean>|<mf-range>] )",
"media-in-parens": "( <media-condition> )|<media-feature>|<general-enclosed>",
"media-not": "not <media-in-parens>",
"media-or": "<media-in-parens> [or <media-in-parens>]+",
"media-query": "<media-condition>|[not|only]? <media-type> [and <media-condition-without-or>]?",
"media-query-list": "<media-query>#",
"media-type": "<ident>",
"mf-boolean": "<mf-name>",
"mf-name": "<ident>",
"mf-plain": "<mf-name> : <mf-value>",
"mf-range": "<mf-name> ['<'|'>']? '='? <mf-value>|<mf-value> ['<'|'>']? '='? <mf-name>|<mf-value> '<' '='? <mf-name> '<' '='? <mf-value>|<mf-value> '>' '='? <mf-name> '>' '='? <mf-value>",
"mf-value": "<number>|<dimension>|<ident>|<ratio>",
"min()": "min( <calc-sum># )",
"minmax()": "minmax( [<length-percentage>|min-content|max-content|auto] , [<length-percentage>|<flex>|min-content|max-content|auto] )",
"mod()": "mod( <calc-sum> , <calc-sum> )",
"n-dimension": "<dimension-token>",
"name-repeat": "repeat( [<integer [1,∞]>|auto-fill] , <line-names>+ )",
"named-color": "aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkgrey|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkslategrey|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dimgrey|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|grey|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgray|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightslategrey|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|rebeccapurple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|slategrey|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen",
"namespace-prefix": "<ident>",
"ndash-dimension": "<dimension-token>",
"ndashdigit-dimension": "<dimension-token>",
"ndashdigit-ident": "<ident-token>",
"ns-prefix": "[<ident-token>|'*']? '|'",
"number-percentage": "<number>|<percentage>",
"numeric-figure-values": "[lining-nums|oldstyle-nums]",
"numeric-fraction-values": "[diagonal-fractions|stacked-fractions]",
"numeric-spacing-values": "[proportional-nums|tabular-nums]",
"offset-path": "<ray()>|<url>|<basic-shape>",
"oklab()": "oklab( [<percentage>|<number>|none] [<percentage>|<number>|none] [<percentage>|<number>|none] [/ [<alpha-value>|none]]? )",
"oklch()": "oklch( [<percentage>|<number>|none] [<percentage>|<number>|none] [<hue>|none] [/ [<alpha-value>|none]]? )",
"opacity()": "opacity( [<number>|<percentage>]? )",
"opacity-value": "<number>|<percentage>",
"outline-line-style": "none|dotted|dashed|solid|double|groove|ridge|inset|outset",
"outline-radius": "<length>|<percentage>",
"overflow-position": "unsafe|safe",
"page-body": "<declaration>? [; <page-body>]?|<page-margin-box> <page-body>",
"page-margin-box": "<page-margin-box-type> '{' <declaration-list> '}'",
"page-margin-box-type": "@top-left-corner|@top-left|@top-center|@top-right|@top-right-corner|@bottom-left-corner|@bottom-left|@bottom-center|@bottom-right|@bottom-right-corner|@left-top|@left-middle|@left-bottom|@right-top|@right-middle|@right-bottom",
"page-selector": "<pseudo-page>+|<ident> <pseudo-page>*",
"page-selector-list": "[<page-selector>#]?",
"page-size": "A5|A4|A3|B5|B4|JIS-B5|JIS-B4|letter|legal|ledger",
"paint": "none|<color>|<url> [none|<color>]?|context-fill|context-stroke",
"paint()": "paint( <ident> , <declaration-value>? )",
"paint-box": "<visual-box>|fill-box|stroke-box",
"palette-identifier": "<dashed-ident>",
"palette-mix()": "palette-mix( <color-interpolation-method> , [[normal|light|dark|<palette-identifier>|<palette-mix()>]&&<percentage [0,100]>?]#{2} )",
"path()": "path( <'fill-rule'>? , <string> )",
"perspective()": "perspective( [<length [0,∞]>|none] )",
"polar-color-space": "hsl|hwb|lch|oklch",
"polygon()": "polygon( <'fill-rule'>? , [<length-percentage> <length-percentage>]# )",
"position": "[[left|center|right]||[top|center|bottom]|[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]?|[[left|right] <length-percentage>]&&[[top|bottom] <length-percentage>]]",
"position-area": "[[left|center|right|span-left|span-right|x-start|x-end|span-x-start|span-x-end|x-self-start|x-self-end|span-x-self-start|span-x-self-end|span-all]||[top|center|bottom|span-top|span-bottom|y-start|y-end|span-y-start|span-y-end|y-self-start|y-self-end|span-y-self-start|span-y-self-end|span-all]|[block-start|center|block-end|span-block-start|span-block-end|span-all]||[inline-start|center|inline-end|span-inline-start|span-inline-end|span-all]|[self-block-start|center|self-block-end|span-self-block-start|span-self-block-end|span-all]||[self-inline-start|center|self-inline-end|span-self-inline-start|span-self-inline-end|span-all]|[start|center|end|span-start|span-end|span-all]{1,2}|[self-start|center|self-end|span-self-start|span-self-end|span-all]{1,2}]",
"pow()": "pow( <calc-sum> , <calc-sum> )",
"predefined-rgb": "srgb|srgb-linear|display-p3|display-p3-linear|a98-rgb|prophoto-rgb|rec2020",
"predefined-rgb-params": "<predefined-rgb> [<number>|<percentage>|none]{3}",
"pseudo-class-selector": "':' <ident-token>|':' <function-token> <any-value> ')'",
"pseudo-element-selector": "':' <pseudo-class-selector>|<legacy-pseudo-element-selector>",
"pseudo-page": ": [left|right|first|blank]",
"query-in-parens": "( <container-condition> )|( <size-feature> )|style( <style-query> )|<general-enclosed>",
"quote": "open-quote|close-quote|no-open-quote|no-close-quote",
"radial-extent": "closest-corner|closest-side|farthest-corner|farthest-side",
"radial-gradient()": "radial-gradient( [<radial-gradient-syntax>] )",
"radial-gradient-syntax": "[[[<radial-shape>||<radial-size>]? [at <position>]?]||<color-interpolation-method>]? , <color-stop-list>",
"radial-shape": "circle|ellipse",
"radial-size": "<radial-extent>|<length [0,∞]>|<length-percentage [0,∞]>{2}",
"ratio": "<number [0,∞]> [/ <number [0,∞]>]?",
"ray()": "ray( <angle>&&<ray-size>?&&contain?&&[at <position>]? )",
"ray-size": "closest-side|closest-corner|farthest-side|farthest-corner|sides",
"rect()": "rect( [<length-percentage>|auto]{4} [round <'border-radius'>]? )",
"rectangular-color-space": "srgb|srgb-linear|display-p3|display-p3-linear|a98-rgb|prophoto-rgb|rec2020|lab|oklab|xyz|xyz-d50|xyz-d65",
"relative-selector": "<combinator>? <complex-selector>",
"relative-selector-list": "<relative-selector>#",
"relative-size": "larger|smaller",
"rem()": "rem( <calc-sum> , <calc-sum> )",
"repeat-style": "repeat-x|repeat-y|[repeat|space|round|no-repeat]{1,2}",
"repeating-conic-gradient()": "repeating-conic-gradient( [<conic-gradient-syntax>] )",
"repeating-linear-gradient()": "repeating-linear-gradient( [<linear-gradient-syntax>] )",
"repeating-radial-gradient()": "repeating-radial-gradient( [<radial-gradient-syntax>] )",
"reversed-counter-name": "reversed( <counter-name> )",
"rgb()": "rgb( <percentage>#{3} , <alpha-value>? )|rgb( <number>#{3} , <alpha-value>? )|rgb( [<number>|<percentage>|none]{3} [/ [<alpha-value>|none]]? )",
"rgba()": "rgba( <percentage>#{3} , <alpha-value>? )|rgba( <number>#{3} , <alpha-value>? )|rgba( [<number>|<percentage>|none]{3} [/ [<alpha-value>|none]]? )",
"rotate()": "rotate( [<angle>|<zero>] )",
"rotate3d()": "rotate3d( <number> , <number> , <number> , [<angle>|<zero>] )",
"rotateX()": "rotateX( [<angle>|<zero>] )",
"rotateY()": "rotateY( [<angle>|<zero>] )",
"rotateZ()": "rotateZ( [<angle>|<zero>] )",
"round()": "round( <rounding-strategy>? , <calc-sum> , <calc-sum> )",
"rounding-strategy": "nearest|up|down|to-zero",
"saturate()": "saturate( [<number>|<percentage>]? )",
"scale()": "scale( [<number>|<percentage>]#{1,2} )",
"scale3d()": "scale3d( [<number>|<percentage>]#{3} )",
"scaleX()": "scaleX( [<number>|<percentage>] )",
"scaleY()": "scaleY( [<number>|<percentage>] )",
"scaleZ()": "scaleZ( [<number>|<percentage>] )",
"scope-end": "<forgiving-selector-list>",
"scope-start": "<forgiving-selector-list>",
"scroll()": "scroll( [<scroller>||<axis>]? )",
"scroller": "root|nearest|self",
"scroll-state-feature": "<media-query-list>",
"scroll-state-in-parens": "( <scroll-state-query> )|( <scroll-state-feature> )|<general-enclosed>",
"scroll-state-query": "not <scroll-state-in-parens>|<scroll-state-in-parens> [[and <scroll-state-in-parens>]*|[or <scroll-state-in-parens>]*]|<scroll-state-feature>",
"selector-list": "<complex-selector-list>",
"self-position": "center|start|end|self-start|self-end|flex-start|flex-end",
"sepia()": "sepia( [<number>|<percentage>]? )",
"shadow": "inset?&&<length>{2,4}&&<color>?",
"shadow-t": "[<length>{2,3}&&<color>?]",
"shape": "rect( <top> , <right> , <bottom> , <left> )|rect( <top> <right> <bottom> <left> )",
"shape-box": "<visual-box>|margin-box",
"side-or-corner": "[left|right]||[top|bottom]",
"sign()": "sign( <calc-sum> )",
"signed-integer": "<number-token>",
"signless-integer": "<number-token>",
"sin()": "sin( <calc-sum> )",
"single-animation": "<'animation-duration'>||<easing-function>||<'animation-delay'>||<single-animation-iteration-count>||<single-animation-direction>||<single-animation-fill-mode>||<single-animation-play-state>||[none|<keyframes-name>]||<single-animation-timeline>",
"single-animation-composition": "replace|add|accumulate",
"single-animation-direction": "normal|reverse|alternate|alternate-reverse",
"single-animation-fill-mode": "none|forwards|backwards|both",
"single-animation-iteration-count": "infinite|<number>",
"single-animation-play-state": "running|paused",
"single-animation-timeline": "auto|none|<dashed-ident>|<scroll()>|<view()>",
"single-transition": "[none|<single-transition-property>]||<time>||<easing-function>||<time>||<transition-behavior-value>",
"single-transition-property": "all|<custom-ident>",
"size": "closest-side|farthest-side|closest-corner|farthest-corner|<length>|<length-percentage>{2}",
"size-feature": "<mf-plain>|<mf-boolean>|<mf-range>",
"skew()": "skew( [<angle>|<zero>] , [<angle>|<zero>]? )",
"skewX()": "skewX( [<angle>|<zero>] )",
"skewY()": "skewY( [<angle>|<zero>] )",
"sqrt()": "sqrt( <calc-sum> )",
"step-position": "jump-start|jump-end|jump-none|jump-both|start|end",
"step-easing-function": "step-start|step-end|<steps()>",
"steps()": "steps( <integer> , <step-position>? )",
"style-feature": "<declaration>",
"style-in-parens": "( <style-condition> )|( <style-feature> )|<general-enclosed>",
"style-query": "<style-condition>|<style-feature>",
"subclass-selector": "<id-selector>|<class-selector>|<attribute-selector>|<pseudo-class-selector>",
"superellipse()": "superellipse( [<number>|infinity|-infinity] )",
"supports-condition": "not <supports-in-parens>|<supports-in-parens> [and <supports-in-parens>]*|<supports-in-parens> [or <supports-in-parens>]*",
"supports-decl": "( <declaration> )",
"supports-feature": "<supports-decl>|<supports-selector-fn>",
"supports-in-parens": "( <supports-condition> )|<supports-feature>|<general-enclosed>",
"supports-selector-fn": "selector( <complex-selector> )",
"symbol": "<string>|<image>|<custom-ident>",
"symbols()": "symbols( <symbols-type>? [<string>|<image>]+ )",
"symbols-type": "cyclic|numeric|alphabetic|symbolic|fixed",
"system-color": "AccentColor|AccentColorText|ActiveText|ButtonBorder|ButtonFace|ButtonText|Canvas|CanvasText|Field|FieldText|GrayText|Highlight|HighlightText|LinkText|Mark|MarkText|SelectedItem|SelectedItemText|VisitedText",
"system-family-name": "caption|icon|menu|message-box|small-caption|status-bar",
"tan()": "tan( <calc-sum> )",
"target": "<target-counter()>|<target-counters()>|<target-text()>",
"target-counter()": "target-counter( [<string>|<url>] , <custom-ident> , <counter-style>? )",
"target-counters()": "target-counters( [<string>|<url>] , <custom-ident> , <string> , <counter-style>? )",
"target-text()": "target-text( [<string>|<url>] , [content|before|after|first-letter]? )",
"text-edge": "[text|cap|ex|ideographic|ideographic-ink] [text|alphabetic|ideographic|ideographic-ink]?",
"time-percentage": "<time>|<percentage>",
"timeline-range-name": "cover|contain|entry|exit|entry-crossing|exit-crossing",
"track-breadth": "<length-percentage>|<flex>|min-content|max-content|auto",
"track-list": "[<line-names>? [<track-size>|<track-repeat>]]+ <line-names>?",
"track-repeat": "repeat( [<integer [1,∞]>] , [<line-names>? <track-size>]+ <line-names>? )",
"track-size": "<track-breadth>|minmax( <inflexible-breadth> , <track-breadth> )|fit-content( <length-percentage> )",
"transform-function": "<matrix()>|<translate()>|<translateX()>|<translateY()>|<scale()>|<scaleX()>|<scaleY()>|<rotate()>|<skew()>|<skewX()>|<skewY()>|<matrix3d()>|<translate3d()>|<translateZ()>|<scale3d()>|<scaleZ()>|<rotate3d()>|<rotateX()>|<rotateY()>|<rotateZ()>|<perspective()>",
"transform-list": "<transform-function>+",
"transition-behavior-value": "normal|allow-discrete",
"translate()": "translate( <length-percentage> , <length-percentage>? )",
"translate3d()": "translate3d( <length-percentage> , <length-percentage> , <length> )",
"translateX()": "translateX( <length-percentage> )",
"translateY()": "translateY( <length-percentage> )",
"translateZ()": "translateZ( <length> )",
"try-size": "most-width|most-height|most-block-size|most-inline-size",
"try-tactic": "flip-block||flip-inline||flip-start",
"type-or-unit": "string|color|url|integer|number|length|angle|time|frequency|cap|ch|em|ex|ic|lh|rlh|rem|vb|vi|vw|vh|vmin|vmax|mm|Q|cm|in|pt|pc|px|deg|grad|rad|turn|ms|s|Hz|kHz|%",
"type-selector": "<wq-name>|<ns-prefix>? '*'",
"var()": "var( <custom-property-name> , <declaration-value>? )",
"view()": "view( [<axis>||<'view-timeline-inset'>]? )",
"viewport-length": "auto|<length-percentage>",
"visual-box": "content-box|padding-box|border-box",
"wq-name": "<ns-prefix>? <ident-token>",
"xywh()": "xywh( <length-percentage>{2} <length-percentage [0,∞]>{2} [round <'border-radius'>]? )",
"xyz": "xyz|xyz-d50|xyz-d65",
"xyz-params": "<xyz-space> [<number>|<percentage>|none]{3}",
"-legacy-gradient": "<-webkit-gradient()>|<-legacy-linear-gradient>|<-legacy-repeating-linear-gradient>|<-legacy-radial-gradient>|<-legacy-repeating-radial-gradient>",
"-legacy-linear-gradient": "-moz-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-linear-gradient( <-legacy-linear-gradient-arguments> )",
"-legacy-repeating-linear-gradient": "-moz-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-webkit-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )|-o-repeating-linear-gradient( <-legacy-linear-gradient-arguments> )",
"-legacy-linear-gradient-arguments": "[<angle>|<side-or-corner>]? , <color-stop-list>",
"-legacy-radial-gradient": "-moz-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-radial-gradient( <-legacy-radial-gradient-arguments> )",
"-legacy-repeating-radial-gradient": "-moz-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-webkit-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )|-o-repeating-radial-gradient( <-legacy-radial-gradient-arguments> )",
"-legacy-radial-gradient-arguments": "[<position> ,]? [[[<-legacy-radial-gradient-shape>||<-legacy-radial-gradient-size>]|[<length>|<percentage>]{2}] ,]? <color-stop-list>",
"-legacy-radial-gradient-size": "closest-side|closest-corner|farthest-side|farthest-corner|contain|cover",
"-legacy-radial-gradient-shape": "circle|ellipse",
"-non-standard-font": "-apple-system-body|-apple-system-headline|-apple-system-subheadline|-apple-system-caption1|-apple-system-caption2|-apple-system-footnote|-apple-system-short-body|-apple-system-short-headline|-apple-system-short-subheadline|-apple-system-short-caption1|-apple-system-short-footnote|-apple-system-tall-body",
"-non-standard-color": "-moz-ButtonDefault|-moz-ButtonHoverFace|-moz-ButtonHoverText|-moz-CellHighlight|-moz-CellHighlightText|-moz-Combobox|-moz-ComboboxText|-moz-Dialog|-moz-DialogText|-moz-dragtargetzone|-moz-EvenTreeRow|-moz-Field|-moz-FieldText|-moz-html-CellHighlight|-moz-html-CellHighlightText|-moz-mac-accentdarkestshadow|-moz-mac-accentdarkshadow|-moz-mac-accentface|-moz-mac-accentlightesthighlight|-moz-mac-accentlightshadow|-moz-mac-accentregularhighlight|-moz-mac-accentregularshadow|-moz-mac-chrome-active|-moz-mac-chrome-inactive|-moz-mac-focusring|-moz-mac-menuselect|-moz-mac-menushadow|-moz-mac-menutextselect|-moz-MenuHover|-moz-MenuHoverText|-moz-MenuBarText|-moz-MenuBarHoverText|-moz-nativehyperlinktext|-moz-OddTreeRow|-moz-win-communicationstext|-moz-win-mediatext|-moz-activehyperlinktext|-moz-default-background-color|-moz-default-color|-moz-hyperlinktext|-moz-visitedhyperlinktext|-webkit-activelink|-webkit-focus-ring-color|-webkit-link|-webkit-text",
"-non-standard-image-rendering": "optimize-contrast|-moz-crisp-edges|-o-crisp-edges|-webkit-optimize-contrast",
"-non-standard-overflow": "overlay|-moz-scrollbars-none|-moz-scrollbars-horizontal|-moz-scrollbars-vertical|-moz-hidden-unscrollable",
"-non-standard-size": "intrinsic|min-intrinsic|-webkit-fill-available|-webkit-fit-content|-webkit-min-content|-webkit-max-content|-moz-available|-moz-fit-content|-moz-min-content|-moz-max-content",
"-webkit-gradient()": "-webkit-gradient( <-webkit-gradient-type> , <-webkit-gradient-point> [, <-webkit-gradient-point>|, <-webkit-gradient-radius> , <-webkit-gradient-point>] [, <-webkit-gradient-radius>]? [, <-webkit-gradient-color-stop>]* )",
"-webkit-gradient-color-stop": "from( <color> )|color-stop( [<number-zero-one>|<percentage>] , <color> )|to( <color> )",
"-webkit-gradient-point": "[left|center|right|<length-percentage>] [top|center|bottom|<length-percentage>]",
"-webkit-gradient-radius": "<length>|<percentage>",
"-webkit-gradient-type": "linear|radial",
"-webkit-mask-box-repeat": "repeat|stretch|round",
"-ms-filter-function-list": "<-ms-filter-function>+",
"-ms-filter-function": "<-ms-filter-function-progid>|<-ms-filter-function-legacy>",
"-ms-filter-function-progid": "'progid:' [<ident-token> '.']* [<ident-token>|<function-token> <any-value>? )]",
"-ms-filter-function-legacy": "<ident-token>|<function-token> <any-value>? )",
"age": "child|young|old",
"attr-name": "<wq-name>",
"attr-fallback": "<any-value>",
"autospace": "no-autospace|[ideograph-alpha||ideograph-numeric||punctuation]||[insert|replace]",
"bottom": "<length>|auto",
"generic-voice": "[<age>? <gender> <integer>?]",
"gender": "male|female|neutral",
"generic-script-specific": "generic( kai )|generic( fangsong )|generic( nastaliq )",
"-non-standard-generic-family": "-apple-system|BlinkMacSystemFont",
"intrinsic-size-keyword": "min-content|max-content|fit-content",
"left": "<length>|auto",
"device-cmyk()": "<legacy-device-cmyk-syntax>|<modern-device-cmyk-syntax>",
"legacy-device-cmyk-syntax": "device-cmyk( <number>#{4} )",
"modern-device-cmyk-syntax": "device-cmyk( <cmyk-component>{4} [/ [<alpha-value>|none]]? )",
"cmyk-component": "<number>|<percentage>|none",
"color-space": "<rectangular-color-space>|<polar-color-space>|<custom-color-space>",
"right": "<length>|auto",
"forgiving-selector-list": "<complex-real-selector-list>",
"forgiving-relative-selector-list": "<relative-real-selector-list>",
"complex-real-selector-list": "<complex-real-selector>#",
"simple-selector-list": "<simple-selector>#",
"relative-real-selector-list": "<relative-real-selector>#",
"complex-selector-unit": "[<compound-selector>? <pseudo-compound-selector>*]!",
"complex-real-selector": "<compound-selector> [<combinator>? <compound-selector>]*",
"relative-real-selector": "<combinator>? <complex-real-selector>",
"pseudo-compound-selector": "<pseudo-element-selector> <pseudo-class-selector>*",
"simple-selector": "<type-selector>|<subclass-selector>",
"legacy-pseudo-element-selector": "':' [before|after|first-line|first-letter]",
"svg-length": "<percentage>|<length>|<number>",
"svg-writing-mode": "lr-tb|rl-tb|tb-rl|lr|rl|tb",
"top": "<length>|auto",
"x": "<number>",
"y": "<number>",
"declaration": "<ident-token> : <declaration-value>? ['!' important]?",
"declaration-list": "[<declaration>? ';']* <declaration>?",
"url": "url( <string> <url-modifier>* )|<url-token>",
"url-modifier": "<ident>|<function-token> <any-value> )",
"number-zero-one": "<number [0,1]>",
"number-one-or-greater": "<number [1,∞]>",
"xyz-space": "xyz|xyz-d50|xyz-d65",
"style-condition": "not <style-in-parens>|<style-in-parens> [[and <style-in-parens>]*|[or <style-in-parens>]*]",
"-non-standard-display": "-ms-inline-flexbox|-ms-grid|-ms-inline-grid|-webkit-flex|-webkit-inline-flex|-webkit-box|-webkit-inline-box|-moz-inline-stack|-moz-box|-moz-inline-box",
"inset-area": "[[left|center|right|span-left|span-right|x-start|x-end|span-x-start|span-x-end|x-self-start|x-self-end|span-x-self-start|span-x-self-end|span-all]||[top|center|bottom|span-top|span-bottom|y-start|y-end|span-y-start|span-y-end|y-self-start|y-self-end|span-y-self-start|span-y-self-end|span-all]|[block-start|center|block-end|span-block-start|span-block-end|span-all]||[inline-start|center|inline-end|span-inline-start|span-inline-end|span-all]|[self-block-start|self-block-end|span-self-block-start|span-self-block-end|span-all]||[self-inline-start|self-inline-end|span-self-inline-start|span-self-inline-end|span-all]|[start|center|end|span-start|span-end|span-all]{1,2}|[self-start|center|self-end|span-self-start|span-self-end|span-all]{1,2}]",
"syntax": "'*'|<syntax-component> [<syntax-combinator> <syntax-component>]*|<syntax-string>",
"syntax-component": "<syntax-single-component> <syntax-multiplier>?|'<' transform-list '>'",
"syntax-single-component": "'<' <syntax-type-name> '>'|<ident>",
"syntax-type-name": "angle|color|custom-ident|image|integer|length|length-percentage|number|percentage|resolution|string|time|url|transform-function",
"syntax-combinator": "'|'",
"syntax-multiplier": "'#'|'+'",
"syntax-string": "<string>"
},
"properties": {
"--*": "<declaration-value>",
"-ms-accelerator": "false|true",
"-ms-block-progression": "tb|rl|bt|lr",
"-ms-content-zoom-chaining": "none|chained",
"-ms-content-zoom-limit": "<'-ms-content-zoom-limit-min'> <'-ms-content-zoom-limit-max'>",
"-ms-content-zoom-limit-max": "<percentage>",
"-ms-content-zoom-limit-min": "<percentage>",
"-ms-content-zoom-snap": "<'-ms-content-zoom-snap-type'>||<'-ms-content-zoom-snap-points'>",
"-ms-content-zoom-snap-points": "snapInterval( <percentage> , <percentage> )|snapList( <percentage># )",
"-ms-content-zoom-snap-type": "none|proximity|mandatory",
"-ms-content-zooming": "none|zoom",
"-ms-filter": "<string>",
"-ms-flow-from": "[none|<custom-ident>]#",
"-ms-flow-into": "[none|<custom-ident>]#",
"-ms-grid-columns": "none|<track-list>|<auto-track-list>",
"-ms-grid-rows": "none|<track-list>|<auto-track-list>",
"-ms-high-contrast-adjust": "auto|none",
"-ms-hyphenate-limit-chars": "auto|<integer>{1,3}",
"-ms-hyphenate-limit-lines": "no-limit|<integer>",
"-ms-hyphenate-limit-zone": "<percentage>|<length>",
"-ms-ime-align": "auto|after",
"-ms-overflow-style": "auto|none|scrollbar|-ms-autohiding-scrollbar",
"-ms-scroll-chaining": "chained|none",
"-ms-scroll-limit": "<'-ms-scroll-limit-x-min'> <'-ms-scroll-limit-y-min'> <'-ms-scroll-limit-x-max'> <'-ms-scroll-limit-y-max'>",
"-ms-scroll-limit-x-max": "auto|<length>",
"-ms-scroll-limit-x-min": "<length>",
"-ms-scroll-limit-y-max": "auto|<length>",
"-ms-scroll-limit-y-min": "<length>",
"-ms-scroll-rails": "none|railed",
"-ms-scroll-snap-points-x": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )",
"-ms-scroll-snap-points-y": "snapInterval( <length-percentage> , <length-percentage> )|snapList( <length-percentage># )",
"-ms-scroll-snap-type": "none|proximity|mandatory",
"-ms-scroll-snap-x": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-x'>",
"-ms-scroll-snap-y": "<'-ms-scroll-snap-type'> <'-ms-scroll-snap-points-y'>",
"-ms-scroll-translation": "none|vertical-to-horizontal",
"-ms-scrollbar-3dlight-color": "<color>",
"-ms-scrollbar-arrow-color": "<color>",
"-ms-scrollbar-base-color": "<color>",
"-ms-scrollbar-darkshadow-color": "<color>",
"-ms-scrollbar-face-color": "<color>",
"-ms-scrollbar-highlight-color": "<color>",
"-ms-scrollbar-shadow-color": "<color>",
"-ms-scrollbar-track-color": "<color>",
"-ms-text-autospace": "none|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space",
"-ms-touch-select": "grippers|none",
"-ms-user-select": "none|element|text",
"-ms-wrap-flow": "auto|both|start|end|maximum|clear",
"-ms-wrap-margin": "<length>",
"-ms-wrap-through": "wrap|none",
"-moz-appearance": "none|button|button-arrow-down|button-arrow-next|button-arrow-previous|button-arrow-up|button-bevel|button-focus|caret|checkbox|checkbox-container|checkbox-label|checkmenuitem|dualbutton|groupbox|listbox|listitem|menuarrow|menubar|menucheckbox|menuimage|menuitem|menuitemtext|menulist|menulist-button|menulist-text|menulist-textfield|menupopup|menuradio|menuseparator|meterbar|meterchunk|progressbar|progressbar-vertical|progresschunk|progresschunk-vertical|radio|radio-container|radio-label|radiomenuitem|range|range-thumb|resizer|resizerpanel|scale-horizontal|scalethumbend|scalethumb-horizontal|scalethumbstart|scalethumbtick|scalethumb-vertical|scale-vertical|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|separator|sheet|spinner|spinner-downbutton|spinner-textfield|spinner-upbutton|splitter|statusbar|statusbarpanel|tab|tabpanel|tabpanels|tab-scroll-arrow-back|tab-scroll-arrow-forward|textfield|textfield-multiline|toolbar|toolbarbutton|toolbarbutton-dropdown|toolbargripper|toolbox|tooltip|treeheader|treeheadercell|treeheadersortarrow|treeitem|treeline|treetwisty|treetwistyopen|treeview|-moz-mac-unified-toolbar|-moz-win-borderless-glass|-moz-win-browsertabbar-toolbox|-moz-win-communicationstext|-moz-win-communications-toolbox|-moz-win-exclude-glass|-moz-win-glass|-moz-win-mediatext|-moz-win-media-toolbox|-moz-window-button-box|-moz-window-button-box-maximized|-moz-window-button-close|-moz-window-button-maximize|-moz-window-button-minimize|-moz-window-button-restore|-moz-window-frame-bottom|-moz-window-frame-left|-moz-window-frame-right|-moz-window-titlebar|-moz-window-titlebar-maximized",
"-moz-binding": "<url>|none",
"-moz-border-bottom-colors": "<color>+|none",
"-moz-border-left-colors": "<color>+|none",
"-moz-border-right-colors": "<color>+|none",
"-moz-border-top-colors": "<color>+|none",
"-moz-context-properties": "none|[fill|fill-opacity|stroke|stroke-opacity]#",
"-moz-float-edge": "border-box|content-box|margin-box|padding-box",
"-moz-force-broken-image-icon": "0|1",
"-moz-orient": "inline|block|horizontal|vertical",
"-moz-outline-radius": "<outline-radius>{1,4} [/ <outline-radius>{1,4}]?",
"-moz-outline-radius-bottomleft": "<outline-radius>",
"-moz-outline-radius-bottomright": "<outline-radius>",
"-moz-outline-radius-topleft": "<outline-radius>",
"-moz-outline-radius-topright": "<outline-radius>",
"-moz-stack-sizing": "ignore|stretch-to-fit",
"-moz-text-blink": "none|blink",
"-moz-user-focus": "ignore|normal|select-after|select-before|select-menu|select-same|select-all|none",
"-moz-user-input": "auto|none|enabled|disabled",
"-moz-user-modify": "read-only|read-write|write-only",
"-moz-window-dragging": "drag|no-drag",
"-moz-window-shadow": "default|menu|tooltip|sheet|none",
"-webkit-appearance": "none|button|button-bevel|caps-lock-indicator|caret|checkbox|default-button|inner-spin-button|listbox|listitem|media-controls-background|media-controls-fullscreen-background|media-current-time-display|media-enter-fullscreen-button|media-exit-fullscreen-button|media-fullscreen-button|media-mute-button|media-overlay-play-button|media-play-button|media-seek-back-button|media-seek-forward-button|media-slider|media-sliderthumb|media-time-remaining-display|media-toggle-closed-captions-button|media-volume-slider|media-volume-slider-container|media-volume-sliderthumb|menulist|menulist-button|menulist-text|menulist-textfield|meter|progress-bar|progress-bar-value|push-button|radio|scrollbarbutton-down|scrollbarbutton-left|scrollbarbutton-right|scrollbarbutton-up|scrollbargripper-horizontal|scrollbargripper-vertical|scrollbarthumb-horizontal|scrollbarthumb-vertical|scrollbartrack-horizontal|scrollbartrack-vertical|searchfield|searchfield-cancel-button|searchfield-decoration|searchfield-results-button|searchfield-results-decoration|slider-horizontal|slider-vertical|sliderthumb-horizontal|sliderthumb-vertical|square-button|textarea|textfield|-apple-pay-button",
"-webkit-border-before": "<'border-width'>||<'border-style'>||<color>",
"-webkit-border-before-color": "<color>",
"-webkit-border-before-style": "<'border-style'>",
"-webkit-border-before-width": "<'border-width'>",
"-webkit-box-reflect": "[above|below|right|left]? <length>? <image>?",
"-webkit-line-clamp": "none|<integer>",
"-webkit-mask": "[<mask-reference>||<position> [/ <bg-size>]?||<repeat-style>||[<visual-box>|border|padding|content|text]||[<visual-box>|border|padding|content]]#",
"-webkit-mask-attachment": "<attachment>#",
"-webkit-mask-clip": "[<coord-box>|no-clip|border|padding|content|text]#",
"-webkit-mask-composite": "<composite-style>#",
"-webkit-mask-image": "<mask-reference>#",
"-webkit-mask-origin": "[<coord-box>|border|padding|content]#",
"-webkit-mask-position": "<position>#",
"-webkit-mask-position-x": "[<length-percentage>|left|center|right]#",
"-webkit-mask-position-y": "[<length-percentage>|top|center|bottom]#",
"-webkit-mask-repeat": "<repeat-style>#",
"-webkit-mask-repeat-x": "repeat|no-repeat|space|round",
"-webkit-mask-repeat-y": "repeat|no-repeat|space|round",
"-webkit-mask-size": "<bg-size>#",
"-webkit-overflow-scrolling": "auto|touch",
"-webkit-tap-highlight-color": "<color>",
"-webkit-text-fill-color": "<color>",
"-webkit-text-stroke": "<length>||<color>",
"-webkit-text-stroke-color": "<color>",
"-webkit-text-stroke-width": "<length>",
"-webkit-touch-callout": "default|none",
"-webkit-user-modify": "read-only|read-write|read-write-plaintext-only",
"-webkit-user-select": "auto|none|text|all",
"accent-color": "auto|<color>",
"align-content": "normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>",
"align-items": "normal|stretch|<baseline-position>|[<overflow-position>? <self-position>]|anchor-center",
"align-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? <self-position>|anchor-center",
"align-tracks": "[normal|<baseline-position>|<content-distribution>|<overflow-position>? <content-position>]#",
"alignment-baseline": "auto|baseline|before-edge|text-before-edge|middle|central|after-edge|text-after-edge|ideographic|alphabetic|hanging|mathematical",
"all": "initial|inherit|unset|revert|revert-layer",
"anchor-name": "none|<dashed-ident>#",
"anchor-scope": "none|all|<dashed-ident>#",
"animation": "<single-animation>#",
"animation-composition": "<single-animation-composition>#",
"animation-delay": "<time>#",
"animation-direction": "<single-animation-direction>#",
"animation-duration": "[auto|<time [0s,∞]>]#",
"animation-fill-mode": "<single-animation-fill-mode>#",
"animation-iteration-count": "<single-animation-iteration-count>#",
"animation-name": "[none|<keyframes-name>]#",
"animation-play-state": "<single-animation-play-state>#",
"animation-range": "[<'animation-range-start'> <'animation-range-end'>?]#",
"animation-range-end": "[normal|<length-percentage>|<timeline-range-name> <length-percentage>?]#",
"animation-range-start": "[normal|<length-percentage>|<timeline-range-name> <length-percentage>?]#",
"animation-timeline": "<single-animation-timeline>#",
"animation-timing-function": "<easing-function>#",
"animation-trigger": "[none|[<dashed-ident> <animation-action>+]+]#",
"appearance": "none|auto|<compat-auto>|<compat-special>",
"aspect-ratio": "auto||<ratio>",
"backdrop-filter": "none|<filter-value-list>",
"backface-visibility": "visible|hidden",
"background": "<bg-layer>#? , <final-bg-layer>",
"background-attachment": "<attachment>#",
"background-blend-mode": "<blend-mode>#",
"background-clip": "<bg-clip>#",
"background-color": "<color>",
"background-image": "<bg-image>#",
"background-origin": "<visual-box>#",
"background-position": "<bg-position>#",
"background-position-x": "[center|[[left|right|x-start|x-end]? <length-percentage>?]!]#",
"background-position-y": "[center|[[top|bottom|y-start|y-end]? <length-percentage>?]!]#",
"background-repeat": "<repeat-style>#",
"background-size": "<bg-size>#",
"baseline-shift": "baseline|sub|super|<svg-length>",
"baseline-source": "auto|first|last",
"block-size": "<'width'>",
"border": "<line-width>||<line-style>||<color>",
"border-block": "<'border-block-start'>",
"border-block-color": "<'border-top-color'>{1,2}",
"border-block-end": "<'border-top-width'>||<'border-top-style'>||<color>",
"border-block-end-color": "<'border-top-color'>",
"border-block-end-style": "<'border-top-style'>",
"border-block-end-width": "<'border-top-width'>",
"border-block-start": "<'border-top-width'>||<'border-top-style'>||<color>",
"border-block-start-color": "<'border-top-color'>",
"border-block-start-style": "<'border-top-style'>",
"border-block-start-width": "<'border-top-width'>",
"border-block-style": "<'border-top-style'>{1,2}",
"border-block-width": "<'border-top-width'>{1,2}",
"border-bottom": "<line-width>||<line-style>||<color>",
"border-bottom-color": "<'border-top-color'>",
"border-bottom-left-radius": "<length-percentage [0,∞]>{1,2}",
"border-bottom-right-radius": "<length-percentage [0,∞]>{1,2}",
"border-bottom-style": "<line-style>",
"border-bottom-width": "<line-width>",
"border-collapse": "separate|collapse",
"border-color": "<color>{1,4}",
"border-end-end-radius": "<'border-top-left-radius'>",
"border-end-start-radius": "<'border-top-left-radius'>",
"border-image": "<'border-image-source'>||<'border-image-slice'> [/ <'border-image-width'>|/ <'border-image-width'>? / <'border-image-outset'>]?||<'border-image-repeat'>",
"border-image-outset": "[<length [0,∞]>|<number [0,∞]>]{1,4}",
"border-image-repeat": "[stretch|repeat|round|space]{1,2}",
"border-image-slice": "[<number [0,∞]>|<percentage [0,∞]>]{1,4}&&fill?",
"border-image-source": "none|<image>",
"border-image-width": "[<length-percentage [0,∞]>|<number [0,∞]>|auto]{1,4}",
"border-inline": "<'border-block-start'>",
"border-inline-color": "<'border-top-color'>{1,2}",
"border-inline-end": "<'border-top-width'>||<'border-top-style'>||<color>",
"border-inline-end-color": "<'border-top-color'>",
"border-inline-end-style": "<'border-top-style'>",
"border-inline-end-width": "<'border-top-width'>",
"border-inline-start": "<'border-top-width'>||<'border-top-style'>||<color>",
"border-inline-start-color": "<'border-top-color'>",
"border-inline-start-style": "<'border-top-style'>",
"border-inline-start-width": "<'border-top-width'>",
"border-inline-style": "<'border-top-style'>{1,2}",
"border-inline-width": "<'border-top-width'>{1,2}",
"border-left": "<line-width>||<line-style>||<color>",
"border-left-color": "<color>",
"border-left-style": "<line-style>",
"border-left-width": "<line-width>",
"border-radius": "<length-percentage [0,∞]>{1,4} [/ <length-percentage [0,∞]>{1,4}]?",
"border-right": "<line-width>||<line-style>||<color>",
"border-right-color": "<color>",
"border-right-style": "<line-style>",
"border-right-width": "<line-width>",
"border-spacing": "<length>{1,2}",
"border-start-end-radius": "<'border-top-left-radius'>",
"border-start-start-radius": "<'border-top-left-radius'>",
"border-style": "<line-style>{1,4}",
"border-top": "<line-width>||<line-style>||<color>",
"border-top-color": "<color>",
"border-top-left-radius": "<length-percentage [0,∞]>{1,2}",
"border-top-right-radius": "<length-percentage [0,∞]>{1,2}",
"border-top-style": "<line-style>",
"border-top-width": "<line-width>",
"border-width": "<line-width>{1,4}",
"bottom": "auto|<length-percentage>|<anchor()>|<anchor-size()>",
"box-align": "start|center|end|baseline|stretch",
"box-decoration-break": "slice|clone",
"box-direction": "normal|reverse|inherit",
"box-flex": "<number>",
"box-flex-group": "<integer>",
"box-lines": "single|multiple",
"box-ordinal-group": "<integer>",
"box-orient": "horizontal|vertical|inline-axis|block-axis|inherit",
"box-pack": "start|center|end|justify",
"box-shadow": "none|<shadow>#",
"box-sizing": "content-box|border-box",
"break-after": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region",
"break-before": "auto|avoid|always|all|avoid-page|page|left|right|recto|verso|avoid-column|column|avoid-region|region",
"break-inside": "auto|avoid|avoid-page|avoid-column|avoid-region",
"caption-side": "top|bottom",
"caret": "<'caret-color'>||<'caret-animation'>||<'caret-shape'>",
"caret-animation": "auto|manual",
"caret-color": "auto|<color>",
"caret-shape": "auto|bar|block|underscore",
"clear": "none|left|right|both|inline-start|inline-end",
"clip": "<shape>|auto",
"clip-path": "<clip-source>|[<basic-shape>||<geometry-box>]|none",
"clip-rule": "nonzero|evenodd",
"color": "<color>",
"color-interpolation-filters": "auto|sRGB|linearRGB",
"color-scheme": "normal|[light|dark|<custom-ident>]+&&only?",
"column-count": "<integer>|auto",
"column-fill": "auto|balance",
"column-gap": "normal|<length-percentage>",
"column-height": "auto|<length [0,∞]>",
"column-rule": "<'column-rule-width'>||<'column-rule-style'>||<'column-rule-color'>",
"column-rule-color": "<color>",
"column-rule-style": "<'border-style'>",
"column-rule-width": "<'border-width'>",
"column-span": "none|all",
"column-width": "auto|<length [0,∞]>",
"column-wrap": "auto|nowrap|wrap",
"columns": "[<'column-width'>||<'column-count'>] [/ <'column-height'>]?",
"contain": "none|strict|content|[[size||inline-size]||layout||style||paint]",
"contain-intrinsic-block-size": "auto? [none|<length>]",
"contain-intrinsic-height": "auto? [none|<length>]",
"contain-intrinsic-inline-size": "auto? [none|<length>]",
"contain-intrinsic-size": "[auto? [none|<length>]]{1,2}",
"contain-intrinsic-width": "auto? [none|<length>]",
"container": "<'container-name'> [/ <'container-type'>]?",
"container-name": "none|<custom-ident>+",
"container-type": "normal||[size|inline-size]",
"content": "normal|none|[<content-replacement>|<content-list>] [/ [<string>|<counter>|<attr()>]+]?",
"content-visibility": "visible|auto|hidden",
"corner-block-end-shape": "<corner-shape-value>{1,2}",
"corner-block-start-shape": "<corner-shape-value>{1,2}",
"corner-bottom-shape": "<corner-shape-value>{1,2}",
"corner-bottom-left-shape": "<corner-shape-value>",
"corner-bottom-right-shape": "<corner-shape-value>",
"corner-end-end-shape": "<corner-shape-value>",
"corner-end-start-shape": "<corner-shape-value>",
"corner-inline-end-shape": "<corner-shape-value>{1,2}",
"corner-inline-start-shape": "<corner-shape-value>{1,2}",
"corner-left-shape": "<corner-shape-value>{1,2}",
"corner-right-shape": "<corner-shape-value>{1,2}",
"corner-shape": "<corner-shape-value>{1,4}",
"corner-start-start-shape": "<corner-shape-value>",
"corner-start-end-shape": "<corner-shape-value>",
"corner-top-shape": "<corner-shape-value>{1,2}",
"corner-top-left-shape": "<corner-shape-value>",
"corner-top-right-shape": "<corner-shape-value>",
"counter-increment": "[<counter-name> <integer>?]+|none",
"counter-reset": "[<counter-name> <integer>?|<reversed-counter-name> <integer>?]+|none",
"counter-set": "[<counter-name> <integer>?]+|none",
"cursor": "[[<url> [<x> <y>]? ,]* [auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing|hand|-webkit-grab|-webkit-grabbing|-webkit-zoom-in|-webkit-zoom-out|-moz-grab|-moz-grabbing|-moz-zoom-in|-moz-zoom-out]]",
"cx": "<length>|<percentage>",
"cy": "<length>|<percentage>",
"d": "none|path( <string> )",
"direction": "ltr|rtl",
"display": "[<display-outside>||<display-inside>]|<display-listitem>|<display-internal>|<display-box>|<display-legacy>|<-non-standard-display>",
"dominant-baseline": "auto|use-script|no-change|reset-size|ideographic|alphabetic|hanging|mathematical|central|middle|text-after-edge|text-before-edge",
"dynamic-range-limit": "standard|no-limit|constrained|<dynamic-range-limit-mix()>",
"empty-cells": "show|hide",
"field-sizing": "content|fixed",
"fill": "<paint>",
"fill-opacity": "<number-zero-one>|<percentage>",
"fill-rule": "nonzero|evenodd",
"filter": "none|<filter-value-list>|<-ms-filter-function-list>",
"flex": "none|[<'flex-grow'> <'flex-shrink'>?||<'flex-basis'>]",
"flex-basis": "content|<'width'>",
"flex-direction": "row|row-reverse|column|column-reverse",
"flex-flow": "<'flex-direction'>||<'flex-wrap'>",
"flex-grow": "<number>",
"flex-shrink": "<number>",
"flex-wrap": "nowrap|wrap|wrap-reverse",
"float": "left|right|none|inline-start|inline-end",
"flood-color": "<color>",
"flood-opacity": "<'opacity'>",
"font": "[[<'font-style'>||<font-variant-css2>||<'font-weight'>||<font-width-css3>]? <'font-size'> [/ <'line-height'>]? <'font-family'>#]|<system-family-name>|<-non-standard-font>",
"font-family": "[<family-name>|<generic-family>]#",
"font-feature-settings": "normal|<feature-tag-value>#",
"font-kerning": "auto|normal|none",
"font-language-override": "normal|<string>",
"font-optical-sizing": "auto|none",
"font-palette": "normal|light|dark|<palette-identifier>|<palette-mix()>",
"font-size": "<absolute-size>|<relative-size>|<length-percentage [0,∞]>|math",
"font-size-adjust": "none|[ex-height|cap-height|ch-width|ic-width|ic-height]? [from-font|<number>]",
"font-smooth": "auto|never|always|<absolute-size>|<length>",
"font-stretch": "<font-stretch-absolute>",
"font-style": "normal|italic|oblique <angle>?",
"font-synthesis": "none|[weight||style||small-caps||position]",
"font-synthesis-position": "auto|none",
"font-synthesis-small-caps": "auto|none",
"font-synthesis-style": "auto|none",
"font-synthesis-weight": "auto|none",
"font-variant": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>||stylistic( <feature-value-name> )||historical-forms||styleset( <feature-value-name># )||character-variant( <feature-value-name># )||swash( <feature-value-name> )||ornaments( <feature-value-name> )||annotation( <feature-value-name> )||[small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps]||<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero||<east-asian-variant-values>||<east-asian-width-values>||ruby]",
"font-variant-alternates": "normal|[stylistic( <feature-value-name> )||historical-forms||styleset( <feature-value-name># )||character-variant( <feature-value-name># )||swash( <feature-value-name> )||ornaments( <feature-value-name> )||annotation( <feature-value-name> )]",
"font-variant-caps": "normal|small-caps|all-small-caps|petite-caps|all-petite-caps|unicase|titling-caps",
"font-variant-east-asian": "normal|[<east-asian-variant-values>||<east-asian-width-values>||ruby]",
"font-variant-emoji": "normal|text|emoji|unicode",
"font-variant-ligatures": "normal|none|[<common-lig-values>||<discretionary-lig-values>||<historical-lig-values>||<contextual-alt-values>]",
"font-variant-numeric": "normal|[<numeric-figure-values>||<numeric-spacing-values>||<numeric-fraction-values>||ordinal||slashed-zero]",
"font-variant-position": "normal|sub|super",
"font-variation-settings": "normal|[<string> <number>]#",
"font-weight": "<font-weight-absolute>|bolder|lighter",
"font-width": "normal|<percentage [0,∞]>|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded",
"forced-color-adjust": "auto|none|preserve-parent-color",
"gap": "<'row-gap'> <'column-gap'>?",
"grid": "<'grid-template'>|<'grid-template-rows'> / [auto-flow&&dense?] <'grid-auto-columns'>?|[auto-flow&&dense?] <'grid-auto-rows'>? / <'grid-template-columns'>",
"grid-area": "<grid-line> [/ <grid-line>]{0,3}",
"grid-auto-columns": "<track-size>+",
"grid-auto-flow": "[row|column]||dense",
"grid-auto-rows": "<track-size>+",
"grid-column": "<grid-line> [/ <grid-line>]?",
"grid-column-end": "<grid-line>",
"grid-column-gap": "<length-percentage>",
"grid-column-start": "<grid-line>",
"grid-gap": "<'grid-row-gap'> <'grid-column-gap'>?",
"grid-row": "<grid-line> [/ <grid-line>]?",
"grid-row-end": "<grid-line>",
"grid-row-gap": "<length-percentage>",
"grid-row-start": "<grid-line>",
"grid-template": "none|[<'grid-template-rows'> / <'grid-template-columns'>]|[<line-names>? <string> <track-size>? <line-names>?]+ [/ <explicit-track-list>]?",
"grid-template-areas": "none|<string>+",
"grid-template-columns": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?",
"grid-template-rows": "none|<track-list>|<auto-track-list>|subgrid <line-name-list>?",
"hanging-punctuation": "none|[first||[force-end|allow-end]||last]",
"height": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
"hyphenate-character": "auto|<string>",
"hyphenate-limit-chars": "[auto|<integer>]{1,3}",
"hyphens": "none|manual|auto",
"image-orientation": "from-image|<angle>|[<angle>? flip]",
"image-rendering": "auto|crisp-edges|pixelated|smooth|optimizeSpeed|optimizeQuality|<-non-standard-image-rendering>",
"image-resolution": "[from-image||<resolution>]&&snap?",
"ime-mode": "auto|normal|active|inactive|disabled",
"initial-letter": "normal|[<number> <integer>?]",
"initial-letter-align": "[auto|alphabetic|hanging|ideographic]",
"inline-size": "<'width'>",
"inset": "<'top'>{1,4}",
"inset-block": "<'top'>{1,2}",
"inset-block-end": "<'top'>",
"inset-block-start": "<'top'>",
"inset-inline": "<'top'>{1,2}",
"inset-inline-end": "<'top'>",
"inset-inline-start": "<'top'>",
"interpolate-size": "numeric-only|allow-keywords",
"isolation": "auto|isolate",
"interactivity": "auto|inert",
"interest-delay": "<'interest-delay-start'>{1,2}",
"interest-delay-end": "normal|<time>",
"interest-delay-start": "normal|<time>",
"justify-content": "normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]",
"justify-items": "normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]|legacy|legacy&&[left|right|center]|anchor-center",
"justify-self": "auto|normal|stretch|<baseline-position>|<overflow-position>? [<self-position>|left|right]|anchor-center",
"justify-tracks": "[normal|<content-distribution>|<overflow-position>? [<content-position>|left|right]]#",
"left": "auto|<length-percentage>|<anchor()>|<anchor-size()>",
"letter-spacing": "normal|<length-percentage>",
"lighting-color": "<color>",
"line-break": "auto|loose|normal|strict|anywhere",
"line-clamp": "none|<integer>",
"line-height": "normal|<number>|<length>|<percentage>",
"line-height-step": "<length>",
"list-style": "<'list-style-type'>||<'list-style-position'>||<'list-style-image'>",
"list-style-image": "<image>|none",
"list-style-position": "inside|outside",
"list-style-type": "<counter-style>|<string>|none",
"margin": "<'margin-top'>{1,4}",
"margin-block": "<'margin-top'>{1,2}",
"margin-block-end": "<'margin-top'>",
"margin-block-start": "<'margin-top'>",
"margin-bottom": "<length-percentage>|auto|<anchor-size()>",
"margin-inline": "<'margin-top'>{1,2}",
"margin-inline-end": "<'margin-top'>",
"margin-inline-start": "<'margin-top'>",
"margin-left": "<length-percentage>|auto|<anchor-size()>",
"margin-right": "<length-percentage>|auto|<anchor-size()>",
"margin-top": "<length-percentage>|auto|<anchor-size()>",
"margin-trim": "none|in-flow|all",
"marker": "none|<url>",
"marker-end": "none|<url>",
"marker-mid": "none|<url>",
"marker-start": "none|<url>",
"mask": "<mask-layer>#",
"mask-border": "<'mask-border-source'>||<'mask-border-slice'> [/ <'mask-border-width'>? [/ <'mask-border-outset'>]?]?||<'mask-border-repeat'>||<'mask-border-mode'>",
"mask-border-mode": "luminance|alpha",
"mask-border-outset": "[<length>|<number>]{1,4}",
"mask-border-repeat": "[stretch|repeat|round|space]{1,2}",
"mask-border-slice": "<number-percentage>{1,4} fill?",
"mask-border-source": "none|<image>",
"mask-border-width": "[<length-percentage>|<number>|auto]{1,4}",
"mask-clip": "[<coord-box>|no-clip]#",
"mask-composite": "<compositing-operator>#",
"mask-image": "<mask-reference>#",
"mask-mode": "<masking-mode>#",
"mask-origin": "<coord-box>#",
"mask-position": "<position>#",
"mask-repeat": "<repeat-style>#",
"mask-size": "<bg-size>#",
"mask-type": "luminance|alpha",
"masonry-auto-flow": "[pack|next]||[definite-first|ordered]",
"math-depth": "auto-add|add( <integer> )|<integer>",
"math-shift": "normal|compact",
"math-style": "normal|compact",
"max-block-size": "<'max-width'>",
"max-height": "none|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
"max-inline-size": "<'max-width'>",
"max-lines": "none|<integer>",
"max-width": "none|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
"min-block-size": "<'min-width'>",
"min-height": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
"min-inline-size": "<'min-width'>",
"min-width": "auto|<length-percentage [0,∞]>|min-content|max-content|fit-content|fit-content( <length-percentage [0,∞]> )|<calc-size()>|<anchor-size()>|stretch|<-non-standard-size>",
"mix-blend-mode": "<blend-mode>|plus-darker|plus-lighter",
"object-fit": "fill|contain|cover|none|scale-down",
"object-position": "<position>",
"object-view-box": "none|<basic-shape-rect>",
"offset": "[<'offset-position'>? [<'offset-path'> [<'offset-distance'>||<'offset-rotate'>]?]?]! [/ <'offset-anchor'>]?",
"offset-anchor": "auto|<position>",
"offset-distance": "<length-percentage>",
"offset-path": "none|<offset-path>||<coord-box>",
"offset-position": "normal|auto|<position>",
"offset-rotate": "[auto|reverse]||<angle>",
"opacity": "<opacity-value>",
"order": "<integer>",
"orphans": "<integer>",
"outline": "<'outline-width'>||<'outline-style'>||<'outline-color'>",
"outline-color": "auto|<color>",
"outline-offset": "<length>",
"outline-style": "auto|<outline-line-style>",
"outline-width": "<line-width>",
"overflow": "[visible|hidden|clip|scroll|auto]{1,2}|<-non-standard-overflow>",
"overflow-anchor": "auto|none",
"overflow-block": "visible|hidden|clip|scroll|auto|<-non-standard-overflow>",
"overflow-clip-box": "padding-box|content-box",
"overflow-clip-margin": "<visual-box>||<length [0,∞]>",
"overflow-inline": "visible|hidden|clip|scroll|auto|<-non-standard-overflow>",