-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.css
8734 lines (6808 loc) · 313 KB
/
master.css
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
/* github: https://github.com/iaseth/html-color-names */
/* color: AliceBlue */
.bg-aliceblue-50 { background-color: #fcfdff; }
.text-aliceblue-50 { color: #fcfdff; }
.border-aliceblue-50 { border-color: #fcfdff; }
.outline-aliceblue-50 { outline-color: #fcfdff; }
.bg-aliceblue-100 { background-color: #fafcff; }
.text-aliceblue-100 { color: #fafcff; }
.border-aliceblue-100 { border-color: #fafcff; }
.outline-aliceblue-100 { outline-color: #fafcff; }
.bg-aliceblue-200 { background-color: #f7fbff; }
.text-aliceblue-200 { color: #f7fbff; }
.border-aliceblue-200 { border-color: #f7fbff; }
.outline-aliceblue-200 { outline-color: #f7fbff; }
.bg-aliceblue-300 { background-color: #f5faff; }
.text-aliceblue-300 { color: #f5faff; }
.border-aliceblue-300 { border-color: #f5faff; }
.outline-aliceblue-300 { outline-color: #f5faff; }
.bg-aliceblue-400 { background-color: #f2f9ff; }
.text-aliceblue-400 { color: #f2f9ff; }
.border-aliceblue-400 { border-color: #f2f9ff; }
.outline-aliceblue-400 { outline-color: #f2f9ff; }
.bg-aliceblue-500 { background-color: #f0f8ff; }
.text-aliceblue-500 { color: #f0f8ff; }
.border-aliceblue-500 { border-color: #f0f8ff; }
.outline-aliceblue-500 { outline-color: #f0f8ff; }
.bg-aliceblue-600 { background-color: #c8ced4; }
.text-aliceblue-600 { color: #c8ced4; }
.border-aliceblue-600 { border-color: #c8ced4; }
.outline-aliceblue-600 { outline-color: #c8ced4; }
.bg-aliceblue-700 { background-color: #a0a5aa; }
.text-aliceblue-700 { color: #a0a5aa; }
.border-aliceblue-700 { border-color: #a0a5aa; }
.outline-aliceblue-700 { outline-color: #a0a5aa; }
.bg-aliceblue-800 { background-color: #787c7f; }
.text-aliceblue-800 { color: #787c7f; }
.border-aliceblue-800 { border-color: #787c7f; }
.outline-aliceblue-800 { outline-color: #787c7f; }
.bg-aliceblue-900 { background-color: #505255; }
.text-aliceblue-900 { color: #505255; }
.border-aliceblue-900 { border-color: #505255; }
.outline-aliceblue-900 { outline-color: #505255; }
.bg-aliceblue-950 { background-color: #28292a; }
.text-aliceblue-950 { color: #28292a; }
.border-aliceblue-950 { border-color: #28292a; }
.outline-aliceblue-950 { outline-color: #28292a; }
/* github: https://github.com/iaseth/html-color-names */
/* color: AntiqueWhite */
.bg-antiquewhite-50 { background-color: #fefbf8; }
.text-antiquewhite-50 { color: #fefbf8; }
.border-antiquewhite-50 { border-color: #fefbf8; }
.outline-antiquewhite-50 { outline-color: #fefbf8; }
.bg-antiquewhite-100 { background-color: #fdf8f1; }
.text-antiquewhite-100 { color: #fdf8f1; }
.border-antiquewhite-100 { border-color: #fdf8f1; }
.outline-antiquewhite-100 { outline-color: #fdf8f1; }
.bg-antiquewhite-200 { background-color: #fcf5eb; }
.text-antiquewhite-200 { color: #fcf5eb; }
.border-antiquewhite-200 { border-color: #fcf5eb; }
.outline-antiquewhite-200 { outline-color: #fcf5eb; }
.bg-antiquewhite-300 { background-color: #fbf1e4; }
.text-antiquewhite-300 { color: #fbf1e4; }
.border-antiquewhite-300 { border-color: #fbf1e4; }
.outline-antiquewhite-300 { outline-color: #fbf1e4; }
.bg-antiquewhite-400 { background-color: #faeedd; }
.text-antiquewhite-400 { color: #faeedd; }
.border-antiquewhite-400 { border-color: #faeedd; }
.outline-antiquewhite-400 { outline-color: #faeedd; }
.bg-antiquewhite-500 { background-color: #faebd7; }
.text-antiquewhite-500 { color: #faebd7; }
.border-antiquewhite-500 { border-color: #faebd7; }
.outline-antiquewhite-500 { outline-color: #faebd7; }
.bg-antiquewhite-600 { background-color: #d0c3b3; }
.text-antiquewhite-600 { color: #d0c3b3; }
.border-antiquewhite-600 { border-color: #d0c3b3; }
.outline-antiquewhite-600 { outline-color: #d0c3b3; }
.bg-antiquewhite-700 { background-color: #a69c8f; }
.text-antiquewhite-700 { color: #a69c8f; }
.border-antiquewhite-700 { border-color: #a69c8f; }
.outline-antiquewhite-700 { outline-color: #a69c8f; }
.bg-antiquewhite-800 { background-color: #7d756b; }
.text-antiquewhite-800 { color: #7d756b; }
.border-antiquewhite-800 { border-color: #7d756b; }
.outline-antiquewhite-800 { outline-color: #7d756b; }
.bg-antiquewhite-900 { background-color: #534e47; }
.text-antiquewhite-900 { color: #534e47; }
.border-antiquewhite-900 { border-color: #534e47; }
.outline-antiquewhite-900 { outline-color: #534e47; }
.bg-antiquewhite-950 { background-color: #292723; }
.text-antiquewhite-950 { color: #292723; }
.border-antiquewhite-950 { border-color: #292723; }
.outline-antiquewhite-950 { outline-color: #292723; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Aqua */
.bg-aqua-50 { background-color: #d4ffff; }
.text-aqua-50 { color: #d4ffff; }
.border-aqua-50 { border-color: #d4ffff; }
.outline-aqua-50 { outline-color: #d4ffff; }
.bg-aqua-100 { background-color: #aaffff; }
.text-aqua-100 { color: #aaffff; }
.border-aqua-100 { border-color: #aaffff; }
.outline-aqua-100 { outline-color: #aaffff; }
.bg-aqua-200 { background-color: #7fffff; }
.text-aqua-200 { color: #7fffff; }
.border-aqua-200 { border-color: #7fffff; }
.outline-aqua-200 { outline-color: #7fffff; }
.bg-aqua-300 { background-color: #55ffff; }
.text-aqua-300 { color: #55ffff; }
.border-aqua-300 { border-color: #55ffff; }
.outline-aqua-300 { outline-color: #55ffff; }
.bg-aqua-400 { background-color: #2affff; }
.text-aqua-400 { color: #2affff; }
.border-aqua-400 { border-color: #2affff; }
.outline-aqua-400 { outline-color: #2affff; }
.bg-aqua-500 { background-color: #00ffff; }
.text-aqua-500 { color: #00ffff; }
.border-aqua-500 { border-color: #00ffff; }
.outline-aqua-500 { outline-color: #00ffff; }
.bg-aqua-600 { background-color: #00d4d4; }
.text-aqua-600 { color: #00d4d4; }
.border-aqua-600 { border-color: #00d4d4; }
.outline-aqua-600 { outline-color: #00d4d4; }
.bg-aqua-700 { background-color: #00aaaa; }
.text-aqua-700 { color: #00aaaa; }
.border-aqua-700 { border-color: #00aaaa; }
.outline-aqua-700 { outline-color: #00aaaa; }
.bg-aqua-800 { background-color: #007f7f; }
.text-aqua-800 { color: #007f7f; }
.border-aqua-800 { border-color: #007f7f; }
.outline-aqua-800 { outline-color: #007f7f; }
.bg-aqua-900 { background-color: #005555; }
.text-aqua-900 { color: #005555; }
.border-aqua-900 { border-color: #005555; }
.outline-aqua-900 { outline-color: #005555; }
.bg-aqua-950 { background-color: #002a2a; }
.text-aqua-950 { color: #002a2a; }
.border-aqua-950 { border-color: #002a2a; }
.outline-aqua-950 { outline-color: #002a2a; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Aquamarine */
.bg-aquamarine-50 { background-color: #e9fff7; }
.text-aquamarine-50 { color: #e9fff7; }
.border-aquamarine-50 { border-color: #e9fff7; }
.outline-aquamarine-50 { outline-color: #e9fff7; }
.bg-aquamarine-100 { background-color: #d4fff0; }
.text-aquamarine-100 { color: #d4fff0; }
.border-aquamarine-100 { border-color: #d4fff0; }
.outline-aquamarine-100 { outline-color: #d4fff0; }
.bg-aquamarine-200 { background-color: #bfffe9; }
.text-aquamarine-200 { color: #bfffe9; }
.border-aquamarine-200 { border-color: #bfffe9; }
.outline-aquamarine-200 { outline-color: #bfffe9; }
.bg-aquamarine-300 { background-color: #a9ffe2; }
.text-aquamarine-300 { color: #a9ffe2; }
.border-aquamarine-300 { border-color: #a9ffe2; }
.outline-aquamarine-300 { outline-color: #a9ffe2; }
.bg-aquamarine-400 { background-color: #94ffdb; }
.text-aquamarine-400 { color: #94ffdb; }
.border-aquamarine-400 { border-color: #94ffdb; }
.outline-aquamarine-400 { outline-color: #94ffdb; }
.bg-aquamarine-500 { background-color: #7fffd4; }
.text-aquamarine-500 { color: #7fffd4; }
.border-aquamarine-500 { border-color: #7fffd4; }
.outline-aquamarine-500 { outline-color: #7fffd4; }
.bg-aquamarine-600 { background-color: #69d4b0; }
.text-aquamarine-600 { color: #69d4b0; }
.border-aquamarine-600 { border-color: #69d4b0; }
.outline-aquamarine-600 { outline-color: #69d4b0; }
.bg-aquamarine-700 { background-color: #54aa8d; }
.text-aquamarine-700 { color: #54aa8d; }
.border-aquamarine-700 { border-color: #54aa8d; }
.outline-aquamarine-700 { outline-color: #54aa8d; }
.bg-aquamarine-800 { background-color: #3f7f6a; }
.text-aquamarine-800 { color: #3f7f6a; }
.border-aquamarine-800 { border-color: #3f7f6a; }
.outline-aquamarine-800 { outline-color: #3f7f6a; }
.bg-aquamarine-900 { background-color: #2a5546; }
.text-aquamarine-900 { color: #2a5546; }
.border-aquamarine-900 { border-color: #2a5546; }
.outline-aquamarine-900 { outline-color: #2a5546; }
.bg-aquamarine-950 { background-color: #152a23; }
.text-aquamarine-950 { color: #152a23; }
.border-aquamarine-950 { border-color: #152a23; }
.outline-aquamarine-950 { outline-color: #152a23; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Azure */
.bg-azure-50 { background-color: #fcffff; }
.text-azure-50 { color: #fcffff; }
.border-azure-50 { border-color: #fcffff; }
.outline-azure-50 { outline-color: #fcffff; }
.bg-azure-100 { background-color: #faffff; }
.text-azure-100 { color: #faffff; }
.border-azure-100 { border-color: #faffff; }
.outline-azure-100 { outline-color: #faffff; }
.bg-azure-200 { background-color: #f7ffff; }
.text-azure-200 { color: #f7ffff; }
.border-azure-200 { border-color: #f7ffff; }
.outline-azure-200 { outline-color: #f7ffff; }
.bg-azure-300 { background-color: #f5ffff; }
.text-azure-300 { color: #f5ffff; }
.border-azure-300 { border-color: #f5ffff; }
.outline-azure-300 { outline-color: #f5ffff; }
.bg-azure-400 { background-color: #f2ffff; }
.text-azure-400 { color: #f2ffff; }
.border-azure-400 { border-color: #f2ffff; }
.outline-azure-400 { outline-color: #f2ffff; }
.bg-azure-500 { background-color: #f0ffff; }
.text-azure-500 { color: #f0ffff; }
.border-azure-500 { border-color: #f0ffff; }
.outline-azure-500 { outline-color: #f0ffff; }
.bg-azure-600 { background-color: #c8d4d4; }
.text-azure-600 { color: #c8d4d4; }
.border-azure-600 { border-color: #c8d4d4; }
.outline-azure-600 { outline-color: #c8d4d4; }
.bg-azure-700 { background-color: #a0aaaa; }
.text-azure-700 { color: #a0aaaa; }
.border-azure-700 { border-color: #a0aaaa; }
.outline-azure-700 { outline-color: #a0aaaa; }
.bg-azure-800 { background-color: #787f7f; }
.text-azure-800 { color: #787f7f; }
.border-azure-800 { border-color: #787f7f; }
.outline-azure-800 { outline-color: #787f7f; }
.bg-azure-900 { background-color: #505555; }
.text-azure-900 { color: #505555; }
.border-azure-900 { border-color: #505555; }
.outline-azure-900 { outline-color: #505555; }
.bg-azure-950 { background-color: #282a2a; }
.text-azure-950 { color: #282a2a; }
.border-azure-950 { border-color: #282a2a; }
.outline-azure-950 { outline-color: #282a2a; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Beige */
.bg-beige-50 { background-color: #fdfdf9; }
.text-beige-50 { color: #fdfdf9; }
.border-beige-50 { border-color: #fdfdf9; }
.outline-beige-50 { outline-color: #fdfdf9; }
.bg-beige-100 { background-color: #fbfbf3; }
.text-beige-100 { color: #fbfbf3; }
.border-beige-100 { border-color: #fbfbf3; }
.outline-beige-100 { outline-color: #fbfbf3; }
.bg-beige-200 { background-color: #fafaed; }
.text-beige-200 { color: #fafaed; }
.border-beige-200 { border-color: #fafaed; }
.outline-beige-200 { outline-color: #fafaed; }
.bg-beige-300 { background-color: #f8f8e7; }
.text-beige-300 { color: #f8f8e7; }
.border-beige-300 { border-color: #f8f8e7; }
.outline-beige-300 { outline-color: #f8f8e7; }
.bg-beige-400 { background-color: #f6f6e1; }
.text-beige-400 { color: #f6f6e1; }
.border-beige-400 { border-color: #f6f6e1; }
.outline-beige-400 { outline-color: #f6f6e1; }
.bg-beige-500 { background-color: #f5f5dc; }
.text-beige-500 { color: #f5f5dc; }
.border-beige-500 { border-color: #f5f5dc; }
.outline-beige-500 { outline-color: #f5f5dc; }
.bg-beige-600 { background-color: #ccccb7; }
.text-beige-600 { color: #ccccb7; }
.border-beige-600 { border-color: #ccccb7; }
.outline-beige-600 { outline-color: #ccccb7; }
.bg-beige-700 { background-color: #a3a392; }
.text-beige-700 { color: #a3a392; }
.border-beige-700 { border-color: #a3a392; }
.outline-beige-700 { outline-color: #a3a392; }
.bg-beige-800 { background-color: #7a7a6e; }
.text-beige-800 { color: #7a7a6e; }
.border-beige-800 { border-color: #7a7a6e; }
.outline-beige-800 { outline-color: #7a7a6e; }
.bg-beige-900 { background-color: #515149; }
.text-beige-900 { color: #515149; }
.border-beige-900 { border-color: #515149; }
.outline-beige-900 { outline-color: #515149; }
.bg-beige-950 { background-color: #282824; }
.text-beige-950 { color: #282824; }
.border-beige-950 { border-color: #282824; }
.outline-beige-950 { outline-color: #282824; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Bisque */
.bg-bisque-50 { background-color: #fffaf5; }
.text-bisque-50 { color: #fffaf5; }
.border-bisque-50 { border-color: #fffaf5; }
.outline-bisque-50 { outline-color: #fffaf5; }
.bg-bisque-100 { background-color: #fff6eb; }
.text-bisque-100 { color: #fff6eb; }
.border-bisque-100 { border-color: #fff6eb; }
.outline-bisque-100 { outline-color: #fff6eb; }
.bg-bisque-200 { background-color: #fff1e1; }
.text-bisque-200 { color: #fff1e1; }
.border-bisque-200 { border-color: #fff1e1; }
.outline-bisque-200 { outline-color: #fff1e1; }
.bg-bisque-300 { background-color: #ffedd7; }
.text-bisque-300 { color: #ffedd7; }
.border-bisque-300 { border-color: #ffedd7; }
.outline-bisque-300 { outline-color: #ffedd7; }
.bg-bisque-400 { background-color: #ffe8cd; }
.text-bisque-400 { color: #ffe8cd; }
.border-bisque-400 { border-color: #ffe8cd; }
.outline-bisque-400 { outline-color: #ffe8cd; }
.bg-bisque-500 { background-color: #ffe4c4; }
.text-bisque-500 { color: #ffe4c4; }
.border-bisque-500 { border-color: #ffe4c4; }
.outline-bisque-500 { outline-color: #ffe4c4; }
.bg-bisque-600 { background-color: #d4bea3; }
.text-bisque-600 { color: #d4bea3; }
.border-bisque-600 { border-color: #d4bea3; }
.outline-bisque-600 { outline-color: #d4bea3; }
.bg-bisque-700 { background-color: #aa9882; }
.text-bisque-700 { color: #aa9882; }
.border-bisque-700 { border-color: #aa9882; }
.outline-bisque-700 { outline-color: #aa9882; }
.bg-bisque-800 { background-color: #7f7262; }
.text-bisque-800 { color: #7f7262; }
.border-bisque-800 { border-color: #7f7262; }
.outline-bisque-800 { outline-color: #7f7262; }
.bg-bisque-900 { background-color: #554c41; }
.text-bisque-900 { color: #554c41; }
.border-bisque-900 { border-color: #554c41; }
.outline-bisque-900 { outline-color: #554c41; }
.bg-bisque-950 { background-color: #2a2620; }
.text-bisque-950 { color: #2a2620; }
.border-bisque-950 { border-color: #2a2620; }
.outline-bisque-950 { outline-color: #2a2620; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Black */
.bg-black-50 { background-color: #d4d4d4; }
.text-black-50 { color: #d4d4d4; }
.border-black-50 { border-color: #d4d4d4; }
.outline-black-50 { outline-color: #d4d4d4; }
.bg-black-100 { background-color: #aaaaaa; }
.text-black-100 { color: #aaaaaa; }
.border-black-100 { border-color: #aaaaaa; }
.outline-black-100 { outline-color: #aaaaaa; }
.bg-black-200 { background-color: #7f7f7f; }
.text-black-200 { color: #7f7f7f; }
.border-black-200 { border-color: #7f7f7f; }
.outline-black-200 { outline-color: #7f7f7f; }
.bg-black-300 { background-color: #555555; }
.text-black-300 { color: #555555; }
.border-black-300 { border-color: #555555; }
.outline-black-300 { outline-color: #555555; }
.bg-black-400 { background-color: #2a2a2a; }
.text-black-400 { color: #2a2a2a; }
.border-black-400 { border-color: #2a2a2a; }
.outline-black-400 { outline-color: #2a2a2a; }
.bg-black-500 { background-color: #000000; }
.text-black-500 { color: #000000; }
.border-black-500 { border-color: #000000; }
.outline-black-500 { outline-color: #000000; }
.bg-black-600 { background-color: #000000; }
.text-black-600 { color: #000000; }
.border-black-600 { border-color: #000000; }
.outline-black-600 { outline-color: #000000; }
.bg-black-700 { background-color: #000000; }
.text-black-700 { color: #000000; }
.border-black-700 { border-color: #000000; }
.outline-black-700 { outline-color: #000000; }
.bg-black-800 { background-color: #000000; }
.text-black-800 { color: #000000; }
.border-black-800 { border-color: #000000; }
.outline-black-800 { outline-color: #000000; }
.bg-black-900 { background-color: #000000; }
.text-black-900 { color: #000000; }
.border-black-900 { border-color: #000000; }
.outline-black-900 { outline-color: #000000; }
.bg-black-950 { background-color: #000000; }
.text-black-950 { color: #000000; }
.border-black-950 { border-color: #000000; }
.outline-black-950 { outline-color: #000000; }
/* github: https://github.com/iaseth/html-color-names */
/* color: BlanchedAlmond */
.bg-blanchedalmond-50 { background-color: #fffbf6; }
.text-blanchedalmond-50 { color: #fffbf6; }
.border-blanchedalmond-50 { border-color: #fffbf6; }
.outline-blanchedalmond-50 { outline-color: #fffbf6; }
.bg-blanchedalmond-100 { background-color: #fff8ee; }
.text-blanchedalmond-100 { color: #fff8ee; }
.border-blanchedalmond-100 { border-color: #fff8ee; }
.outline-blanchedalmond-100 { outline-color: #fff8ee; }
.bg-blanchedalmond-200 { background-color: #fff5e6; }
.text-blanchedalmond-200 { color: #fff5e6; }
.border-blanchedalmond-200 { border-color: #fff5e6; }
.outline-blanchedalmond-200 { outline-color: #fff5e6; }
.bg-blanchedalmond-300 { background-color: #fff1dd; }
.text-blanchedalmond-300 { color: #fff1dd; }
.border-blanchedalmond-300 { border-color: #fff1dd; }
.outline-blanchedalmond-300 { outline-color: #fff1dd; }
.bg-blanchedalmond-400 { background-color: #ffeed5; }
.text-blanchedalmond-400 { color: #ffeed5; }
.border-blanchedalmond-400 { border-color: #ffeed5; }
.outline-blanchedalmond-400 { outline-color: #ffeed5; }
.bg-blanchedalmond-500 { background-color: #ffebcd; }
.text-blanchedalmond-500 { color: #ffebcd; }
.border-blanchedalmond-500 { border-color: #ffebcd; }
.outline-blanchedalmond-500 { outline-color: #ffebcd; }
.bg-blanchedalmond-600 { background-color: #d4c3aa; }
.text-blanchedalmond-600 { color: #d4c3aa; }
.border-blanchedalmond-600 { border-color: #d4c3aa; }
.outline-blanchedalmond-600 { outline-color: #d4c3aa; }
.bg-blanchedalmond-700 { background-color: #aa9c88; }
.text-blanchedalmond-700 { color: #aa9c88; }
.border-blanchedalmond-700 { border-color: #aa9c88; }
.outline-blanchedalmond-700 { outline-color: #aa9c88; }
.bg-blanchedalmond-800 { background-color: #7f7566; }
.text-blanchedalmond-800 { color: #7f7566; }
.border-blanchedalmond-800 { border-color: #7f7566; }
.outline-blanchedalmond-800 { outline-color: #7f7566; }
.bg-blanchedalmond-900 { background-color: #554e44; }
.text-blanchedalmond-900 { color: #554e44; }
.border-blanchedalmond-900 { border-color: #554e44; }
.outline-blanchedalmond-900 { outline-color: #554e44; }
.bg-blanchedalmond-950 { background-color: #2a2722; }
.text-blanchedalmond-950 { color: #2a2722; }
.border-blanchedalmond-950 { border-color: #2a2722; }
.outline-blanchedalmond-950 { outline-color: #2a2722; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Blue */
.bg-blue-50 { background-color: #d4d4ff; }
.text-blue-50 { color: #d4d4ff; }
.border-blue-50 { border-color: #d4d4ff; }
.outline-blue-50 { outline-color: #d4d4ff; }
.bg-blue-100 { background-color: #aaaaff; }
.text-blue-100 { color: #aaaaff; }
.border-blue-100 { border-color: #aaaaff; }
.outline-blue-100 { outline-color: #aaaaff; }
.bg-blue-200 { background-color: #7f7fff; }
.text-blue-200 { color: #7f7fff; }
.border-blue-200 { border-color: #7f7fff; }
.outline-blue-200 { outline-color: #7f7fff; }
.bg-blue-300 { background-color: #5555ff; }
.text-blue-300 { color: #5555ff; }
.border-blue-300 { border-color: #5555ff; }
.outline-blue-300 { outline-color: #5555ff; }
.bg-blue-400 { background-color: #2a2aff; }
.text-blue-400 { color: #2a2aff; }
.border-blue-400 { border-color: #2a2aff; }
.outline-blue-400 { outline-color: #2a2aff; }
.bg-blue-500 { background-color: #0000ff; }
.text-blue-500 { color: #0000ff; }
.border-blue-500 { border-color: #0000ff; }
.outline-blue-500 { outline-color: #0000ff; }
.bg-blue-600 { background-color: #0000d4; }
.text-blue-600 { color: #0000d4; }
.border-blue-600 { border-color: #0000d4; }
.outline-blue-600 { outline-color: #0000d4; }
.bg-blue-700 { background-color: #0000aa; }
.text-blue-700 { color: #0000aa; }
.border-blue-700 { border-color: #0000aa; }
.outline-blue-700 { outline-color: #0000aa; }
.bg-blue-800 { background-color: #00007f; }
.text-blue-800 { color: #00007f; }
.border-blue-800 { border-color: #00007f; }
.outline-blue-800 { outline-color: #00007f; }
.bg-blue-900 { background-color: #000055; }
.text-blue-900 { color: #000055; }
.border-blue-900 { border-color: #000055; }
.outline-blue-900 { outline-color: #000055; }
.bg-blue-950 { background-color: #00002a; }
.text-blue-950 { color: #00002a; }
.border-blue-950 { border-color: #00002a; }
.outline-blue-950 { outline-color: #00002a; }
/* github: https://github.com/iaseth/html-color-names */
/* color: BlueViolet */
.bg-blueviolet-50 { background-color: #ebdbfa; }
.text-blueviolet-50 { color: #ebdbfa; }
.border-blueviolet-50 { border-color: #ebdbfa; }
.outline-blueviolet-50 { outline-color: #ebdbfa; }
.bg-blueviolet-100 { background-color: #d8b8f5; }
.text-blueviolet-100 { color: #d8b8f5; }
.border-blueviolet-100 { border-color: #d8b8f5; }
.outline-blueviolet-100 { outline-color: #d8b8f5; }
.bg-blueviolet-200 { background-color: #c495f0; }
.text-blueviolet-200 { color: #c495f0; }
.border-blueviolet-200 { border-color: #c495f0; }
.outline-blueviolet-200 { outline-color: #c495f0; }
.bg-blueviolet-300 { background-color: #b171eb; }
.text-blueviolet-300 { color: #b171eb; }
.border-blueviolet-300 { border-color: #b171eb; }
.outline-blueviolet-300 { outline-color: #b171eb; }
.bg-blueviolet-400 { background-color: #9d4ee6; }
.text-blueviolet-400 { color: #9d4ee6; }
.border-blueviolet-400 { border-color: #9d4ee6; }
.outline-blueviolet-400 { outline-color: #9d4ee6; }
.bg-blueviolet-500 { background-color: #8a2be2; }
.text-blueviolet-500 { color: #8a2be2; }
.border-blueviolet-500 { border-color: #8a2be2; }
.outline-blueviolet-500 { outline-color: #8a2be2; }
.bg-blueviolet-600 { background-color: #7323bc; }
.text-blueviolet-600 { color: #7323bc; }
.border-blueviolet-600 { border-color: #7323bc; }
.outline-blueviolet-600 { outline-color: #7323bc; }
.bg-blueviolet-700 { background-color: #5c1c96; }
.text-blueviolet-700 { color: #5c1c96; }
.border-blueviolet-700 { border-color: #5c1c96; }
.outline-blueviolet-700 { outline-color: #5c1c96; }
.bg-blueviolet-800 { background-color: #451571; }
.text-blueviolet-800 { color: #451571; }
.border-blueviolet-800 { border-color: #451571; }
.outline-blueviolet-800 { outline-color: #451571; }
.bg-blueviolet-900 { background-color: #2e0e4b; }
.text-blueviolet-900 { color: #2e0e4b; }
.border-blueviolet-900 { border-color: #2e0e4b; }
.outline-blueviolet-900 { outline-color: #2e0e4b; }
.bg-blueviolet-950 { background-color: #170725; }
.text-blueviolet-950 { color: #170725; }
.border-blueviolet-950 { border-color: #170725; }
.outline-blueviolet-950 { outline-color: #170725; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Brown */
.bg-brown-50 { background-color: #f0dbdb; }
.text-brown-50 { color: #f0dbdb; }
.border-brown-50 { border-color: #f0dbdb; }
.outline-brown-50 { outline-color: #f0dbdb; }
.bg-brown-100 { background-color: #e1b8b8; }
.text-brown-100 { color: #e1b8b8; }
.border-brown-100 { border-color: #e1b8b8; }
.outline-brown-100 { outline-color: #e1b8b8; }
.bg-brown-200 { background-color: #d29494; }
.text-brown-200 { color: #d29494; }
.border-brown-200 { border-color: #d29494; }
.outline-brown-200 { outline-color: #d29494; }
.bg-brown-300 { background-color: #c37171; }
.text-brown-300 { color: #c37171; }
.border-brown-300 { border-color: #c37171; }
.outline-brown-300 { outline-color: #c37171; }
.bg-brown-400 { background-color: #b44d4d; }
.text-brown-400 { color: #b44d4d; }
.border-brown-400 { border-color: #b44d4d; }
.outline-brown-400 { outline-color: #b44d4d; }
.bg-brown-500 { background-color: #a52a2a; }
.text-brown-500 { color: #a52a2a; }
.border-brown-500 { border-color: #a52a2a; }
.outline-brown-500 { outline-color: #a52a2a; }
.bg-brown-600 { background-color: #892323; }
.text-brown-600 { color: #892323; }
.border-brown-600 { border-color: #892323; }
.outline-brown-600 { outline-color: #892323; }
.bg-brown-700 { background-color: #6e1c1c; }
.text-brown-700 { color: #6e1c1c; }
.border-brown-700 { border-color: #6e1c1c; }
.outline-brown-700 { outline-color: #6e1c1c; }
.bg-brown-800 { background-color: #521515; }
.text-brown-800 { color: #521515; }
.border-brown-800 { border-color: #521515; }
.outline-brown-800 { outline-color: #521515; }
.bg-brown-900 { background-color: #370e0e; }
.text-brown-900 { color: #370e0e; }
.border-brown-900 { border-color: #370e0e; }
.outline-brown-900 { outline-color: #370e0e; }
.bg-brown-950 { background-color: #1b0707; }
.text-brown-950 { color: #1b0707; }
.border-brown-950 { border-color: #1b0707; }
.outline-brown-950 { outline-color: #1b0707; }
/* github: https://github.com/iaseth/html-color-names */
/* color: BurlyWood */
.bg-burlywood-50 { background-color: #f9f3eb; }
.text-burlywood-50 { color: #f9f3eb; }
.border-burlywood-50 { border-color: #f9f3eb; }
.outline-burlywood-50 { outline-color: #f9f3eb; }
.bg-burlywood-100 { background-color: #f4e7d7; }
.text-burlywood-100 { color: #f4e7d7; }
.border-burlywood-100 { border-color: #f4e7d7; }
.outline-burlywood-100 { outline-color: #f4e7d7; }
.bg-burlywood-200 { background-color: #eedbc3; }
.text-burlywood-200 { color: #eedbc3; }
.border-burlywood-200 { border-color: #eedbc3; }
.outline-burlywood-200 { outline-color: #eedbc3; }
.bg-burlywood-300 { background-color: #e9cfaf; }
.text-burlywood-300 { color: #e9cfaf; }
.border-burlywood-300 { border-color: #e9cfaf; }
.outline-burlywood-300 { outline-color: #e9cfaf; }
.bg-burlywood-400 { background-color: #e3c39b; }
.text-burlywood-400 { color: #e3c39b; }
.border-burlywood-400 { border-color: #e3c39b; }
.outline-burlywood-400 { outline-color: #e3c39b; }
.bg-burlywood-500 { background-color: #deb887; }
.text-burlywood-500 { color: #deb887; }
.border-burlywood-500 { border-color: #deb887; }
.outline-burlywood-500 { outline-color: #deb887; }
.bg-burlywood-600 { background-color: #b99970; }
.text-burlywood-600 { color: #b99970; }
.border-burlywood-600 { border-color: #b99970; }
.outline-burlywood-600 { outline-color: #b99970; }
.bg-burlywood-700 { background-color: #947a5a; }
.text-burlywood-700 { color: #947a5a; }
.border-burlywood-700 { border-color: #947a5a; }
.outline-burlywood-700 { outline-color: #947a5a; }
.bg-burlywood-800 { background-color: #6f5c43; }
.text-burlywood-800 { color: #6f5c43; }
.border-burlywood-800 { border-color: #6f5c43; }
.outline-burlywood-800 { outline-color: #6f5c43; }
.bg-burlywood-900 { background-color: #4a3d2d; }
.text-burlywood-900 { color: #4a3d2d; }
.border-burlywood-900 { border-color: #4a3d2d; }
.outline-burlywood-900 { outline-color: #4a3d2d; }
.bg-burlywood-950 { background-color: #251e16; }
.text-burlywood-950 { color: #251e16; }
.border-burlywood-950 { border-color: #251e16; }
.outline-burlywood-950 { outline-color: #251e16; }
/* github: https://github.com/iaseth/html-color-names */
/* color: CadetBlue */
.bg-cadetblue-50 { background-color: #e4eeef; }
.text-cadetblue-50 { color: #e4eeef; }
.border-cadetblue-50 { border-color: #e4eeef; }
.outline-cadetblue-50 { outline-color: #e4eeef; }
.bg-cadetblue-100 { background-color: #c9dedf; }
.text-cadetblue-100 { color: #c9dedf; }
.border-cadetblue-100 { border-color: #c9dedf; }
.outline-cadetblue-100 { outline-color: #c9dedf; }
.bg-cadetblue-200 { background-color: #afcecf; }
.text-cadetblue-200 { color: #afcecf; }
.border-cadetblue-200 { border-color: #afcecf; }
.outline-cadetblue-200 { outline-color: #afcecf; }
.bg-cadetblue-300 { background-color: #94bebf; }
.text-cadetblue-300 { color: #94bebf; }
.border-cadetblue-300 { border-color: #94bebf; }
.outline-cadetblue-300 { outline-color: #94bebf; }
.bg-cadetblue-400 { background-color: #79aeaf; }
.text-cadetblue-400 { color: #79aeaf; }
.border-cadetblue-400 { border-color: #79aeaf; }
.outline-cadetblue-400 { outline-color: #79aeaf; }
.bg-cadetblue-500 { background-color: #5f9ea0; }
.text-cadetblue-500 { color: #5f9ea0; }
.border-cadetblue-500 { border-color: #5f9ea0; }
.outline-cadetblue-500 { outline-color: #5f9ea0; }
.bg-cadetblue-600 { background-color: #4f8385; }
.text-cadetblue-600 { color: #4f8385; }
.border-cadetblue-600 { border-color: #4f8385; }
.outline-cadetblue-600 { outline-color: #4f8385; }
.bg-cadetblue-700 { background-color: #3f696a; }
.text-cadetblue-700 { color: #3f696a; }
.border-cadetblue-700 { border-color: #3f696a; }
.outline-cadetblue-700 { outline-color: #3f696a; }
.bg-cadetblue-800 { background-color: #2f4f50; }
.text-cadetblue-800 { color: #2f4f50; }
.border-cadetblue-800 { border-color: #2f4f50; }
.outline-cadetblue-800 { outline-color: #2f4f50; }
.bg-cadetblue-900 { background-color: #1f3435; }
.text-cadetblue-900 { color: #1f3435; }
.border-cadetblue-900 { border-color: #1f3435; }
.outline-cadetblue-900 { outline-color: #1f3435; }
.bg-cadetblue-950 { background-color: #0f1a1a; }
.text-cadetblue-950 { color: #0f1a1a; }
.border-cadetblue-950 { border-color: #0f1a1a; }
.outline-cadetblue-950 { outline-color: #0f1a1a; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Chartreuse */
.bg-chartreuse-50 { background-color: #e9ffd4; }
.text-chartreuse-50 { color: #e9ffd4; }
.border-chartreuse-50 { border-color: #e9ffd4; }
.outline-chartreuse-50 { outline-color: #e9ffd4; }
.bg-chartreuse-100 { background-color: #d4ffaa; }
.text-chartreuse-100 { color: #d4ffaa; }
.border-chartreuse-100 { border-color: #d4ffaa; }
.outline-chartreuse-100 { outline-color: #d4ffaa; }
.bg-chartreuse-200 { background-color: #bfff7f; }
.text-chartreuse-200 { color: #bfff7f; }
.border-chartreuse-200 { border-color: #bfff7f; }
.outline-chartreuse-200 { outline-color: #bfff7f; }
.bg-chartreuse-300 { background-color: #a9ff55; }
.text-chartreuse-300 { color: #a9ff55; }
.border-chartreuse-300 { border-color: #a9ff55; }
.outline-chartreuse-300 { outline-color: #a9ff55; }
.bg-chartreuse-400 { background-color: #94ff2a; }
.text-chartreuse-400 { color: #94ff2a; }
.border-chartreuse-400 { border-color: #94ff2a; }
.outline-chartreuse-400 { outline-color: #94ff2a; }
.bg-chartreuse-500 { background-color: #7fff00; }
.text-chartreuse-500 { color: #7fff00; }
.border-chartreuse-500 { border-color: #7fff00; }
.outline-chartreuse-500 { outline-color: #7fff00; }
.bg-chartreuse-600 { background-color: #69d400; }
.text-chartreuse-600 { color: #69d400; }
.border-chartreuse-600 { border-color: #69d400; }
.outline-chartreuse-600 { outline-color: #69d400; }
.bg-chartreuse-700 { background-color: #54aa00; }
.text-chartreuse-700 { color: #54aa00; }
.border-chartreuse-700 { border-color: #54aa00; }
.outline-chartreuse-700 { outline-color: #54aa00; }
.bg-chartreuse-800 { background-color: #3f7f00; }
.text-chartreuse-800 { color: #3f7f00; }
.border-chartreuse-800 { border-color: #3f7f00; }
.outline-chartreuse-800 { outline-color: #3f7f00; }
.bg-chartreuse-900 { background-color: #2a5500; }
.text-chartreuse-900 { color: #2a5500; }
.border-chartreuse-900 { border-color: #2a5500; }
.outline-chartreuse-900 { outline-color: #2a5500; }
.bg-chartreuse-950 { background-color: #152a00; }
.text-chartreuse-950 { color: #152a00; }
.border-chartreuse-950 { border-color: #152a00; }
.outline-chartreuse-950 { outline-color: #152a00; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Chocolate */
.bg-chocolate-50 { background-color: #f7e6d9; }
.text-chocolate-50 { color: #f7e6d9; }
.border-chocolate-50 { border-color: #f7e6d9; }
.outline-chocolate-50 { outline-color: #f7e6d9; }
.bg-chocolate-100 { background-color: #f0cdb4; }
.text-chocolate-100 { color: #f0cdb4; }
.border-chocolate-100 { border-color: #f0cdb4; }
.outline-chocolate-100 { outline-color: #f0cdb4; }
.bg-chocolate-200 { background-color: #e8b48e; }
.text-chocolate-200 { color: #e8b48e; }
.border-chocolate-200 { border-color: #e8b48e; }
.outline-chocolate-200 { outline-color: #e8b48e; }
.bg-chocolate-300 { background-color: #e19b69; }
.text-chocolate-300 { color: #e19b69; }
.border-chocolate-300 { border-color: #e19b69; }
.outline-chocolate-300 { outline-color: #e19b69; }
.bg-chocolate-400 { background-color: #d98243; }
.text-chocolate-400 { color: #d98243; }
.border-chocolate-400 { border-color: #d98243; }
.outline-chocolate-400 { outline-color: #d98243; }
.bg-chocolate-500 { background-color: #d2691e; }
.text-chocolate-500 { color: #d2691e; }
.border-chocolate-500 { border-color: #d2691e; }
.outline-chocolate-500 { outline-color: #d2691e; }
.bg-chocolate-600 { background-color: #af5719; }
.text-chocolate-600 { color: #af5719; }
.border-chocolate-600 { border-color: #af5719; }
.outline-chocolate-600 { outline-color: #af5719; }
.bg-chocolate-700 { background-color: #8c4614; }
.text-chocolate-700 { color: #8c4614; }
.border-chocolate-700 { border-color: #8c4614; }
.outline-chocolate-700 { outline-color: #8c4614; }
.bg-chocolate-800 { background-color: #69340f; }
.text-chocolate-800 { color: #69340f; }
.border-chocolate-800 { border-color: #69340f; }
.outline-chocolate-800 { outline-color: #69340f; }
.bg-chocolate-900 { background-color: #46230a; }
.text-chocolate-900 { color: #46230a; }
.border-chocolate-900 { border-color: #46230a; }
.outline-chocolate-900 { outline-color: #46230a; }
.bg-chocolate-950 { background-color: #231105; }
.text-chocolate-950 { color: #231105; }
.border-chocolate-950 { border-color: #231105; }
.outline-chocolate-950 { outline-color: #231105; }
/* github: https://github.com/iaseth/html-color-names */
/* color: Coral */
.bg-coral-50 { background-color: #ffe9e1; }
.text-coral-50 { color: #ffe9e1; }
.border-coral-50 { border-color: #ffe9e1; }
.outline-coral-50 { outline-color: #ffe9e1; }
.bg-coral-100 { background-color: #ffd4c4; }
.text-coral-100 { color: #ffd4c4; }
.border-coral-100 { border-color: #ffd4c4; }
.outline-coral-100 { outline-color: #ffd4c4; }
.bg-coral-200 { background-color: #ffbfa7; }
.text-coral-200 { color: #ffbfa7; }
.border-coral-200 { border-color: #ffbfa7; }
.outline-coral-200 { outline-color: #ffbfa7; }
.bg-coral-300 { background-color: #ffa98a; }
.text-coral-300 { color: #ffa98a; }
.border-coral-300 { border-color: #ffa98a; }
.outline-coral-300 { outline-color: #ffa98a; }
.bg-coral-400 { background-color: #ff946d; }
.text-coral-400 { color: #ff946d; }
.border-coral-400 { border-color: #ff946d; }
.outline-coral-400 { outline-color: #ff946d; }
.bg-coral-500 { background-color: #ff7f50; }
.text-coral-500 { color: #ff7f50; }
.border-coral-500 { border-color: #ff7f50; }
.outline-coral-500 { outline-color: #ff7f50; }
.bg-coral-600 { background-color: #d46942; }
.text-coral-600 { color: #d46942; }
.border-coral-600 { border-color: #d46942; }
.outline-coral-600 { outline-color: #d46942; }
.bg-coral-700 { background-color: #aa5435; }
.text-coral-700 { color: #aa5435; }
.border-coral-700 { border-color: #aa5435; }
.outline-coral-700 { outline-color: #aa5435; }
.bg-coral-800 { background-color: #7f3f28; }
.text-coral-800 { color: #7f3f28; }
.border-coral-800 { border-color: #7f3f28; }
.outline-coral-800 { outline-color: #7f3f28; }
.bg-coral-900 { background-color: #552a1a; }
.text-coral-900 { color: #552a1a; }
.border-coral-900 { border-color: #552a1a; }
.outline-coral-900 { outline-color: #552a1a; }
.bg-coral-950 { background-color: #2a150d; }