-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind_cheatsheet.el
1280 lines (1279 loc) · 59 KB
/
tailwind_cheatsheet.el
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
(setq tailwind-shorthands
'((":float-right" "float: right")
(":float-left" "float: left")
(":float-none" "float: none")
(":min-w-0" "min-width: 0")
(":min-w-full" "min-width: 100%")
(":row-auto" "grid-row: auto")
(":row-span-1" "grid-row: span1/span1")
(":row-span-2" "grid-row: span2/span2")
(":row-span-3" "grid-row: span3/span3")
(":row-span-4" "grid-row: span4/span4")
(":row-span-5" "grid-row: span5/span5")
(":row-span-6" "grid-row: span6/span6")
(":appearance-none" "appearance: none")
(":list-inside" "list-style-position: inside")
(":list-outside" "list-style-position: outside")
(":break-words" "overflow-wrap: break-word")
(":leading-7" "line-height: 1.75rem")
(":leading-6" "line-height: 1.5rem")
(":leading-5" "line-height: 1.25rem")
(":leading-snug" "line-height: 1.375")
(":leading-4" "line-height: 1rem")
(":leading-relaxed" "line-height: 1.625")
(":leading-9" "line-height: 2.25rem")
(":leading-normal" "line-height: 1.5")
(":leading-none" "line-height: 1")
(":leading-10" "line-height: 2.5rem")
(":leading-tight" "line-height: 1.25")
(":leading-loose" "line-height: 2")
(":leading-3" "line-height: .75rem")
(":leading-8" "line-height: 2rem")
(":w-screen" "width: 100vw")
(":w-2/12" "width: 16.666667%")
(":w-1/5" "width: 20%")
(":w-3/12" "width: 25%")
(":w-12" "width: 3rem")
(":w-40" "width: 10rem")
(":w-8/12" "width: 66.666667%")
(":w-6/12" "width: 50%")
(":w-6" "width: 1.5rem")
(":w-px" "width: 1px")
(":w-5" "width: 1.25rem")
(":w-56" "width: 14rem")
(":w-3" "width: 0.75rem")
(":w-2" "width: 0.5rem")
(":w-20" "width: 5rem")
(":w-4" "width: 1rem")
(":w-5/12" "width: 41.666667%")
(":w-full" "width: 100%")
(":w-7/12" "width: 58.333333%")
(":w-64" "width: 16rem")
(":w-auto" "width: auto")
(":w-3/5" "width: 60%")
(":w-1/12" "width: 8.333333%")
(":w-1" "width: 0.25rem")
(":w-11/12" "width: 91.666667%")
(":w-0" "width: 0")
(":w-10" "width: 2.5rem")
(":w-48" "width: 12rem")
(":w-9/12" "width: 75%")
(":w-2/5" "width: 40%")
(":w-10/12" "width: 83.333333%")
(":w-4/12" "width: 33.333333%")
(":w-32" "width: 8rem")
(":w-4/5" "width: 80%")
(":w-16" "width: 4rem")
(":w-8" "width: 2rem")
(":w-24" "width: 6rem")
(":gap-12" "gap: 3rem")
(":gap-40" "gap: 10rem")
(":gap-6" "gap: 1.5rem")
(":gap-px" "gap: 1px")
(":gap-5" "gap: 1.25rem")
(":gap-56" "gap: 14rem")
(":gap-3" "gap: 0.75rem")
(":gap-2" "gap: 0.5rem")
(":gap-20" "gap: 5rem")
(":gap-4" "gap: 1rem")
(":gap-64" "gap: 16rem")
(":gap-1" "gap: 0.25rem")
(":gap-0" "gap: 0")
(":gap-10" "gap: 2.5rem")
(":gap-48" "gap: 12rem")
(":gap-32" "gap: 8rem")
(":gap-16" "gap: 4rem")
(":gap-8" "gap: 2rem")
(":gap-24" "gap: 6rem")
(":bg-right" "background-position: right")
(":bg-top" "background-position: top")
(":bg-right-bottom" "background-position: rightbottom")
(":bg-center" "background-position: center")
(":bg-left-top" "background-position: lefttop")
(":bg-right-top" "background-position: righttop")
(":bg-left-bottom" "background-position: leftbottom")
(":bg-bottom" "background-position: bottom")
(":bg-left" "background-position: left")
(":right-0" "right: 0")
(":right-auto" "right: auto")
(":border-0" "border-width: 0")
(":border" "border-width: 1px")
(":border-2" "border-width: 2px")
(":border-4" "border-width: 4px")
(":border-8" "border-width: 8px")
(":pb-12" "padding-bottom: 3rem")
(":pb-40" "padding-bottom: 10rem")
(":pb-6" "padding-bottom: 1.5rem")
(":pb-px" "padding-bottom: 1px")
(":pb-5" "padding-bottom: 1.25rem")
(":pb-56" "padding-bottom: 14rem")
(":pb-3" "padding-bottom: 0.75rem")
(":pb-2" "padding-bottom: 0.5rem")
(":pb-20" "padding-bottom: 5rem")
(":pb-4" "padding-bottom: 1rem")
(":pb-64" "padding-bottom: 16rem")
(":pb-1" "padding-bottom: 0.25rem")
(":pb-0" "padding-bottom: 0")
(":pb-10" "padding-bottom: 2.5rem")
(":pb-48" "padding-bottom: 12rem")
(":pb-32" "padding-bottom: 8rem")
(":pb-16" "padding-bottom: 4rem")
(":pb-8" "padding-bottom: 2rem")
(":pb-24" "padding-bottom: 6rem")
(":max-w-none" "max-width: none")
(":max-w-6xl" "max-width: 72rem")
(":max-w-xl" "max-width: 36rem")
(":max-w-md" "max-width: 28rem")
(":max-w-xs" "max-width: 20rem")
(":max-w-lg" "max-width: 32rem")
(":max-w-full" "max-width: 100%")
(":max-w-screen-md" "max-width: 768px")
(":max-w-3xl" "max-width: 48rem")
(":max-w-sm" "max-width: 24rem")
(":max-w-5xl" "max-width: 64rem")
(":max-w-screen-sm" "max-width: 640px")
(":max-w-2xl" "max-width: 42rem")
(":max-w-screen-lg" "max-width: 1024px")
(":max-w-4xl" "max-width: 56rem")
(":max-w-screen-xl" "max-width: 1280px")
(":bg-fixed" "background-attachment: fixed")
(":bg-local" "background-attachment: local")
(":bg-scroll" "background-attachment: scroll")
(":top-0" "top: 0")
(":top-auto" "top: auto")
(":duration-75" "transition-duration: 75ms")
(":duration-100" "transition-duration: 100ms")
(":duration-150" "transition-duration: 150ms")
(":duration-200" "transition-duration: 200ms")
(":duration-300" "transition-duration: 300ms")
(":duration-500" "transition-duration: 500ms")
(":duration-700" "transition-duration: 700ms")
(":duration-1000" "transition-duration: 1000ms")
(":transition-none" "transition-property: none")
(":transition-all" "transition-property: all")
(":transition"
"transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform")
(":transition-colors"
"transition-property: background-color,border-color,color,fill,stroke")
(":transition-opacity" "transition-property: opacity")
(":transition-shadow" "transition-property: box-shadow")
(":transition-transform" "transition-property: transform")
(":border-blue-500" "border-color: #4299e1")
(":border-pink-100" "border-color: #fff5f7")
(":border-orange-700" "border-color: #c05621")
(":border-red-500" "border-color: #f56565")
(":border-yellow-400" "border-color: #f6e05e")
(":border-green-400" "border-color: #68d391")
(":border-red-200" "border-color: #fed7d7")
(":border-indigo-700" "border-color: #4c51bf")
(":border-purple-800" "border-color: #553c9a")
(":border-orange-200" "border-color: #feebc8")
(":border-orange-500" "border-color: #ed8936")
(":border-red-300" "border-color: #feb2b2")
(":border-yellow-200" "border-color: #fefcbf")
(":border-transparent" "border-color: transparent")
(":border-yellow-600" "border-color: #d69e2e")
(":border-teal-100" "border-color: #e6fffa")
(":border-gray-200" "border-color: #edf2f7")
(":border-red-800" "border-color: #9b2c2c")
(":border-gray-100" "border-color: #f7fafc")
(":border-teal-700" "border-color: #2c7a7b")
(":border-purple-900" "border-color: #44337a")
(":border-teal-400" "border-color: #4fd1c5")
(":border-teal-300" "border-color: #81e6d9")
(":border-indigo-100" "border-color: #ebf4ff")
(":border-green-100" "border-color: #f0fff4")
(":border-red-700" "border-color: #c53030")
(":border-yellow-700" "border-color: #b7791f")
(":border-indigo-600" "border-color: #5a67d8")
(":border-gray-600" "border-color: #718096")
(":border-gray-700" "border-color: #4a5568")
(":border-teal-900" "border-color: #234e52")
(":border-red-900" "border-color: #742a2a")
(":border-orange-100" "border-color: #fffaf0")
(":border-orange-900" "border-color: #7b341e")
(":border-green-800" "border-color: #276749")
(":border-orange-600" "border-color: #dd6b20")
(":border-yellow-300" "border-color: #faf089")
(":border-gray-300" "border-color: #e2e8f0")
(":border-green-900" "border-color: #22543d")
(":border-gray-800" "border-color: #2d3748")
(":border-blue-800" "border-color: #2c5282")
(":border-blue-300" "border-color: #90cdf4")
(":border-indigo-800" "border-color: #434190")
(":border-green-300" "border-color: #9ae6b4")
(":border-purple-700" "border-color: #6b46c1")
(":border-purple-200" "border-color: #e9d8fd")
(":border-blue-600" "border-color: #3182ce")
(":border-yellow-100" "border-color: #fffff0")
(":border-pink-300" "border-color: #fbb6ce")
(":border-indigo-900" "border-color: #3c366b")
(":border-gray-900" "border-color: #1a202c")
(":border-blue-700" "border-color: #2b6cb0")
(":border-green-700" "border-color: #2f855a")
(":border-gray-400" "border-color: #cbd5e0")
(":border-yellow-500" "border-color: #ecc94b")
(":border-pink-200" "border-color: #fed7e2")
(":border-green-200" "border-color: #c6f6d5")
(":border-yellow-900" "border-color: #744210")
(":border-teal-200" "border-color: #b2f5ea")
(":border-purple-500" "border-color: #9f7aea")
(":border-black" "border-color: #000")
(":border-orange-400" "border-color: #f6ad55")
(":border-orange-300" "border-color: #fbd38d")
(":border-blue-200" "border-color: #bee3f8")
(":border-pink-800" "border-color: #97266d")
(":border-teal-500" "border-color: #38b2ac")
(":border-yellow-800" "border-color: #975a16")
(":border-purple-300" "border-color: #d6bcfa")
(":border-pink-700" "border-color: #b83280")
(":border-indigo-500" "border-color: #667eea")
(":border-teal-600" "border-color: #319795")
(":border-gray-500" "border-color: #a0aec0")
(":border-teal-800" "border-color: #285e61")
(":border-purple-100" "border-color: #faf5ff")
(":border-purple-400" "border-color: #b794f4")
(":border-white" "border-color: #fff")
(":border-indigo-400" "border-color: #7f9cf5")
(":border-green-600" "border-color: #38a169")
(":border-purple-600" "border-color: #805ad5")
(":border-red-600" "border-color: #e53e3e")
(":border-red-400" "border-color: #fc8181")
(":border-pink-600" "border-color: #d53f8c")
(":border-green-500" "border-color: #48bb78")
(":border-indigo-200" "border-color: #c3dafe")
(":border-pink-400" "border-color: #f687b3")
(":border-pink-900" "border-color: #702459")
(":border-pink-500" "border-color: #ed64a6")
(":border-red-100" "border-color: #fff5f5")
(":border-orange-800" "border-color: #9c4221")
(":border-blue-900" "border-color: #2a4365")
(":border-blue-100" "border-color: #ebf8ff")
(":border-blue-400" "border-color: #63b3ed")
(":border-indigo-300" "border-color: #a3bffa")
(":bg-repeat" "background-repeat: repeat")
(":bg-no-repeat" "background-repeat: no-repeat")
(":bg-repeat-x" "background-repeat: repeat-x")
(":bg-repeat-y" "background-repeat: repeat-y")
(":bg-repeat-round" "background-repeat: round")
(":bg-repeat-space" "background-repeat: space")
(":justify-start" "justify-content: flex-start")
(":justify-center" "justify-content: center")
(":justify-end" "justify-content: flex-end")
(":justify-between" "justify-content: space-between")
(":justify-around" "justify-content: space-around")
(":col-gap-12" "column-gap: 3rem")
(":col-gap-40" "column-gap: 10rem")
(":col-gap-6" "column-gap: 1.5rem")
(":col-gap-px" "column-gap: 1px")
(":col-gap-5" "column-gap: 1.25rem")
(":col-gap-56" "column-gap: 14rem")
(":col-gap-3" "column-gap: 0.75rem")
(":col-gap-2" "column-gap: 0.5rem")
(":col-gap-20" "column-gap: 5rem")
(":col-gap-4" "column-gap: 1rem")
(":col-gap-64" "column-gap: 16rem")
(":col-gap-1" "column-gap: 0.25rem")
(":col-gap-0" "column-gap: 0")
(":col-gap-10" "column-gap: 2.5rem")
(":col-gap-48" "column-gap: 12rem")
(":col-gap-32" "column-gap: 8rem")
(":col-gap-16" "column-gap: 4rem")
(":col-gap-8" "column-gap: 2rem")
(":col-gap-24" "column-gap: 6rem")
(":font-sans"
"font-family: system-ui,-apple-system,BlinkMacSystemFont,\"SegoeUI\",Roboto,\"HelveticaNeue\",Arial,\"NotoSans\",sans-serif,\"AppleColorEmoji\",\"SegoeUIEmoji\",\"SegoeUISymbol\",\"NotoColorEmoji\"")
(":font-serif" "font-family: Georgia,Cambria,\"TimesNewRoman\",Times,serif")
(":font-mono"
"font-family: Menlo,Monaco,Consolas,\"LiberationMono\",\"CourierNew\",monospace")
(":h-12" "height: 3rem")
(":h-40" "height: 10rem")
(":h-6" "height: 1.5rem")
(":h-px" "height: 1px")
(":h-5" "height: 1.25rem")
(":h-56" "height: 14rem")
(":h-3" "height: 0.75rem")
(":h-2" "height: 0.5rem")
(":h-20" "height: 5rem")
(":h-4" "height: 1rem")
(":h-full" "height: 100%")
(":h-64" "height: 16rem")
(":h-auto" "height: auto")
(":h-1" "height: 0.25rem")
(":h-0" "height: 0")
(":h-10" "height: 2.5rem")
(":h-48" "height: 12rem")
(":h-32" "height: 8rem")
(":h-16" "height: 4rem")
(":h-8" "height: 2rem")
(":h-screen" "height: 100vh")
(":h-24" "height: 6rem")
(":-m-1" "margin: -0.25rem")
(":-m-2" "margin: -0.5rem")
(":-m-px" "margin: -1px")
(":-m-10" "margin: -2.5rem")
(":m-12" "margin: 3rem")
(":m-40" "margin: 10rem")
(":m-6" "margin: 1.5rem")
(":m-px" "margin: 1px")
(":m-5" "margin: 1.25rem")
(":m-56" "margin: 14rem")
(":m-3" "margin: 0.75rem")
(":m-2" "margin: 0.5rem")
(":m-20" "margin: 5rem")
(":-m-8" "margin: -2rem")
(":m-4" "margin: 1rem")
(":m-64" "margin: 16rem")
(":-m-12" "margin: -3rem")
(":m-auto" "margin: auto")
(":-m-3" "margin: -0.75rem")
(":-m-32" "margin: -8rem")
(":-m-48" "margin: -12rem")
(":m-1" "margin: 0.25rem")
(":-m-4" "margin: -1rem")
(":-m-24" "margin: -6rem")
(":m-0" "margin: 0")
(":m-10" "margin: 2.5rem")
(":-m-56" "margin: -14rem")
(":m-48" "margin: 12rem")
(":-m-40" "margin: -10rem")
(":-m-20" "margin: -5rem")
(":-m-6" "margin: -1.5rem")
(":-m-5" "margin: -1.25rem")
(":-m-16" "margin: -4rem")
(":-m-64" "margin: -16rem")
(":m-32" "margin: 8rem")
(":m-16" "margin: 4rem")
(":m-8" "margin: 2rem")
(":m-24" "margin: 6rem")
(":overflow-y-auto" "overflow-y: auto")
(":overflow-y-hidden" "overflow-y: hidden")
(":overflow-y-visible" "overflow-y: visible")
(":overflow-y-scroll" "overflow-y: scroll")
(":grid-rows-1" "grid-template-rows: repeat(1,minmax(0,1fr))")
(":grid-rows-2" "grid-template-rows: repeat(2,minmax(0,1fr))")
(":grid-rows-3" "grid-template-rows: repeat(3,minmax(0,1fr))")
(":grid-rows-4" "grid-template-rows: repeat(4,minmax(0,1fr))")
(":grid-rows-5" "grid-template-rows: repeat(5,minmax(0,1fr))")
(":grid-rows-6" "grid-template-rows: repeat(6,minmax(0,1fr))")
(":grid-rows-none" "grid-template-rows: none")
(":origin-right" "transform-origin: right")
(":origin-top" "transform-origin: top")
(":origin-bottom-left" "transform-origin: bottomleft")
(":origin-center" "transform-origin: center")
(":origin-top-right" "transform-origin: topright")
(":origin-bottom-right" "transform-origin: bottomright")
(":origin-bottom" "transform-origin: bottom")
(":origin-top-left" "transform-origin: topleft")
(":origin-left" "transform-origin: left")
(":-mr-1" "margin-right: -0.25rem")
(":-mr-2" "margin-right: -0.5rem")
(":-mr-px" "margin-right: -1px")
(":-mr-10" "margin-right: -2.5rem")
(":mr-12" "margin-right: 3rem")
(":mr-40" "margin-right: 10rem")
(":mr-6" "margin-right: 1.5rem")
(":mr-px" "margin-right: 1px")
(":mr-5" "margin-right: 1.25rem")
(":mr-56" "margin-right: 14rem")
(":mr-3" "margin-right: 0.75rem")
(":mr-2" "margin-right: 0.5rem")
(":mr-20" "margin-right: 5rem")
(":-mr-8" "margin-right: -2rem")
(":mr-4" "margin-right: 1rem")
(":mr-64" "margin-right: 16rem")
(":-mr-12" "margin-right: -3rem")
(":mr-auto" "margin-right: auto")
(":-mr-3" "margin-right: -0.75rem")
(":-mr-32" "margin-right: -8rem")
(":-mr-48" "margin-right: -12rem")
(":mr-1" "margin-right: 0.25rem")
(":-mr-4" "margin-right: -1rem")
(":-mr-24" "margin-right: -6rem")
(":mr-0" "margin-right: 0")
(":mr-10" "margin-right: 2.5rem")
(":-mr-56" "margin-right: -14rem")
(":mr-48" "margin-right: 12rem")
(":-mr-40" "margin-right: -10rem")
(":-mr-20" "margin-right: -5rem")
(":-mr-6" "margin-right: -1.5rem")
(":-mr-5" "margin-right: -1.25rem")
(":-mr-16" "margin-right: -4rem")
(":-mr-64" "margin-right: -16rem")
(":mr-32" "margin-right: 8rem")
(":mr-16" "margin-right: 4rem")
(":mr-8" "margin-right: 2rem")
(":mr-24" "margin-right: 6rem")
(":skew-x-0" "--transform-skew-x: 0")
(":skew-x-3" "--transform-skew-x: 3deg")
(":skew-x-6" "--transform-skew-x: 6deg")
(":skew-x-12" "--transform-skew-x: 12deg")
(":-skew-x-12" "--transform-skew-x: -12deg")
(":-skew-x-6" "--transform-skew-x: -6deg")
(":-skew-x-3" "--transform-skew-x: -3deg")
(":select-none" "user-select: none")
(":select-text" "user-select: text")
(":select-all" "user-select: all")
(":select-auto" "user-select: auto")
(":uppercase" "text-transform: uppercase")
(":lowercase" "text-transform: lowercase")
(":capitalize" "text-transform: capitalize")
(":normal-case" "text-transform: none")
(":align-baseline" "vertical-align: baseline")
(":align-top" "vertical-align: top")
(":align-middle" "vertical-align: middle")
(":align-bottom" "vertical-align: bottom")
(":align-text-top" "vertical-align: text-top")
(":align-text-bottom" "vertical-align: text-bottom")
(":items-stretch" "align-items: stretch")
(":items-start" "align-items: flex-start")
(":items-center" "align-items: center")
(":items-end" "align-items: flex-end")
(":items-baseline" "align-items: baseline")
(":break-normal" "word-break: normal")
(":break-all" "word-break: break-all")
(":p-12" "padding: 3rem")
(":p-40" "padding: 10rem")
(":p-6" "padding: 1.5rem")
(":p-px" "padding: 1px")
(":p-5" "padding: 1.25rem")
(":p-56" "padding: 14rem")
(":p-3" "padding: 0.75rem")
(":p-2" "padding: 0.5rem")
(":p-20" "padding: 5rem")
(":p-4" "padding: 1rem")
(":p-64" "padding: 16rem")
(":p-1" "padding: 0.25rem")
(":p-0" "padding: 0")
(":p-10" "padding: 2.5rem")
(":p-48" "padding: 12rem")
(":p-32" "padding: 8rem")
(":p-16" "padding: 4rem")
(":p-8" "padding: 2rem")
(":p-24" "padding: 6rem")
(":stroke-0" "stroke-width: 0")
(":stroke-1" "stroke-width: 1")
(":stroke-2" "stroke-width: 2")
(":flex-shrink-0" "flex-shrink: 0")
(":flex-shrink" "flex-shrink: 1")
(":flex-row" "flex-direction: row")
(":flex-row-reverse" "flex-direction: row-reverse")
(":flex-col" "flex-direction: column")
(":flex-col-reverse" "flex-direction: column-reverse")
(":text-left" "text-align: left")
(":text-center" "text-align: center")
(":text-right" "text-align: right")
(":text-justify" "text-align: justify")
(":whitespace-normal" "white-space: normal")
(":whitespace-no-wrap" "white-space: nowrap")
(":whitespace-pre" "white-space: pre")
(":whitespace-pre-line" "white-space: pre-line")
(":whitespace-pre-wrap" "white-space: pre-wrap")
(":border-t-0" "border-top-width: 0")
(":border-t" "border-top-width: 1px")
(":border-t-2" "border-top-width: 2px")
(":border-t-4" "border-top-width: 4px")
(":border-t-8" "border-top-width: 8px")
(":outline-none" "outline: 0")
(":col-start-9" "grid-column-start: 9")
(":col-start-3" "grid-column-start: 3")
(":col-start-4" "grid-column-start: 4")
(":col-start-8" "grid-column-start: 8")
(":col-start-7" "grid-column-start: 7")
(":col-start-5" "grid-column-start: 5")
(":col-start-auto" "grid-column-start: auto")
(":col-start-12" "grid-column-start: 12")
(":col-start-13" "grid-column-start: 13")
(":col-start-6" "grid-column-start: 6")
(":col-start-1" "grid-column-start: 1")
(":col-start-11" "grid-column-start: 11")
(":col-start-2" "grid-column-start: 2")
(":col-start-10" "grid-column-start: 10")
(":col-end-9" "grid-column-end: 9")
(":col-end-3" "grid-column-end: 3")
(":col-end-4" "grid-column-end: 4")
(":col-end-8" "grid-column-end: 8")
(":col-end-7" "grid-column-end: 7")
(":col-end-5" "grid-column-end: 5")
(":col-end-auto" "grid-column-end: auto")
(":col-end-12" "grid-column-end: 12")
(":col-end-13" "grid-column-end: 13")
(":col-end-6" "grid-column-end: 6")
(":col-end-1" "grid-column-end: 1")
(":col-end-11" "grid-column-end: 11")
(":col-end-2" "grid-column-end: 2")
(":col-end-10" "grid-column-end: 10")
(":border-solid" "border-style: solid")
(":border-dashed" "border-style: dashed")
(":border-dotted" "border-style: dotted")
(":border-double" "border-style: double")
(":border-none" "border-style: none")
(":visible" "visibility: visible")
(":invisible" "visibility: hidden")
(":border-r-0" "border-right-width: 0")
(":border-r" "border-right-width: 1px")
(":border-r-2" "border-right-width: 2px")
(":border-r-4" "border-right-width: 4px")
(":border-r-8" "border-right-width: 8px")
(":rounded-br-none" "border-bottom-right-radius: 0")
(":rounded-br-sm" "border-bottom-right-radius: 0.125rem")
(":rounded-br" "border-bottom-right-radius: 0.25rem")
(":rounded-br-md" "border-bottom-right-radius: 0.375rem")
(":rounded-br-lg" "border-bottom-right-radius: 0.5rem")
(":rounded-br-full" "border-bottom-right-radius: 9999px")
(":self-auto" "align-self: auto")
(":self-start" "align-self: flex-start")
(":self-center" "align-self: center")
(":self-end" "align-self: flex-end")
(":self-stretch" "align-self: stretch")
(":scrolling-touch" "-webkit-overflow-scrolling: touch")
(":scrolling-auto" "-webkit-overflow-scrolling: auto")
(":static" "position: static")
(":fixed" "position: fixed")
(":absolute" "position: absolute")
(":relative" "position: relative")
(":sticky" "position: sticky")
(":row-end-1" "grid-row-end: 1")
(":row-end-2" "grid-row-end: 2")
(":row-end-3" "grid-row-end: 3")
(":row-end-4" "grid-row-end: 4")
(":row-end-5" "grid-row-end: 5")
(":row-end-6" "grid-row-end: 6")
(":row-end-7" "grid-row-end: 7")
(":row-end-auto" "grid-row-end: auto")
(":row-gap-12" "row-gap: 3rem")
(":row-gap-40" "row-gap: 10rem")
(":row-gap-6" "row-gap: 1.5rem")
(":row-gap-px" "row-gap: 1px")
(":row-gap-5" "row-gap: 1.25rem")
(":row-gap-56" "row-gap: 14rem")
(":row-gap-3" "row-gap: 0.75rem")
(":row-gap-2" "row-gap: 0.5rem")
(":row-gap-20" "row-gap: 5rem")
(":row-gap-4" "row-gap: 1rem")
(":row-gap-64" "row-gap: 16rem")
(":row-gap-1" "row-gap: 0.25rem")
(":row-gap-0" "row-gap: 0")
(":row-gap-10" "row-gap: 2.5rem")
(":row-gap-48" "row-gap: 12rem")
(":row-gap-32" "row-gap: 8rem")
(":row-gap-16" "row-gap: 4rem")
(":row-gap-8" "row-gap: 2rem")
(":row-gap-24" "row-gap: 6rem")
(":ease-linear" "transition-timing-function: linear")
(":ease-in" "transition-timing-function: cubic-bezier(0.4,0,1,1)")
(":ease-out" "transition-timing-function: cubic-bezier(0,0,0.2,1)")
(":ease-in-out" "transition-timing-function: cubic-bezier(0.4,0,0.2,1)")
(":stroke-current" "stroke: currentColor")
(":-mt-1" "margin-top: -0.25rem")
(":-mt-2" "margin-top: -0.5rem")
(":-mt-px" "margin-top: -1px")
(":-mt-10" "margin-top: -2.5rem")
(":mt-12" "margin-top: 3rem")
(":mt-40" "margin-top: 10rem")
(":mt-6" "margin-top: 1.5rem")
(":mt-px" "margin-top: 1px")
(":mt-5" "margin-top: 1.25rem")
(":mt-56" "margin-top: 14rem")
(":mt-3" "margin-top: 0.75rem")
(":mt-2" "margin-top: 0.5rem")
(":mt-20" "margin-top: 5rem")
(":-mt-8" "margin-top: -2rem")
(":mt-4" "margin-top: 1rem")
(":mt-64" "margin-top: 16rem")
(":-mt-12" "margin-top: -3rem")
(":mt-auto" "margin-top: auto")
(":-mt-3" "margin-top: -0.75rem")
(":-mt-32" "margin-top: -8rem")
(":-mt-48" "margin-top: -12rem")
(":mt-1" "margin-top: 0.25rem")
(":-mt-4" "margin-top: -1rem")
(":-mt-24" "margin-top: -6rem")
(":mt-0" "margin-top: 0")
(":mt-10" "margin-top: 2.5rem")
(":-mt-56" "margin-top: -14rem")
(":mt-48" "margin-top: 12rem")
(":-mt-40" "margin-top: -10rem")
(":-mt-20" "margin-top: -5rem")
(":-mt-6" "margin-top: -1.5rem")
(":-mt-5" "margin-top: -1.25rem")
(":-mt-16" "margin-top: -4rem")
(":-mt-64" "margin-top: -16rem")
(":mt-32" "margin-top: 8rem")
(":mt-16" "margin-top: 4rem")
(":mt-8" "margin-top: 2rem")
(":mt-24" "margin-top: 6rem")
(":rounded-bl-none" "border-bottom-left-radius: 0")
(":rounded-bl-sm" "border-bottom-left-radius: 0.125rem")
(":rounded-bl" "border-bottom-left-radius: 0.25rem")
(":rounded-bl-md" "border-bottom-left-radius: 0.375rem")
(":rounded-bl-lg" "border-bottom-left-radius: 0.5rem")
(":rounded-bl-full" "border-bottom-left-radius: 9999px")
(":object-contain" "object-fit: contain")
(":object-cover" "object-fit: cover")
(":object-fill" "object-fit: fill")
(":object-none" "object-fit: none")
(":object-scale-down" "object-fit: scale-down")
(":list-none" "list-style-type: none")
(":list-disc" "list-style-type: disc")
(":list-decimal" "list-style-type: decimal")
(":z-0" "z-index: 0")
(":z-10" "z-index: 10")
(":z-20" "z-index: 20")
(":z-30" "z-index: 30")
(":z-40" "z-index: 40")
(":z-50" "z-index: 50")
(":z-auto" "z-index: auto")
(":flex-no-wrap" "flex-wrap: nowrap")
(":flex-wrap" "flex-wrap: wrap")
(":flex-wrap-reverse" "flex-wrap: wrap-reverse")
(":rounded-tr-none" "border-top-right-radius: 0")
(":rounded-tr-sm" "border-top-right-radius: 0.125rem")
(":rounded-tr" "border-top-right-radius: 0.25rem")
(":rounded-tr-md" "border-top-right-radius: 0.375rem")
(":rounded-tr-lg" "border-top-right-radius: 0.5rem")
(":rounded-tr-full" "border-top-right-radius: 9999px")
(":min-h-0" "min-height: 0")
(":min-h-full" "min-height: 100%")
(":min-h-screen" "min-height: 100vh")
(":flex-grow-0" "flex-grow: 0")
(":flex-grow" "flex-grow: 1")
(":content-start" "align-content: flex-start")
(":content-center" "align-content: center")
(":content-end" "align-content: flex-end")
(":content-between" "align-content: space-between")
(":content-around" "align-content: space-around")
(":-mb-1" "margin-bottom: -0.25rem")
(":-mb-2" "margin-bottom: -0.5rem")
(":-mb-px" "margin-bottom: -1px")
(":-mb-10" "margin-bottom: -2.5rem")
(":mb-12" "margin-bottom: 3rem")
(":mb-40" "margin-bottom: 10rem")
(":mb-6" "margin-bottom: 1.5rem")
(":mb-px" "margin-bottom: 1px")
(":mb-5" "margin-bottom: 1.25rem")
(":mb-56" "margin-bottom: 14rem")
(":mb-3" "margin-bottom: 0.75rem")
(":mb-2" "margin-bottom: 0.5rem")
(":mb-20" "margin-bottom: 5rem")
(":-mb-8" "margin-bottom: -2rem")
(":mb-4" "margin-bottom: 1rem")
(":mb-64" "margin-bottom: 16rem")
(":-mb-12" "margin-bottom: -3rem")
(":mb-auto" "margin-bottom: auto")
(":-mb-3" "margin-bottom: -0.75rem")
(":-mb-32" "margin-bottom: -8rem")
(":-mb-48" "margin-bottom: -12rem")
(":mb-1" "margin-bottom: 0.25rem")
(":-mb-4" "margin-bottom: -1rem")
(":-mb-24" "margin-bottom: -6rem")
(":mb-0" "margin-bottom: 0")
(":mb-10" "margin-bottom: 2.5rem")
(":-mb-56" "margin-bottom: -14rem")
(":mb-48" "margin-bottom: 12rem")
(":-mb-40" "margin-bottom: -10rem")
(":-mb-20" "margin-bottom: -5rem")
(":-mb-6" "margin-bottom: -1.5rem")
(":-mb-5" "margin-bottom: -1.25rem")
(":-mb-16" "margin-bottom: -4rem")
(":-mb-64" "margin-bottom: -16rem")
(":mb-32" "margin-bottom: 8rem")
(":mb-16" "margin-bottom: 4rem")
(":mb-8" "margin-bottom: 2rem")
(":mb-24" "margin-bottom: 6rem")
(":fill-current" "fill: currentColor")
(":cursor-auto" "cursor: auto")
(":cursor-default" "cursor: default")
(":cursor-pointer" "cursor: pointer")
(":cursor-wait" "cursor: wait")
(":cursor-text" "cursor: text")
(":cursor-move" "cursor: move")
(":cursor-not-allowed" "cursor: not-allowed")
(":rotate-0" "--transform-rotate: 0")
(":rotate-45" "--transform-rotate: 45deg")
(":rotate-90" "--transform-rotate: 90deg")
(":rotate-180" "--transform-rotate: 180deg")
(":-rotate-180" "--transform-rotate: -180deg")
(":-rotate-90" "--transform-rotate: -90deg")
(":-rotate-45" "--transform-rotate: -45deg")
(":font-semibold" "font-weight: 600")
(":font-light" "font-weight: 300")
(":font-bold" "font-weight: 700")
(":font-normal" "font-weight: 400")
(":font-hairline" "font-weight: 100")
(":font-thin" "font-weight: 200")
(":font-medium" "font-weight: 500")
(":font-black" "font-weight: 900")
(":font-extrabold" "font-weight: 800")
(":-translate-x-1" "--transform-translate-x: -0.25rem")
(":-translate-x-2" "--transform-translate-x: -0.5rem")
(":-translate-x-px" "--transform-translate-x: -1px")
(":-translate-x-10" "--transform-translate-x: -2.5rem")
(":translate-x-12" "--transform-translate-x: 3rem")
(":translate-x-40" "--transform-translate-x: 10rem")
(":translate-x-1/2" "--transform-translate-x: 50%")
(":translate-x-6" "--transform-translate-x: 1.5rem")
(":translate-x-px" "--transform-translate-x: 1px")
(":translate-x-5" "--transform-translate-x: 1.25rem")
(":translate-x-56" "--transform-translate-x: 14rem")
(":translate-x-3" "--transform-translate-x: 0.75rem")
(":translate-x-2" "--transform-translate-x: 0.5rem")
(":translate-x-20" "--transform-translate-x: 5rem")
(":-translate-x-full" "--transform-translate-x: -100%")
(":-translate-x-8" "--transform-translate-x: -2rem")
(":translate-x-4" "--transform-translate-x: 1rem")
(":translate-x-full" "--transform-translate-x: 100%")
(":translate-x-64" "--transform-translate-x: 16rem")
(":-translate-x-12" "--transform-translate-x: -3rem")
(":-translate-x-3" "--transform-translate-x: -0.75rem")
(":-translate-x-32" "--transform-translate-x: -8rem")
(":-translate-x-1/2" "--transform-translate-x: -50%")
(":-translate-x-48" "--transform-translate-x: -12rem")
(":translate-x-1" "--transform-translate-x: 0.25rem")
(":-translate-x-4" "--transform-translate-x: -1rem")
(":-translate-x-24" "--transform-translate-x: -6rem")
(":translate-x-0" "--transform-translate-x: 0")
(":translate-x-10" "--transform-translate-x: 2.5rem")
(":-translate-x-56" "--transform-translate-x: -14rem")
(":translate-x-48" "--transform-translate-x: 12rem")
(":-translate-x-40" "--transform-translate-x: -10rem")
(":-translate-x-20" "--transform-translate-x: -5rem")
(":-translate-x-6" "--transform-translate-x: -1.5rem")
(":-translate-x-5" "--transform-translate-x: -1.25rem")
(":-translate-x-16" "--transform-translate-x: -4rem")
(":-translate-x-64" "--transform-translate-x: -16rem")
(":translate-x-32" "--transform-translate-x: 8rem")
(":translate-x-16" "--transform-translate-x: 4rem")
(":translate-x-8" "--transform-translate-x: 2rem")
(":translate-x-24" "--transform-translate-x: 6rem")
(":row-start-1" "grid-row-start: 1")
(":row-start-2" "grid-row-start: 2")
(":row-start-3" "grid-row-start: 3")
(":row-start-4" "grid-row-start: 4")
(":row-start-5" "grid-row-start: 5")
(":row-start-6" "grid-row-start: 6")
(":row-start-7" "grid-row-start: 7")
(":row-start-auto" "grid-row-start: auto")
(":bg-auto" "background-size: auto")
(":bg-cover" "background-size: cover")
(":bg-contain" "background-size: contain")
(":object-right" "object-position: right")
(":object-top" "object-position: top")
(":object-right-bottom" "object-position: rightbottom")
(":object-center" "object-position: center")
(":object-left-top" "object-position: lefttop")
(":object-right-top" "object-position: righttop")
(":object-left-bottom" "object-position: leftbottom")
(":object-bottom" "object-position: bottom")
(":object-left" "object-position: left")
(":border-b-0" "border-bottom-width: 0")
(":border-b" "border-bottom-width: 1px")
(":border-b-2" "border-bottom-width: 2px")
(":border-b-4" "border-bottom-width: 4px")
(":border-b-8" "border-bottom-width: 8px")
(":underline" "text-decoration: underline")
(":line-through" "text-decoration: line-through")
(":no-underline" "text-decoration: none")
(":order-9" "order: 9")
(":order-3" "order: 3")
(":order-4" "order: 4")
(":order-8" "order: 8")
(":order-last" "order: 9999")
(":order-7" "order: 7")
(":order-5" "order: 5")
(":order-12" "order: 12")
(":order-6" "order: 6")
(":order-1" "order: 1")
(":order-none" "order: 0")
(":order-11" "order: 11")
(":order-2" "order: 2")
(":order-10" "order: 10")
(":order-first" "order: -9999")
(":shadow-2xl" "box-shadow: 025px50px-12pxrgba(0,0,0,0.25)")
(":shadow-none" "box-shadow: none")
(":shadow-xs" "box-shadow: 0001pxrgba(0,0,0,0.05)")
(":shadow-inner" "box-shadow: inset02px4px0rgba(0,0,0,0.06)")
(":shadow-xl"
"box-shadow: 020px25px-5pxrgba(0,0,0,0.1),010px10px-5pxrgba(0,0,0,0.04)")
(":shadow-lg"
"box-shadow: 010px15px-3pxrgba(0,0,0,0.1),04px6px-2pxrgba(0,0,0,0.05)")
(":shadow-outline" "box-shadow: 0003pxrgba(66,153,225,0.5)")
(":shadow-md"
"box-shadow: 04px6px-1pxrgba(0,0,0,0.1),02px4px-1pxrgba(0,0,0,0.06)")
(":shadow-sm" "box-shadow: 01px2px0rgba(0,0,0,0.05)")
(":shadow" "box-shadow: 01px3px0rgba(0,0,0,0.1),01px2px0rgba(0,0,0,0.06)")
(":skew-y-0" "--transform-skew-y: 0")
(":skew-y-3" "--transform-skew-y: 3deg")
(":skew-y-6" "--transform-skew-y: 6deg")
(":skew-y-12" "--transform-skew-y: 12deg")
(":-skew-y-12" "--transform-skew-y: -12deg")
(":-skew-y-6" "--transform-skew-y: -6deg")
(":-skew-y-3" "--transform-skew-y: -3deg")
(":overflow-auto" "overflow: auto")
(":overflow-hidden" "overflow: hidden")
(":overflow-visible" "overflow: visible")
(":overflow-scroll" "overflow: scroll")
(":overflow-x-auto" "overflow-x: auto")
(":overflow-x-hidden" "overflow-x: hidden")
(":overflow-x-visible" "overflow-x: visible")
(":overflow-x-scroll" "overflow-x: scroll")
(":-ml-1" "margin-left: -0.25rem")
(":-ml-2" "margin-left: -0.5rem")
(":-ml-px" "margin-left: -1px")
(":-ml-10" "margin-left: -2.5rem")
(":ml-12" "margin-left: 3rem")
(":ml-40" "margin-left: 10rem")
(":ml-6" "margin-left: 1.5rem")
(":ml-px" "margin-left: 1px")
(":ml-5" "margin-left: 1.25rem")
(":ml-56" "margin-left: 14rem")
(":ml-3" "margin-left: 0.75rem")
(":ml-2" "margin-left: 0.5rem")
(":ml-20" "margin-left: 5rem")
(":-ml-8" "margin-left: -2rem")
(":ml-4" "margin-left: 1rem")
(":ml-64" "margin-left: 16rem")
(":-ml-12" "margin-left: -3rem")
(":ml-auto" "margin-left: auto")
(":-ml-3" "margin-left: -0.75rem")
(":-ml-32" "margin-left: -8rem")
(":-ml-48" "margin-left: -12rem")
(":ml-1" "margin-left: 0.25rem")
(":-ml-4" "margin-left: -1rem")
(":-ml-24" "margin-left: -6rem")
(":ml-0" "margin-left: 0")
(":ml-10" "margin-left: 2.5rem")
(":-ml-56" "margin-left: -14rem")
(":ml-48" "margin-left: 12rem")
(":-ml-40" "margin-left: -10rem")
(":-ml-20" "margin-left: -5rem")
(":-ml-6" "margin-left: -1.5rem")
(":-ml-5" "margin-left: -1.25rem")
(":-ml-16" "margin-left: -4rem")
(":-ml-64" "margin-left: -16rem")
(":ml-32" "margin-left: 8rem")
(":ml-16" "margin-left: 4rem")
(":ml-8" "margin-left: 2rem")
(":ml-24" "margin-left: 6rem")
(":text-5xl" "font-size: 3rem")
(":text-lg" "font-size: 1.125rem")
(":text-2xl" "font-size: 1.5rem")
(":text-xl" "font-size: 1.25rem")
(":text-base" "font-size: 1rem")
(":text-4xl" "font-size: 2.25rem")
(":text-sm" "font-size: .875rem")
(":text-3xl" "font-size: 1.875rem")
(":text-xs" "font-size: .75rem")
(":text-6xl" "font-size: 4rem")
(":bg-blue-500" "background-color: #4299e1")
(":bg-pink-100" "background-color: #fff5f7")
(":bg-orange-700" "background-color: #c05621")
(":bg-red-500" "background-color: #f56565")
(":bg-yellow-400" "background-color: #f6e05e")
(":bg-green-400" "background-color: #68d391")
(":bg-red-200" "background-color: #fed7d7")
(":bg-indigo-700" "background-color: #4c51bf")
(":bg-purple-800" "background-color: #553c9a")
(":bg-orange-200" "background-color: #feebc8")
(":bg-orange-500" "background-color: #ed8936")
(":bg-red-300" "background-color: #feb2b2")
(":bg-yellow-200" "background-color: #fefcbf")
(":bg-transparent" "background-color: transparent")
(":bg-yellow-600" "background-color: #d69e2e")
(":bg-teal-100" "background-color: #e6fffa")
(":bg-gray-200" "background-color: #edf2f7")
(":bg-red-800" "background-color: #9b2c2c")
(":bg-gray-100" "background-color: #f7fafc")
(":bg-teal-700" "background-color: #2c7a7b")
(":bg-purple-900" "background-color: #44337a")
(":bg-teal-400" "background-color: #4fd1c5")
(":bg-teal-300" "background-color: #81e6d9")
(":bg-indigo-100" "background-color: #ebf4ff")
(":bg-green-100" "background-color: #f0fff4")
(":bg-red-700" "background-color: #c53030")
(":bg-yellow-700" "background-color: #b7791f")
(":bg-indigo-600" "background-color: #5a67d8")
(":bg-gray-600" "background-color: #718096")
(":bg-gray-700" "background-color: #4a5568")
(":bg-teal-900" "background-color: #234e52")
(":bg-red-900" "background-color: #742a2a")
(":bg-orange-100" "background-color: #fffaf0")
(":bg-orange-900" "background-color: #7b341e")
(":bg-green-800" "background-color: #276749")
(":bg-orange-600" "background-color: #dd6b20")
(":bg-yellow-300" "background-color: #faf089")
(":bg-gray-300" "background-color: #e2e8f0")
(":bg-green-900" "background-color: #22543d")
(":bg-gray-800" "background-color: #2d3748")
(":bg-blue-800" "background-color: #2c5282")
(":bg-blue-300" "background-color: #90cdf4")
(":bg-indigo-800" "background-color: #434190")
(":bg-green-300" "background-color: #9ae6b4")
(":bg-purple-700" "background-color: #6b46c1")
(":bg-purple-200" "background-color: #e9d8fd")
(":bg-blue-600" "background-color: #3182ce")
(":bg-yellow-100" "background-color: #fffff0")
(":bg-pink-300" "background-color: #fbb6ce")
(":bg-indigo-900" "background-color: #3c366b")
(":bg-gray-900" "background-color: #1a202c")
(":bg-blue-700" "background-color: #2b6cb0")
(":bg-green-700" "background-color: #2f855a")
(":bg-gray-400" "background-color: #cbd5e0")
(":bg-yellow-500" "background-color: #ecc94b")
(":bg-pink-200" "background-color: #fed7e2")
(":bg-green-200" "background-color: #c6f6d5")
(":bg-yellow-900" "background-color: #744210")
(":bg-teal-200" "background-color: #b2f5ea")
(":bg-purple-500" "background-color: #9f7aea")
(":bg-black" "background-color: #000")
(":bg-orange-400" "background-color: #f6ad55")
(":bg-orange-300" "background-color: #fbd38d")
(":bg-blue-200" "background-color: #bee3f8")
(":bg-pink-800" "background-color: #97266d")
(":bg-teal-500" "background-color: #38b2ac")
(":bg-yellow-800" "background-color: #975a16")
(":bg-purple-300" "background-color: #d6bcfa")
(":bg-pink-700" "background-color: #b83280")
(":bg-indigo-500" "background-color: #667eea")
(":bg-teal-600" "background-color: #319795")
(":bg-gray-500" "background-color: #a0aec0")
(":bg-teal-800" "background-color: #285e61")
(":bg-purple-100" "background-color: #faf5ff")
(":bg-purple-400" "background-color: #b794f4")
(":bg-white" "background-color: #fff")
(":bg-indigo-400" "background-color: #7f9cf5")
(":bg-green-600" "background-color: #38a169")
(":bg-purple-600" "background-color: #805ad5")
(":bg-red-600" "background-color: #e53e3e")
(":bg-red-400" "background-color: #fc8181")
(":bg-pink-600" "background-color: #d53f8c")
(":bg-green-500" "background-color: #48bb78")
(":bg-indigo-200" "background-color: #c3dafe")
(":bg-pink-400" "background-color: #f687b3")
(":bg-pink-900" "background-color: #702459")
(":bg-pink-500" "background-color: #ed64a6")
(":bg-red-100" "background-color: #fff5f5")
(":bg-orange-800" "background-color: #9c4221")
(":bg-blue-900" "background-color: #2a4365")
(":bg-blue-100" "background-color: #ebf8ff")
(":bg-blue-400" "background-color: #63b3ed")
(":bg-indigo-300" "background-color: #a3bffa")
(":pr-12" "padding-right: 3rem")
(":pr-40" "padding-right: 10rem")
(":pr-6" "padding-right: 1.5rem")
(":pr-px" "padding-right: 1px")
(":pr-5" "padding-right: 1.25rem")
(":pr-56" "padding-right: 14rem")
(":pr-3" "padding-right: 0.75rem")
(":pr-2" "padding-right: 0.5rem")
(":pr-20" "padding-right: 5rem")
(":pr-4" "padding-right: 1rem")
(":pr-64" "padding-right: 16rem")
(":pr-1" "padding-right: 0.25rem")
(":pr-0" "padding-right: 0")
(":pr-10" "padding-right: 2.5rem")
(":pr-48" "padding-right: 12rem")
(":pr-32" "padding-right: 8rem")
(":pr-16" "padding-right: 4rem")
(":pr-8" "padding-right: 2rem")
(":pr-24" "padding-right: 6rem")
(":tracking-normal" "letter-spacing: 0")
(":tracking-tighter" "letter-spacing: -0.05em")
(":tracking-tight" "letter-spacing: -0.025em")
(":tracking-wide" "letter-spacing: 0.025em")
(":tracking-wider" "letter-spacing: 0.05em")
(":tracking-widest" "letter-spacing: 0.1em")
(":rounded-none" "border-radius: 0")
(":rounded-sm" "border-radius: 0.125rem")
(":rounded" "border-radius: 0.25rem")
(":rounded-md" "border-radius: 0.375rem")
(":rounded-lg" "border-radius: 0.5rem")
(":rounded-full" "border-radius: 9999px")
(":box-border" "box-sizing: border-box")
(":box-content" "box-sizing: content-box")
(":-translate-y-1" "--transform-translate-y: -0.25rem")
(":-translate-y-2" "--transform-translate-y: -0.5rem")
(":-translate-y-px" "--transform-translate-y: -1px")
(":-translate-y-10" "--transform-translate-y: -2.5rem")
(":translate-y-12" "--transform-translate-y: 3rem")
(":translate-y-40" "--transform-translate-y: 10rem")
(":translate-y-1/2" "--transform-translate-y: 50%")