@thirstie/ecomm-vue 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,904 @@
1
+ .th-fouc-block {
2
+ visibility: visible;
3
+ opacity: 0;
4
+ display: none;
5
+ }
6
+ th-icon {
7
+ vertical-align:middle;
8
+ }
9
+
10
+ /* Display */
11
+ .flex {
12
+ display: flex;
13
+ }
14
+ .grid {
15
+ display: grid;
16
+ }
17
+ .inline-block {
18
+ display: inline-block;
19
+ }
20
+ .inline-flex {
21
+ display: inline-flex;
22
+ }
23
+ .hidden {
24
+ display: none;
25
+ }
26
+ .block {
27
+ display: block;
28
+ }
29
+
30
+ /* Position */
31
+ .relative {
32
+ position: relative;
33
+ }
34
+ .absolute {
35
+ position: absolute;
36
+ }
37
+ .fixed {
38
+ position: fixed;
39
+ }
40
+ .sticky {
41
+ position: sticky;
42
+ }
43
+
44
+ .top-0 {
45
+ top: 0;
46
+ }
47
+ .left-0 {
48
+ left: 0;
49
+ }
50
+ .right-0 {
51
+ right: 0;
52
+ }
53
+ .bottom-0 {
54
+ bottom: 0;
55
+ }
56
+ .bottom-6 {
57
+ bottom: 24px;
58
+ }
59
+
60
+ /* Flexbox & Grid */
61
+ .justify-center {
62
+ justify-content: center;
63
+ }
64
+ .justify-start {
65
+ justify-content: flex-start;
66
+ }
67
+ .justify-end {
68
+ justify-content: flex-end;
69
+ }
70
+ .justify-between {
71
+ justify-content: space-between;
72
+ }
73
+ .justify-around {
74
+ justify-content: space-around;
75
+ }
76
+
77
+ .items-center {
78
+ align-items: center;
79
+ }
80
+ .items-start {
81
+ align-items: flex-start;
82
+ }
83
+ .items-end {
84
+ align-items: flex-end;
85
+ }
86
+
87
+ .flex-auto {
88
+ flex: 1 1 auto;
89
+ }
90
+
91
+ .flex-wrap {
92
+ flex-wrap: wrap;
93
+ }
94
+
95
+ .flex-grow {
96
+ flex-grow: 1;
97
+ }
98
+
99
+ .flex-row {
100
+ flex-flow: row nowrap;
101
+ }
102
+ .flex-col {
103
+ flex-flow: column nowrap;
104
+ }
105
+
106
+ .grid-cols-1 {
107
+ grid-template-columns: repeat(1, minmax(0, 1fr));
108
+ }
109
+ .grid-cols-2 {
110
+ grid-template-columns: repeat(2, minmax(0, 1fr));
111
+ }
112
+ .grid-cols-3 {
113
+ grid-template-columns: repeat(3, minmax(0, 1fr));
114
+ }
115
+ .grid-cols-5 {
116
+ grid-template-columns: repeat(5, minmax(0, 1fr));
117
+ }
118
+
119
+ .grid-cols-2-5 {
120
+ grid-template-columns: 2.5fr 2.5fr;
121
+ }
122
+
123
+ .grid-cols-4-1 {
124
+ grid-template-columns: 4fr 1fr;
125
+ }
126
+
127
+ .grid-rows-1 {
128
+ grid-template-rows: repeat(1, minmax(0, 1fr));
129
+ }
130
+ .grid-rows-2 {
131
+ grid-template-rows: repeat(2, minmax(0, 1fr));
132
+ }
133
+ .grid-rows-3 {
134
+ grid-template-rows: repeat(3, minmax(0, 1fr));
135
+ }
136
+ .grid-rows-5 {
137
+ grid-template-rows: repeat(5, minmax(0, 1fr));
138
+ }
139
+ .grid-rows-1-auto {
140
+ grid-template-rows: auto;
141
+ }
142
+ .grid-rows-2-auto {
143
+ grid-template-rows: auto auto;
144
+ }
145
+ .grid-rows-3-auto {
146
+ grid-template-rows: auto auto auto;
147
+ }
148
+
149
+ .grid-rows-4-auto-4 {
150
+ grid-template-rows: 4rem auto 4rem;
151
+ }
152
+
153
+ /* Width & Height */
154
+ .w-full {
155
+ width: 100%;
156
+ }
157
+ .w-screen {
158
+ width: 100vw;
159
+ }
160
+ .w-auto {
161
+ width: auto;
162
+ }
163
+
164
+ .h-full {
165
+ height: 100%;
166
+ }
167
+ .h-screen {
168
+ height: 100vh;
169
+ }
170
+ .h-auto {
171
+ height: auto;
172
+ }
173
+
174
+ /* Spacing */
175
+ .p-0 {
176
+ padding: 0;
177
+ }
178
+ .p-1 {
179
+ padding: 0.25rem;
180
+ }
181
+ .p-2 {
182
+ padding: 0.5rem;
183
+ }
184
+ .p-3 {
185
+ padding: 0.75rem;
186
+ }
187
+ .p-4 {
188
+ padding: 1rem;
189
+ }
190
+
191
+ .p-5 {
192
+ padding: 1.25rem;
193
+ }
194
+
195
+ .px-0 {
196
+ padding-left: 0;
197
+ padding-right: 0;
198
+ }
199
+ .py-0 {
200
+ padding-top: 0;
201
+ padding-bottom: 0;
202
+ }
203
+
204
+ .px-3 {
205
+ padding-left: 0.75rem;
206
+ padding-right: 0.75rem;
207
+ }
208
+ .py-3 {
209
+ padding-top: 0.75rem;
210
+ padding-bottom: 0.75rem;
211
+ }
212
+
213
+ .px-4 {
214
+ padding-left: 1rem;
215
+ padding-right: 1rem;
216
+ }
217
+ .py-4 {
218
+ padding-top: 1rem;
219
+ padding-bottom: 1rem;
220
+ }
221
+
222
+ .px-auto {
223
+ padding-left: auto;
224
+ padding-right: auto;
225
+ }
226
+ .py-auto {
227
+ padding-top: auto;
228
+ padding-bottom: auto;
229
+ }
230
+
231
+ .mx-auto {
232
+ margin-left: auto;
233
+ margin-right: auto;
234
+ }
235
+ .my-auto {
236
+ margin-top: auto;
237
+ margin-bottom: auto;
238
+ }
239
+
240
+ .mx-0 {
241
+ margin-left: 0;
242
+ margin-right: 0;
243
+ }
244
+ .my-0 {
245
+ margin-top: 0;
246
+ margin-bottom: 0;
247
+ }
248
+
249
+ .mx-3 {
250
+ margin-left: 0.75rem;
251
+ margin-right: 0.75rem;
252
+ }
253
+ .my-3 {
254
+ margin-top: 0.75rem;
255
+ margin-bottom: 0.75rem;
256
+ }
257
+
258
+ .mx-4 {
259
+ margin-left: 1rem;
260
+ margin-right: 1rem;
261
+ }
262
+ .my-4 {
263
+ margin-top: 1rem;
264
+ margin-bottom: 1rem;
265
+ }
266
+
267
+ .m-0 {
268
+ margin: 0;
269
+ }
270
+ .m-1 {
271
+ margin: 0.25rem;
272
+ }
273
+ .m-2 {
274
+ margin: 0.5rem;
275
+ }
276
+ .m-4 {
277
+ margin: 1rem;
278
+ }
279
+ .mt-4 {
280
+ margin-top: 1rem;
281
+ }
282
+ .mr-2 {
283
+ margin-right: 0.5rem;
284
+ }
285
+ .mb-2 {
286
+ margin-bottom: 0.5rem;
287
+ }
288
+ .mb-4 {
289
+ margin-bottom: 1rem;
290
+ }
291
+ .mb-6 {
292
+ margin-bottom: 1.5rem;
293
+ }
294
+ .ml-2 {
295
+ margin-left: 0.5rem;
296
+ }
297
+ .ml-6 {
298
+ margin-left: 1.5rem;
299
+ }
300
+ .ml-15 {
301
+ margin-left: 60px;
302
+ }
303
+ .mt-15 {
304
+ margin-top: 60px;
305
+ }
306
+ .mr-20 {
307
+ margin-right: 80px;
308
+ }
309
+ .mr-10 {
310
+ margin-right: 40px;
311
+ }
312
+
313
+ .gap-0 {
314
+ gap: 0;
315
+ }
316
+ .gap-1 {
317
+ gap: 0.25rem;
318
+ }
319
+ .gap-2 {
320
+ gap: 0.5rem;
321
+ }
322
+ .gap-3 {
323
+ gap: 0.75rem;
324
+ }
325
+ .gap-4 {
326
+ gap: 1rem;
327
+ }
328
+ .gap-6 {
329
+ gap: 24px;
330
+ }
331
+
332
+ .gap-8 {
333
+ gap: 32px;
334
+ }
335
+
336
+ .gap-10 {
337
+ gap: 40px;
338
+ }
339
+
340
+ .gap-12 {
341
+ gap: 48px;
342
+ }
343
+
344
+ .gap-20 {
345
+ gap: 80px;
346
+ }
347
+
348
+ .gap-24 {
349
+ gap: 96px;
350
+ }
351
+
352
+ .gap-30 {
353
+ gap: 120px;
354
+ }
355
+
356
+ .gap-40 {
357
+ gap: 160px;
358
+ }
359
+
360
+ .gap--1 {
361
+ gap: -4px;
362
+ }
363
+
364
+ /* Borders & Radius */
365
+ .rounded-md {
366
+ border-radius: 0.125rem;
367
+ }
368
+ .rounded-md {
369
+ border-radius: 0.375rem;
370
+ }
371
+ .rounded-lg {
372
+ border-radius: 0.5rem;
373
+ }
374
+ .border {
375
+ border-width: 1px;
376
+ }
377
+ .border-2 {
378
+ border-width: 2px;
379
+ }
380
+
381
+ /* Typography */
382
+
383
+ .text-sm {
384
+ font-size: 0.875rem;
385
+ }
386
+ .text-base {
387
+ font-size: 1rem;
388
+ }
389
+ .text-lg {
390
+ font-size: 1.125rem;
391
+ }
392
+
393
+ .font-bold {
394
+ font-weight: 700;
395
+ }
396
+ .font-medium {
397
+ font-weight: 500;
398
+ }
399
+ .font-light {
400
+ font-weight: 400;
401
+ }
402
+ .font-xlight {
403
+ font-weight: 300;
404
+ }
405
+
406
+ .leading-tight {
407
+ line-height: 1.25;
408
+ }
409
+ .leading-normal {
410
+ line-height: 1.5;
411
+ }
412
+ .leading-loose {
413
+ line-height: 2;
414
+ }
415
+
416
+ /* Z-Index */
417
+ .z-auto {
418
+ z-index: auto;
419
+ }
420
+ .z-0 {
421
+ z-index: 0;
422
+ }
423
+ .z-10 {
424
+ z-index: 10;
425
+ }
426
+ .z-50 {
427
+ z-index: 50;
428
+ }
429
+
430
+ .cursor-default {
431
+ cursor: default;
432
+ }
433
+ .cursor-auto {
434
+ cursor: auto;
435
+ }
436
+ .cursor-pointer {
437
+ cursor: pointer;
438
+ }
439
+ .cursor-none {
440
+ cursor: none;
441
+ }
442
+
443
+ .underline {
444
+ text-decoration-line: underline;
445
+ }
446
+ .overline {
447
+ text-decoration-line: overline;
448
+ }
449
+ .line-through {
450
+ text-decoration-line: line-through;
451
+ }
452
+ .no-underline {
453
+ text-decoration-line: none;
454
+ }
455
+
456
+ /* Custom styles */
457
+ .th-font-28 {
458
+ font-size: 28px;
459
+ font-style: normal;
460
+ line-height: normal;
461
+ letter-spacing: -0.28px;
462
+ }
463
+
464
+ .th-font-24 {
465
+ font-size: 24px;
466
+ font-style: normal;
467
+ line-height: normal;
468
+ letter-spacing: -0.24px;
469
+ }
470
+
471
+ .th-font-22 {
472
+ font-size: 22px;
473
+ font-style: normal;
474
+ line-height: normal;
475
+ letter-spacing: -0.22px;
476
+ }
477
+
478
+ .th-font-20 {
479
+ font-size: 20px;
480
+ font-style: normal;
481
+ line-height: normal;
482
+ }
483
+
484
+ .th-font-18 {
485
+ font-size: 18px;
486
+ font-style: normal;
487
+ line-height: normal;
488
+ }
489
+
490
+ .th-font-16 {
491
+ font-size: 16px;
492
+ font-style: normal;
493
+ line-height: normal;
494
+ }
495
+
496
+ .th-font-14 {
497
+ font-size: 14px;
498
+ font-style: normal;
499
+ line-height: 1.25rem;
500
+ }
501
+
502
+ .th-font-12 {
503
+ font-size: 12px;
504
+ font-style: normal;
505
+ line-height: normal;
506
+ }
507
+
508
+ .th-font-10 {
509
+ font-size: 10px;
510
+ font-style: normal;
511
+ line-height: normal;
512
+ }
513
+
514
+ .border-0 {
515
+ border-width: 0px;
516
+ }
517
+ .border-2 {
518
+ border-width: 2px;
519
+ }
520
+ .border-4 {
521
+ border-width: 4px;
522
+ }
523
+
524
+ /* xs */
525
+ @media (max-width: 390px) {
526
+ .xs\:justify-center {
527
+ justify-content: center !important;
528
+ }
529
+ .xs\:text-center {
530
+ text-align: center !important;
531
+ }
532
+ .xs\:w-screen {
533
+ width: 100vw !important;
534
+ }
535
+ .xs\:h-screen {
536
+ height: 100vh !important;
537
+ }
538
+ }
539
+
540
+
541
+ /* sm */
542
+ @media (max-width: 640px) {
543
+ input {
544
+ font-size: 16px !important;
545
+ }
546
+ .sm\:justify-center {
547
+ justify-content: center !important;
548
+ }
549
+ .sm\:text-center {
550
+ text-align: center !important;
551
+ }
552
+ .sm\:block {
553
+ display: block !important;
554
+ }
555
+ .sm\:flex {
556
+ display: flex !important;
557
+ }
558
+ .sm\:flex-col {
559
+ flex-flow: column nowrap !important;
560
+ }
561
+ .sm\:flex-row {
562
+ flex-flow: row nowrap !important;
563
+ }
564
+ .sm\:items-center {
565
+ align-items: center !important;
566
+ }
567
+ .sm\:w-full {
568
+ width: 100% !important;
569
+ }
570
+ .sm\:h-full {
571
+ height: 100% !important;
572
+ }
573
+ .sm\:w-auto {
574
+ width: auto !important;
575
+ }
576
+ .sm\:h-auto {
577
+ height: auto !important;
578
+ }
579
+ .sm\:w-screen {
580
+ width: 100vw !important;
581
+ }
582
+ .sm\:h-screen {
583
+ height: 100vh !important;
584
+ }
585
+ .sm\:p-0 {
586
+ padding: 0 !important;
587
+ }
588
+ }
589
+
590
+ /* md */
591
+ @media screen and (max-width: 768px) {
592
+ .md\:justify-center {
593
+ justify-content: center !important;
594
+ }
595
+ .md\:text-center {
596
+ text-align: center !important;
597
+ }
598
+ .md\:hidden {
599
+ display: none !important;
600
+ }
601
+ .md\:block {
602
+ display: block !important;
603
+ }
604
+ .md\:flex {
605
+ display: flex !important;
606
+ }
607
+ .md\:flex-col {
608
+ flex-flow: column nowrap !important;
609
+ }
610
+ .md\:flex-row {
611
+ flex-flow: row nowrap !important;
612
+ }
613
+ .md\:items-center {
614
+ align-items: center !important;
615
+ }
616
+ .md\:w-full {
617
+ width: 100% !important;
618
+ }
619
+ .md\:h-full {
620
+ height: 100% !important;
621
+ }
622
+ .md\:w-auto {
623
+ width: auto !important;
624
+ }
625
+ .md\:h-auto {
626
+ height: auto !important;
627
+ }
628
+ .md\:w-screen {
629
+ width: 100vw !important;
630
+ }
631
+ .md\:h-screen {
632
+ height: 100vh !important;
633
+ }
634
+ .md\:p-0 {
635
+ padding: 0 !important;
636
+ }
637
+ .md\:grid {
638
+ display: grid !important;
639
+ }
640
+ .md\:grid-cols-1 {
641
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
642
+ }
643
+ .md\:grid-cols-2 {
644
+ grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
645
+ }
646
+ .md\:grid-cols-3 {
647
+ grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
648
+ }
649
+ .md\:grid-cols-5 {
650
+ grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
651
+ }
652
+
653
+ .md\:grid-rows-1 {
654
+ grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
655
+ }
656
+ .md\:grid-rows-2 {
657
+ grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
658
+ }
659
+ .md\:grid-rows-3 {
660
+ grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
661
+ }
662
+ .md\:grid-rows-5 {
663
+ grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
664
+ }
665
+ .md\:grid-rows-1-auto {
666
+ grid-template-rows: auto !important;
667
+ }
668
+ .md\:grid-rows-2-auto {
669
+ grid-template-rows: auto auto !important;
670
+ }
671
+ .md\:grid-rows-3-auto {
672
+ grid-template-rows: auto auto auto !important;
673
+ }
674
+
675
+ .md\:ml-0 {
676
+ margin-left: 0 !important;
677
+ }
678
+
679
+ .md\:ml-6 {
680
+ margin-left: 1.5rem !important;
681
+ }
682
+ .md\:ml-15 {
683
+ margin-left: 60px !important;
684
+ }
685
+ .md:\mx-0 {
686
+ margin-left: 0 !important;
687
+ margin-right: 0 !important;
688
+ }
689
+ .md\:mt-6 {
690
+ margin-top: 24px !important;
691
+ }
692
+
693
+ .md\:p-4 {
694
+ padding: 1rem !important;
695
+ }
696
+
697
+ .md\:th-font-16 {
698
+ font-size: 16px !important;
699
+ font-style: normal !important;
700
+ line-height: normal !important;
701
+ }
702
+ }
703
+
704
+ /* lg */
705
+ @media (min-width: 1024px) {
706
+ .lg\:justify-center {
707
+ justify-content: center !important;
708
+ }
709
+ .lg\:justify-between {
710
+ justify-content: space-between !important;
711
+ }
712
+ .lg\:text-center {
713
+ text-align: center !important;
714
+ }
715
+ .lg\:hidden {
716
+ display: none !important;
717
+ }
718
+ .lg\:block {
719
+ display: block !important;
720
+ }
721
+ .lg\:flex {
722
+ display: flex !important;
723
+ }
724
+ .lg\:flex-col {
725
+ flex-flow: column nowrap !important;
726
+ }
727
+ .lg\:flex-row {
728
+ flex-flow: row nowrap !important;
729
+ }
730
+ .lg\:items-center {
731
+ align-items: center !important;
732
+ }
733
+ .lg\:w-full {
734
+ width: 100% !important;
735
+ }
736
+ .lg\:h-full {
737
+ height: 100% !important;
738
+ }
739
+ .lg\:w-auto {
740
+ width: auto !important;
741
+ }
742
+ .lg\:h-auto {
743
+ height: auto !important;
744
+ }
745
+ .lg\:w-screen {
746
+ width: 100vw !important;
747
+ }
748
+ .lg\:h-screen {
749
+ height: 100vh !important;
750
+ }
751
+ .lg\:p-0 {
752
+ padding: 0 !important;
753
+ }
754
+ .lg\:grid {
755
+ display: grid !important;
756
+ }
757
+ .lg\:grid-cols-1 {
758
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
759
+ }
760
+ .lg\:grid-cols-2 {
761
+ grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
762
+ }
763
+ .lg\:grid-cols-3 {
764
+ grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
765
+ }
766
+ .lg\:grid-cols-5 {
767
+ grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
768
+ }
769
+
770
+ .lg\:grid-rows-1 {
771
+ grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
772
+ }
773
+ .lg\:grid-rows-2 {
774
+ grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
775
+ }
776
+ .lg\:grid-rows-3 {
777
+ grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
778
+ }
779
+ .lg\:grid-rows-5 {
780
+ grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
781
+ }
782
+ .lg\:grid-rows-1-auto {
783
+ grid-template-rows: auto !important;
784
+ }
785
+ .lg\:grid-rows-2-auto {
786
+ grid-template-rows: auto auto !important;
787
+ }
788
+ .lg\:grid-rows-3-auto {
789
+ grid-template-rows: auto auto auto !important;
790
+ }
791
+
792
+ .lg\:ml-0 {
793
+ margin-left: 0 !important;
794
+ }
795
+
796
+ .lg\:ml-6 {
797
+ margin-left: 1.5rem !important;
798
+ }
799
+ .lg\:ml-15 {
800
+ margin-left: 60px !important;
801
+ }
802
+ .lg:\mx-auto {
803
+ margin-left: auto !important;
804
+ margin-right: auto !important;
805
+ }
806
+ .lg\:mt-7 {
807
+ margin-top: 28px !important;
808
+ }
809
+ .lg\mx-15 {
810
+ margin-left: 60px !important;
811
+ margin-right: 60px !important;
812
+ }
813
+
814
+ .lg\:p-6 {
815
+ padding: 24px !important;
816
+ }
817
+
818
+ .lg\:gap-5 {
819
+ gap: 20px !important;
820
+ }
821
+ }
822
+
823
+ /* xl */
824
+ @media (min-width: 1280px) {
825
+ .xl\:justify-center {
826
+ justify-content: center !important;
827
+ }
828
+ .xl\:text-center {
829
+ text-align: center !important;
830
+ }
831
+ }
832
+
833
+ /* Background and Text Color Classes */
834
+ .bg-white { background-color: var(--th-c-white); }
835
+ .text-white { color: var(--th-c-white); }
836
+
837
+ .bg-light { background-color: var(--th-c-light); }
838
+ .text-light { color: var(--th-c-light); }
839
+
840
+ .bg-greysLightestGrey { background-color: var(--th-c-greysLightestGrey); }
841
+ .text-greysLightestGrey { color: var(--th-c-greysLightestGrey); }
842
+
843
+ .bg-greysLightGrey { background-color: var(--th-c-greysLightGrey); }
844
+ .text-greysLightGrey { color: var(--th-c-greysLightGrey); }
845
+
846
+ .bg-greysMediumLightGrey { background-color: var(--th-c-greysMediumLightGrey); }
847
+ .text-greysMediumLightGrey { color: var(--th-c-greysMediumLightGrey); }
848
+
849
+ .bg-greysMediumDarkGrey { background-color: var(--th-c-greysMediumDarkGrey); }
850
+ .text-greysMediumDarkGrey { color: var(--th-c-greysMediumDarkGrey); }
851
+
852
+ .bg-greysDarkGrey { background-color: var(--th-c-greysDarkGrey); }
853
+ .text-greysDarkGrey { color: var(--th-c-greysDarkGrey); }
854
+
855
+ .bg-dark { background-color: var(--th-c-dark); }
856
+ .text-dark { color: var(--th-c-dark); }
857
+
858
+ .bg-black { background-color: var(--th-c-black); }
859
+ .text-black { color: var(--th-c-black); }
860
+
861
+ .bg-greysDisabledGrey { background-color: var(--th-c-greysDisabledGrey); }
862
+ .text-greysDisabledGrey { color: var(--th-c-greysDisabledGrey); }
863
+
864
+ .bg-black-Blur { background-color: var(--th-c-black-Blur); }
865
+ .text-black-Blur { color: var(--th-c-black-Blur); }
866
+
867
+ .bg-blackLight-Blur { background-color: var(--th-c-blackLight-Blur); }
868
+ .text-blackLight-Blur { color: var(--th-c-blackLight-Blur); }
869
+
870
+ .bg-blackLightest-Blur { background-color: var(--th-c-blackLightest-Blur); }
871
+ .text-blackLightest-Blur { color: var(--th-c-blackLightest-Blur); }
872
+
873
+ .bg-greysMediumDarkGrey-Blur { background-color: var(--th-c-greysMediumDarkGrey-Blur); }
874
+ .text-greysMediumDarkGrey-Blur { color: var(--th-c-greysMediumDarkGrey-Blur); }
875
+
876
+ .bg-alertWrongPrimary { background-color: var(--th-c-alertWrongPrimary); }
877
+ .text-alertWrongPrimary { color: var(--th-c-alertWrongPrimary); }
878
+
879
+ .bg-alertWrongTint { background-color: var(--th-c-alertWrongTint); }
880
+ .text-alertWrongTint { color: var(--th-c-alertWrongTint); }
881
+
882
+ .bg-alertSuccessPrimary { background-color: var(--th-c-alertSuccessPrimary); }
883
+ .text-alertSuccessPrimary { color: var(--th-c-alertSuccessPrimary); }
884
+
885
+ .bg-alertSuccessTint { background-color: var(--th-c-alertSuccessTint); }
886
+ .text-alertSuccessTint { color: var(--th-c-alertSuccessTint); }
887
+
888
+ .bg-alertWarningPrimary { background-color: var(--th-c-alertWarningPrimary); }
889
+ .text-alertWarningPrimary { color: var(--th-c-alertWarningPrimary); }
890
+
891
+ .bg-alertWarningTint { background-color: var(--th-c-alertWarningTint); }
892
+ .text-alertWarningTint { color: var(--th-c-alertWarningTint); }
893
+
894
+ .bg-lavendarIndigoLight { background-color: var(--th-c-lavendarIndigoLight); }
895
+ .text-lavendarIndigoLight { color: var(--th-c-lavendarIndigoLight); }
896
+
897
+ .bg-fuchsia { background-color: var(--th-c-fuchsia); }
898
+ .text-fuchsia { color: var(--th-c-fuchsia); }
899
+
900
+ .bg-paleYellow { background-color: var(--th-c-paleYellow); }
901
+ .text-paleYellow { color: var(--th-c-paleYellow); }
902
+
903
+ .bg-vibrantBlue { background-color: var(--th-c-vibrantBlue); }
904
+ .text-vibrantBlue { color: var(--th-c-vibrantBlue); }