-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.txt
1974 lines (1973 loc) · 103 KB
/
rules.txt
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
Rule {
matcher: "Ai",
name: "Align items",
param_tovalue: false,
styles: Style::mapped([("align-items", "${0}")]),
arguments: Some(HashMap::from([
("b", "baseline"),("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("n", "normal"),("s", "start"),("se", "self-end"),("ss", "self-start"),("st", "stretch")
])),
},
Rule {
matcher: "Ac",
name: "Align content",
param_tovalue: false,
styles: Style::mapped([("align-content", "${0}")]),
arguments: Some(HashMap::from([
("b", "baseline"),("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("n", "normal"),("s", "start"),("sa", "space-around"),("sb", "space-between"),("se", "space-evenly"),("st", "stretch")
])),
},
Rule {
matcher: "As",
name: "Align self",
param_tovalue: false,
styles: Style::mapped([("align-self", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("b", "baseline"),("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("n", "normal"),("s", "start"),("se", "self-end"),("ss", "self-start"),("st", "stretch")
])),
},
Rule {
matcher: "Anim",
name: "Animation",
param_tovalue: true,
styles: Style::mapped([("animation", "${0}")]),
arguments: None
},
Rule {
matcher: "Animdel",
name: "Animation delay",
param_tovalue: true,
styles: Style::mapped([("animation-delay", "${0}")]),
arguments: None
},
Rule {
matcher: "Animdir",
name: "Animation direction",
param_tovalue: false,
styles: Style::mapped([("animation-direction", "${0}")]),
arguments: Some(HashMap::from([
("a", "alternate"),("ar", "alternate-reverse"),("n", "normal"),("r", "reverse")
])),
},
Rule {
matcher: "Animdur",
name: "Animation duration",
param_tovalue: true,
styles: Style::mapped([("animation-duration", "${0}")]),
arguments: None
},
Rule {
matcher: "Animfm",
name: "Animation fill mode",
param_tovalue: false,
styles: Style::mapped([("animation-fill-mode", "${0}")]),
arguments: Some(HashMap::from([
("b", "backwards"),("bo", "both"),("f", "forwards"),("n", "none")
])),
},
Rule {
matcher: "Animic",
name: "Animation iteration count",
param_tovalue: true,
styles: Style::mapped([("animation-iteration-count", "${0}")]),
arguments: Some(HashMap::from([
("i", "infinite")
])),
},
Rule {
matcher: "Animn",
name: "Animation name",
param_tovalue: true,
styles: Style::mapped([("animation-name", "${0}")]),
arguments: Some(HashMap::from([
("n", "none")
])),
},
Rule {
matcher: "Animps",
name: "Animation play state",
param_tovalue: false,
styles: Style::mapped([("animation-play-state", "${0}")]),
arguments: Some(HashMap::from([
("p", "paused"),("r", "running")
])),
},
Rule {
matcher: "Animtf",
name: "Animation timing function",
param_tovalue: false,
styles: Style::mapped([("animation-timing-function", "${0}")]),
arguments: Some(HashMap::from([
("e", "ease"),("ei", "ease-in"),("eo", "ease-out"),("eio", "ease-in-out"),("l", "linear"),("se", "step-end"),("ss", "step-start")
])),
},
Rule {
matcher: "Ap",
name: "Appearance",
param_tovalue: false,
styles: Style::mapped([("appearance", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("n", "none")
])),
},
Rule {
matcher: "Ar",
name: "Aspect ratio",
param_tovalue: false,
styles: Style::mapped([("aspect-ratio", "${0}")]),
arguments: None
},
Rule {
matcher: "Bd",
name: "Border",
param_tovalue: false,
styles: Style::mapped([("border", "${0}")]),
arguments: Some(HashMap::from([
("0", "0"),("n", "none")
])),
},
Rule {
matcher: "Bdx",
name: "Border X",
param_tovalue: false,
styles: Style::mapped([("border-left", "${0}"),("border-right", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdy",
name: "Border Y",
param_tovalue: false,
styles: Style::mapped([("border-top", "${0}"),("border-bottom", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdt",
name: "Border top",
param_tovalue: false,
styles: Style::mapped([("border-top", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdend",
name: "Border end",
param_tovalue: false,
styles: Style::mapped([("border-right", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdb",
name: "Border bottom",
param_tovalue: false,
styles: Style::mapped([("border-bottom", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdstart",
name: "Border start",
param_tovalue: false,
styles: Style::mapped([("border-left", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdc",
name: "Border color",
param_tovalue: true,
styles: Style::mapped([("border-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bdtc",
name: "Border top color",
param_tovalue: true,
styles: Style::mapped([("border-top-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bdendc",
name: "Border end color",
param_tovalue: true,
styles: Style::mapped([("border-right-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bdbc",
name: "Border bottom color",
param_tovalue: true,
styles: Style::mapped([("border-bottom-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bdstartc",
name: "Border start color",
param_tovalue: true,
styles: Style::mapped([("border-left-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bdsp",
name: "Border spacing",
param_tovalue: true,
styles: Style::mapped([("border-spacing", "${0} ${1}")]),
arguments: Some(HashMap::from([
("i", "inherit")
])),
},
Rule {
matcher: "Bds",
name: "Border style",
param_tovalue: false,
styles: Style::mapped([("border-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Bdts",
name: "Border top style",
param_tovalue: false,
styles: Style::mapped([("border-top-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Bdends",
name: "Border end style",
param_tovalue: false,
styles: Style::mapped([("border-right-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Bdbs",
name: "Border bottom style",
param_tovalue: false,
styles: Style::mapped([("border-bottom-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Bdstarts",
name: "Border start style",
param_tovalue: false,
styles: Style::mapped([("border-left-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Bdw",
name: "Border width",
param_tovalue: true,
styles: Style::mapped([("border-width", "${0}")]),
arguments: Some(HashMap::from([
("m", "medium"),("t", "thin"),("th", "thick")
])),
},
Rule {
matcher: "Bdtw",
name: "Border top width",
param_tovalue: true,
styles: Style::mapped([("border-top-width", "${0}")]),
arguments: Some(HashMap::from([
("m", "medium"),("t", "thin"),("th", "thick")
])),
},
Rule {
matcher: "Bdendw",
name: "Border end width",
param_tovalue: true,
styles: Style::mapped([("border-right-width", "${0}")]),
arguments: Some(HashMap::from([
("m", "medium"),("t", "thin"),("th", "thick")
])),
},
Rule {
matcher: "Bdbw",
name: "Border bottom width",
param_tovalue: true,
styles: Style::mapped([("border-bottom-width", "${0}")]),
arguments: Some(HashMap::from([
("m", "medium"),("t", "thin"),("th", "thick")
])),
},
Rule {
matcher: "Bdstartw",
name: "Border start width",
param_tovalue: true,
styles: Style::mapped([("border-left-width", "${0}")]),
arguments: Some(HashMap::from([
("m", "medium"),("t", "thin"),("th", "thick")
])),
},
Rule {
matcher: "Bdrs",
name: "Border radius",
param_tovalue: true,
styles: Style::mapped([("border-radius", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdrstend",
name: "Border radius top right",
param_tovalue: true,
styles: Style::mapped([("border-top-right-radius", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdrsbend",
name: "Border radius bottom right",
param_tovalue: true,
styles: Style::mapped([("border-bottom-right-radius", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdrsbstart",
name: "Border radius bottom left",
param_tovalue: true,
styles: Style::mapped([("border-bottom-left-radius", "${0}")]),
arguments: None
},
Rule {
matcher: "Bdrststart",
name: "Border radius top left",
param_tovalue: true,
styles: Style::mapped([("border-top-left-radius", "${0}")]),
arguments: None
},
Rule {
matcher: "Bg",
name: "Background",
param_tovalue: false,
styles: Style::mapped([("background", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("t", "transparent")
])),
},
Rule {
matcher: "Bgbm",
name: "Background blend mode",
param_tovalue: false,
styles: Style::mapped([("background-blend-mode", "${0}")]),
arguments: Some(HashMap::from([
("c", "color"),("cb", "color-burn"),("cd", "color-dodge"),("d", "darken"),("di", "difference"),("e", "exclusion"),("h", "hue"),("hl", "hard-light"),("l", "lighten"),("lu", "luminosity"),("m", "multiply"),("n", "normal"),("o", "overlay"),("s", "saturation"),("sc", "screen"),("sl", "soft-light"),("pd", "plus-darker"),("pl", "plus-lighter")
])),
},
Rule {
matcher: "Bgi",
name: "Background image",
param_tovalue: false,
styles: Style::mapped([("background-image", "${0}")]),
arguments: Some(HashMap::from([
("n", "none")
])),
},
Rule {
matcher: "Bgc",
name: "Background color",
param_tovalue: true,
styles: Style::mapped([("background-color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Bgcp",
name: "Background clip",
param_tovalue: false,
styles: Style::mapped([("background-clip", "${0}")]),
arguments: Some(HashMap::from([
("bb", "border-box"),("cb", "content-box"),("pb", "padding-box")
])),
},
Rule {
matcher: "Bgo",
name: "Background origin",
param_tovalue: false,
styles: Style::mapped([("background-origin", "${0}")]),
arguments: Some(HashMap::from([
("bb", "border-box"),("cb", "content-box"),("pb", "padding-box")
])),
},
Rule {
matcher: "Bgz",
name: "Background size",
param_tovalue: true,
styles: Style::mapped([("background-size", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("ct", "contain"),("cv", "cover")
])),
},
Rule {
matcher: "Bga",
name: "Background attachment",
param_tovalue: false,
styles: Style::mapped([("background-attachment", "${0}")]),
arguments: Some(HashMap::from([
("f", "fixed"),("l", "local"),("s", "scroll")
])),
},
Rule {
matcher: "Bgp",
name: "Background position",
param_tovalue: true,
styles: Style::mapped([("background-position", "${0} ${1}")]),
arguments: Some(HashMap::from([
("start_t", "left 0"),("end_t", "right 0"),("start_b", "left 100%"),("end_b", "right 100%"),("start_c", "left center"),("end_c", "right center"),("c_b", "center 100%"),("c_t", "center 0"),("c", "center")
])),
},
Rule {
matcher: "Bgpx",
name: "Background position (X axis)",
param_tovalue: true,
styles: Style::mapped([("background-position-x", "${0}")]),
arguments: Some(HashMap::from([
("start", "left"),("end", "right"),("c", "50%")
])),
},
Rule {
matcher: "Bgpy",
name: "Background position (Y axis)",
param_tovalue: true,
styles: Style::mapped([("background-position-y", "${0}")]),
arguments: Some(HashMap::from([
("t", "0"),("b", "100%"),("c", "50%")
])),
},
Rule {
matcher: "Bgr",
name: "Background repeat",
param_tovalue: false,
styles: Style::mapped([("background-repeat", "${0}")]),
arguments: Some(HashMap::from([
("nr", "no-repeat"),("rx", "repeat-x"),("ry", "repeat-y"),("r", "repeat"),("s", "space"),("ro", "round")
])),
},
Rule {
matcher: "Bdcl",
name: "Border collapse",
param_tovalue: false,
styles: Style::mapped([("border-collapse", "${0}")]),
arguments: Some(HashMap::from([
("c", "collapse"),("s", "separate")
])),
},
Rule {
matcher: "Bxz",
name: "Box sizing",
param_tovalue: false,
styles: Style::mapped([("box-sizing", "${0}")]),
arguments: Some(HashMap::from([
("cb", "content-box"),("pb", "padding-box"),("bb", "border-box")
])),
},
Rule {
matcher: "Bxsh",
name: "Box shadow",
param_tovalue: false,
styles: Style::mapped([("box-shadow", "${0}")]),
arguments: Some(HashMap::from([
("n", "none")
])),
},
Rule {
matcher: "Cl",
name: "Clear",
param_tovalue: false,
styles: Style::mapped([("clear", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("b", "both"),("start", "left"),("end", "right")
])),
},
Rule {
matcher: "Cp",
name: "Clip path",
param_tovalue: false,
styles: Style::mapped([("clip-path", "${0}")]),
arguments: Some(HashMap::from([
("bb", "border-box"),("cb", "content-box"),("fb", "fill-box"),("mb", "margin-box"),("n", "none"),("pb", "padding-box"),("sb", "stroke-box"),("vb", "view-box")
])),
},
Rule {
matcher: "C",
name: "Color",
param_tovalue: true,
styles: Style::mapped([("color", "${0}")]),
arguments: Some(HashMap::from([
("t", "transparent"),("cc", "currentColor"),("n", "none"),("aliceblue", "aliceblue"),("antiquewhite", "antiquewhite"),("aqua", "aqua"),("aquamarine", "aquamarine"),("azure", "azure"),("beige", "beige"),("bisque", "bisque"),("black", "black"),("blanchedalmond", "blanchedalmond"),("blue", "blue"),("blueviolet", "blueviolet"),("brown", "brown"),("burlywood", "burlywood"),("cadetblue", "cadetblue"),("chartreuse", "chartreuse"),("chocolate", "chocolate"),("coral", "coral"),("cornflowerblue", "cornflowerblue"),("cornsilk", "cornsilk"),("crimson", "crimson"),("cyan", "cyan"),("darkblue", "darkblue"),("darkcyan", "darkcyan"),("darkgoldenrod", "darkgoldenrod"),("darkgray", "darkgray"),("darkgreen", "darkgreen"),("darkgrey", "darkgrey"),("darkkhaki", "darkkhaki"),("darkmagenta", "darkmagenta"),("darkolivegreen", "darkolivegreen"),("darkorange", "darkorange"),("darkorchid", "darkorchid"),("darkred", "darkred"),("darksalmon", "darksalmon"),("darkseagreen", "darkseagreen"),("darkslateblue", "darkslateblue"),("darkslategray", "darkslategray"),("darkslategrey", "darkslategrey"),("darkturquoise", "darkturquoise"),("darkviolet", "darkviolet"),("deeppink", "deeppink"),("deepskyblue", "deepskyblue"),("dimgray", "dimgray"),("dimgrey", "dimgrey"),("dodgerblue", "dodgerblue"),("firebrick", "firebrick"),("floralwhite", "floralwhite"),("forestgreen", "forestgreen"),("fuchsia", "fuchsia"),("gainsboro", "gainsboro"),("ghostwhite", "ghostwhite"),("gold", "gold"),("goldenrod", "goldenrod"),("gray", "gray"),("green", "green"),("greenyellow", "greenyellow"),("grey", "grey"),("honeydew", "honeydew"),("hotpink", "hotpink"),("indianred", "indianred"),("indigo", "indigo"),("ivory", "ivory"),("khaki", "khaki"),("lavender", "lavender"),("lavenderblush", "lavenderblush"),("lawngreen", "lawngreen"),("lemonchiffon", "lemonchiffon"),("lightblue", "lightblue"),("lightcoral", "lightcoral"),("lightcyan", "lightcyan"),("lightgoldenrodyellow", "lightgoldenrodyellow"),("lightgray", "lightgray"),("lightgreen", "lightgreen"),("lightgrey", "lightgrey"),("lightpink", "lightpink"),("lightsalmon", "lightsalmon"),("lightseagreen", "lightseagreen"),("lightskyblue", "lightskyblue"),("lightslategray", "lightslategray"),("lightslategrey", "lightslategrey"),("lightsteelblue", "lightsteelblue"),("lightyellow", "lightyellow"),("lime", "lime"),("limegreen", "limegreen"),("linen", "linen"),("magenta", "magenta"),("maroon", "maroon"),("mediumaquamarine", "mediumaquamarine"),("mediumblue", "mediumblue"),("mediumorchid", "mediumorchid"),("mediumpurple", "mediumpurple"),("mediumseagreen", "mediumseagreen"),("mediumslateblue", "mediumslateblue"),("mediumspringgreen", "mediumspringgreen"),("mediumturquoise", "mediumturquoise"),("mediumvioletred", "mediumvioletred"),("midnightblue", "midnightblue"),("mintcream", "mintcream"),("mistyrose", "mistyrose"),("moccasin", "moccasin"),("navajowhite", "navajowhite"),("navy", "navy"),("oldlace", "oldlace"),("olive", "olive"),("olivedrab", "olivedrab"),("orange", "orange"),("orangered", "orangered"),("orchid", "orchid"),("palegoldenrod", "palegoldenrod"),("palegreen", "palegreen"),("paleturquoise", "paleturquoise"),("palevioletred", "palevioletred"),("papayawhip", "papayawhip"),("peachpuff", "peachpuff"),("peru", "peru"),("pink", "pink"),("plum", "plum"),("powderblue", "powderblue"),("purple", "purple"),("red", "red"),("rosybrown", "rosybrown"),("royalblue", "royalblue"),("saddlebrown", "saddlebrown"),("salmon", "salmon"),("sandybrown", "sandybrown"),("seagreen", "seagreen"),("seashell", "seashell"),("sienna", "sienna"),("silver", "silver"),("skyblue", "skyblue"),("slateblue", "slateblue"),("slategray", "slategray"),("slategrey", "slategrey"),("snow", "snow"),("springgreen", "springgreen"),("steelblue", "steelblue"),("tan", "tan"),("teal", "teal"),("thistle", "thistle"),("tomato", "tomato"),("turquoise", "turquoise"),("violet", "violet"),("wheat", "wheat"),("white", "white"),("whitesmoke", "whitesmoke"),("yellow", "yellow"),("yellowgreen", "yellowgreen")
])),
},
Rule {
matcher: "Colm",
name: "Columns",
param_tovalue: true,
styles: Style::mapped([("columns", "${0}")]),
arguments: None
},
Rule {
matcher: "Colmc",
name: "Column count",
param_tovalue: false,
styles: Style::mapped([("column-count", "${0}")]),
arguments: None
},
Rule {
matcher: "Colmf",
name: "Column fill",
param_tovalue: false,
styles: Style::mapped([("column-fill", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("b", "balance")
])),
},
Rule {
matcher: "Colmg",
name: "Column gap",
param_tovalue: true,
styles: Style::mapped([("column-gap", "${0}")]),
arguments: Some(HashMap::from([
("n", "normal")
])),
},
Rule {
matcher: "Colmr",
name: "Column rule",
param_tovalue: true,
styles: Style::mapped([("column-rule", "${0}")]),
arguments: None
},
Rule {
matcher: "Colmrc",
name: "Column rule color",
param_tovalue: false,
styles: Style::mapped([("column-rule-color", "${0}")]),
arguments: None
},
Rule {
matcher: "Colmrs",
name: "Column rule style",
param_tovalue: false,
styles: Style::mapped([("column-rule-style", "${0}")]),
arguments: Some(HashMap::from([
("d", "dotted"),("da", "dashed"),("do", "double"),("g", "groove"),("h", "hidden"),("i", "inset"),("n", "none"),("o", "outset"),("r", "ridge"),("s", "solid")
])),
},
Rule {
matcher: "Colmrw",
name: "Column rule width",
param_tovalue: false,
styles: Style::mapped([("column-rule-width", "${0}")]),
arguments: None
},
Rule {
matcher: "Colms",
name: "Column span",
param_tovalue: false,
styles: Style::mapped([("column-span", "${0}")]),
arguments: Some(HashMap::from([
("a", "all"),("n", "none")
])),
},
Rule {
matcher: "Colmw",
name: "Column width",
param_tovalue: true,
styles: Style::mapped([("column-width", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto")
])),
},
Rule {
matcher: "Ctn",
name: "Contain",
param_tovalue: false,
styles: Style::mapped([("contain", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("st", "strict"),("c", "content"),("z", "size"),("l", "layout"),("s", "style"),("p", "paint")
])),
},
Rule {
matcher: "Cnt",
name: "Content",
param_tovalue: true,
styles: Style::mapped([("content", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("nor", "normal"),("oq", "open-quote"),("cq", "close-quote"),("noq", "no-open-quote"),("ncq", "no-close-quote")
])),
},
Rule {
matcher: "Cur",
name: "Cursor",
param_tovalue: false,
styles: Style::mapped([("cursor", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("as", "all-scroll"),("c", "cell"),("cr", "col-resize"),("co", "copy"),("cro", "crosshair"),("d", "default"),("er", "e-resize"),("ewr", "ew-resize"),("g", "grab"),("gr", "grabbing"),("h", "help"),("m", "move"),("n", "none"),("nd", "no-drop"),("na", "not-allowed"),("nr", "n-resize"),("ner", "ne-resize"),("neswr", "nesw-resize"),("nwser", "nwse-resize"),("nsr", "ns-resize"),("nwr", "nw-resize"),("p", "pointer"),("pr", "progress"),("rr", "row-resize"),("sr", "s-resize"),("ser", "se-resize"),("swr", "sw-resize"),("t", "text"),("vt", "vertical-text"),("w", "wait"),("wr", "w-resize"),("zi", "zoom-in"),("zo", "zoom-out")
])),
},
Rule {
matcher: "D",
name: "Display",
param_tovalue: false,
styles: Style::mapped([("display", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("b", "block"),("f", "flex"),("g", "grid"),("i", "inline"),("ib", "inline-block"),("if", "inline-flex"),("ig", "inline-grid"),("tb", "table"),("tbr", "table-row"),("tbc", "table-cell"),("li", "list-item"),("ri", "run-in"),("cp", "compact"),("itb", "inline-table"),("tbcl", "table-column"),("tbclg", "table-column-group"),("tbhg", "table-header-group"),("tbfg", "table-footer-group"),("tbrg", "table-row-group")
])),
},
Rule {
matcher: "Fil",
name: "Filter",
param_tovalue: false,
styles: Style::mapped([("filter", "${0}")]),
arguments: Some(HashMap::from([
("n", "none")
])),
},
Rule {
matcher: "Blur",
name: "Blur (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "blur(${0})")]),
arguments: None
},
Rule {
matcher: "Brightness",
name: "Brightness (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "brightness(${0})")]),
arguments: None
},
Rule {
matcher: "Contrast",
name: "Contrast (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "contrast(${0})")]),
arguments: None
},
Rule {
matcher: "Dropshadow",
name: "Drop shadow (filter)",
param_tovalue: false,
styles: Style::mapped([("filter", "drop-shadow(${0})")]),
arguments: None
},
Rule {
matcher: "Grayscale",
name: "Grayscale (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "grayscale(${0})")]),
arguments: None
},
Rule {
matcher: "HueRotate",
name: "Hue Rotate (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "hue-rotate(${0})")]),
arguments: None
},
Rule {
matcher: "Invert",
name: "Invert (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "invert(${0})")]),
arguments: None
},
Rule {
matcher: "Opacity",
name: "Opacity (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "opacity(${0})")]),
arguments: None
},
Rule {
matcher: "Saturate",
name: "Saturate (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "saturate(${0})")]),
arguments: None
},
Rule {
matcher: "Sepia",
name: "Sepia (filter)",
param_tovalue: true,
styles: Style::mapped([("filter", "sepia(${0})")]),
arguments: None
},
Rule {
matcher: "Flx",
name: "Flex (deprecated)",
param_tovalue: false,
styles: Style::mapped([("flex", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("n", "none")
])),
},
Rule {
matcher: "Fx",
name: "Flex",
param_tovalue: false,
styles: Style::mapped([("flex", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("n", "none")
])),
},
Rule {
matcher: "Flxg",
name: "Flex grow (deprecated)",
param_tovalue: true,
styles: Style::mapped([("flex-grow", "${0}")]),
arguments: None
},
Rule {
matcher: "Fxg",
name: "Flex grow",
param_tovalue: true,
styles: Style::mapped([("flex-grow", "${0}")]),
arguments: None
},
Rule {
matcher: "Flxs",
name: "Flex shrink (deprecated)",
param_tovalue: true,
styles: Style::mapped([("flex-shrink", "${0}")]),
arguments: None
},
Rule {
matcher: "Fxs",
name: "Flex shrink",
param_tovalue: true,
styles: Style::mapped([("flex-shrink", "${0}")]),
arguments: None
},
Rule {
matcher: "Flxb",
name: "Flex basis (deprecated)",
param_tovalue: true,
styles: Style::mapped([("flex-basis", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("n", "none")
])),
},
Rule {
matcher: "Fxb",
name: "Flex basis",
param_tovalue: true,
styles: Style::mapped([("flex-basis", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("n", "none")
])),
},
Rule {
matcher: "Fld",
name: "Flex direction (deprecated)",
param_tovalue: false,
styles: Style::mapped([("flex-direction", "${0}")]),
arguments: Some(HashMap::from([
("r", "row"),("rr", "row-reverse"),("c", "column"),("cr", "column-reverse")
])),
},
Rule {
matcher: "Fxd",
name: "Flex direction",
param_tovalue: false,
styles: Style::mapped([("flex-direction", "${0}")]),
arguments: Some(HashMap::from([
("r", "row"),("rr", "row-reverse"),("c", "column"),("cr", "column-reverse")
])),
},
Rule {
matcher: "Flf",
name: "Flex flow (deprecated)",
param_tovalue: false,
styles: Style::mapped([("flex-flow", "${0}")]),
arguments: Some(HashMap::from([
("r", "row"),("rr", "row-reverse"),("c", "column"),("cr", "column-reverse"),("nw", "nowrap"),("w", "wrap"),("wr", "wrap-reverse")
])),
},
Rule {
matcher: "Fxf",
name: "Flex flow",
param_tovalue: false,
styles: Style::mapped([("flex-flow", "${0}")]),
arguments: Some(HashMap::from([
("r", "row"),("rr", "row-reverse"),("c", "column"),("cr", "column-reverse"),("nw", "nowrap"),("w", "wrap"),("wr", "wrap-reverse")
])),
},
Rule {
matcher: "Ga",
name: "Grid Area",
param_tovalue: false,
styles: Style::mapped([("grid-area", "${0}")]),
arguments: None
},
Rule {
matcher: "Gac",
name: "Grid Auto Columns",
param_tovalue: true,
styles: Style::mapped([("grid-auto-columns", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("mc", "min-content"),("ma", "max-content")
])),
},
Rule {
matcher: "Gaf",
name: "Grid Auto Flow",
param_tovalue: false,
styles: Style::mapped([("grid-auto-flow", "${0}")]),
arguments: Some(HashMap::from([
("c", "column"),("d", "dense"),("cd", "column dense"),("r", "row"),("rd", "row dense")
])),
},
Rule {
matcher: "Gar",
name: "Grid Auto Rows",
param_tovalue: true,
styles: Style::mapped([("grid-auto-rows", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("mc", "min-content"),("ma", "max-content")
])),
},
Rule {
matcher: "Gc",
name: "Grid Column",
param_tovalue: true,
styles: Style::mapped([("grid-column", "${0}")]),
arguments: None
},
Rule {
matcher: "Gce",
name: "Grid Column End",
param_tovalue: true,
styles: Style::mapped([("grid-column-end", "${0}")]),
arguments: None
},
Rule {
matcher: "Gcs",
name: "Grid Column Start",
param_tovalue: true,
styles: Style::mapped([("grid-column-start", "${0}")]),
arguments: None
},
Rule {
matcher: "Gr",
name: "Grid Row",
param_tovalue: true,
styles: Style::mapped([("grid-row", "${0}")]),
arguments: None
},
Rule {
matcher: "Gre",
name: "Grid Row End",
param_tovalue: true,
styles: Style::mapped([("grid-row-end", "${0}")]),
arguments: None
},
Rule {
matcher: "Grs",
name: "Grid Row Start",
param_tovalue: true,
styles: Style::mapped([("grid-row-start", "${0}")]),
arguments: None
},
Rule {
matcher: "Gt",
name: "Grid Template",
param_tovalue: false,
styles: Style::mapped([("grid-template", "${0}")]),
arguments: None
},
Rule {
matcher: "Gta",
name: "Grid Template Areas",
param_tovalue: false,
styles: Style::mapped([("grid-template-areas", "${0}")]),
arguments: None
},
Rule {
matcher: "Gtc",
name: "Grid Template Columns",
param_tovalue: false,
styles: Style::mapped([("grid-template-columns", "${0}")]),
arguments: None
},
Rule {
matcher: "Gtr",
name: "Grid Template Rows",
param_tovalue: false,
styles: Style::mapped([("grid-template-rows", "${0}")]),
arguments: None
},
Rule {
matcher: "Or",
name: "Order",
param_tovalue: true,
styles: Style::mapped([("order", "${0}")]),
arguments: None
},
Rule {
matcher: "Jc",
name: "Justify content",
param_tovalue: false,
styles: Style::mapped([("justify-content", "${0}")]),
arguments: Some(HashMap::from([
("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("l", "left"),("n", "normal"),("r", "right"),("s", "start"),("sa", "space-around"),("sb", "space-between"),("se", "space-evenly"),("st", "stretch")
])),
},
Rule {
matcher: "Ji",
name: "Justify items",
param_tovalue: false,
styles: Style::mapped([("justify-items", "${0}")]),
arguments: Some(HashMap::from([
("b", "baseline"),("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("l", "left"),("n", "normal"),("r", "right"),("s", "start"),("se", "self-end"),("ss", "self-start")
])),
},
Rule {
matcher: "Js",
name: "Justify self",
param_tovalue: false,
styles: Style::mapped([("justify-self", "${0}")]),
arguments: Some(HashMap::from([
("a", "auto"),("b", "baseline"),("c", "center"),("e", "end"),("fe", "flex-end"),("fs", "flex-start"),("l", "left"),("n", "normal"),("r", "right"),("s", "start"),("se", "self-end"),("ss", "self-start")
])),
},
Rule {
matcher: "Flw",
name: "Flex-wrap (deprecated)",
param_tovalue: false,
styles: Style::mapped([("flex-wrap", "${0}")]),
arguments: Some(HashMap::from([
("nw", "nowrap"),("w", "wrap"),("wr", "wrap-reverse")
])),
},
Rule {
matcher: "Fxw",
name: "Flex-wrap",
param_tovalue: false,
styles: Style::mapped([("flex-wrap", "${0}")]),
arguments: Some(HashMap::from([
("nw", "nowrap"),("w", "wrap"),("wr", "wrap-reverse")
])),
},
Rule {
matcher: "Fl",
name: "Float",
param_tovalue: false,
styles: Style::mapped([("float", "${0}")]),
arguments: Some(HashMap::from([
("n", "none"),("start", "left"),("end", "right")
])),
},
Rule {
matcher: "Ff",
name: "Font family",
param_tovalue: false,
styles: Style::mapped([("font-family", "${0}")]),
arguments: Some(HashMap::from([
("c", r#""Monotype Corsiva", "Comic Sans MS", cursive"#),("f", "Capitals, Impact, fantasy"),("m", r#"Monaco, "Courier New", monospace"#),("s", r#"Georgia, "Times New Roman", serif"#),("ss", "Helvetica, Arial, sans-serif")
])),
},
Rule {
matcher: "Fw",
name: "Font weight",
param_tovalue: false,
styles: Style::mapped([("font-weight", "${0}")]),
arguments: Some(HashMap::from([
("100", "100"),("200", "200"),("300", "300"),("400", "400"),("500", "500"),("600", "600"),("700", "700"),("800", "800"),("900", "900"),("b", "bold"),("br", "bolder"),("lr", "lighter"),("n", "normal")
])),
},
Rule {
matcher: "Fz",
name: "Font size",
param_tovalue: true,
styles: Style::mapped([("font-size", "${0}")]),
arguments: None
},
Rule {
matcher: "Fs",
name: "Font style",
param_tovalue: false,