@itcase/ui 1.8.103 → 1.8.105

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,1594 @@
1
+ .align-items {
2
+ @each $val in stretch, flex-start, flex-end, center, baseline, auto {
3
+ &_(val) {
4
+ align-items: $(val);
5
+ }
6
+ }
7
+ }
8
+ .align-self {
9
+ @each $val in stretch, flex-start, flex-end, center, baseline, auto {
10
+ &_$(val) {
11
+ align-self: $(val);
12
+ }
13
+ }
14
+ }
15
+ .align {
16
+ &_center {
17
+ margin: 0 auto;
18
+ }
19
+ }
20
+ %align-horizontal-reverse {
21
+ display: flex;
22
+ flex-direction: row-reverse;
23
+ }
24
+ .align {
25
+ &_horizontal-reverse {
26
+ display: flex;
27
+ flex-direction: row-reverse;
28
+ @extend %align-horizontal-reverse;
29
+ &-top {
30
+ &-left {
31
+ align-items: flex-start;
32
+ @extend %align-horizontal-reverse;
33
+ }
34
+ &-center {
35
+ text-align: center;
36
+ justify-content: center;
37
+ align-items: flex-start;
38
+ @extend %align-horizontal-reverse;
39
+ }
40
+ &-right {
41
+ text-align: right;
42
+ justify-content: flex-end;
43
+ align-items: flex-start;
44
+ @extend %align-horizontal-reverse;
45
+ }
46
+ }
47
+ &-left {
48
+ align-items: center;
49
+ @extend %align-horizontal-reverse;
50
+ }
51
+ &-center {
52
+ text-align: center;
53
+ justify-content: center;
54
+ align-items: center;
55
+ @extend %align-horizontal-reverse;
56
+ }
57
+ &-right {
58
+ text-align: right;
59
+ justify-content: flex-end;
60
+ align-items: center;
61
+ @extend %align-horizontal-reverse;
62
+ }
63
+ &-bottom {
64
+ &-left {
65
+ flex-direction: row;
66
+ align-items: flex-end;
67
+ @extend %align-horizontal-reverse;
68
+ }
69
+ &-center {
70
+ text-align: center;
71
+ justify-content: center;
72
+ align-items: flex-end;
73
+ @extend %align-horizontal-reverse;
74
+ }
75
+ &-right {
76
+ text-align: right;
77
+ justify-content: flex-end;
78
+ align-items: flex-end;
79
+ @extend %align-horizontal-reverse;
80
+ }
81
+ }
82
+ }
83
+ }
84
+ %align-horizontal {
85
+ display: flex;
86
+ flex-direction: row;
87
+ }
88
+ .align {
89
+ &_horizontal {
90
+ &_top {
91
+ align-items: flex-start;
92
+ @extend %align-horizontal;
93
+ &-left {
94
+ align-items: flex-start;
95
+ @extend %align-horizontal;
96
+ }
97
+ &-center {
98
+ text-align: center;
99
+ justify-content: center;
100
+ align-items: flex-start;
101
+ @extend %align-horizontal;
102
+ }
103
+ &-right {
104
+ text-align: right;
105
+ justify-content: flex-end;
106
+ align-items: flex-start;
107
+ @extend %align-horizontal;
108
+ }
109
+ }
110
+ &_bottom {
111
+ align-items: flex-end;
112
+ @extend %align-horizontal;
113
+ &-left {
114
+ align-items: flex-end;
115
+ @extend %align-horizontal;
116
+ }
117
+ &-center {
118
+ text-align: center;
119
+ justify-content: center;
120
+ align-items: flex-end;
121
+ @extend %align-horizontal;
122
+ }
123
+ &-right {
124
+ text-align: right;
125
+ justify-content: flex-end;
126
+ align-items: flex-end;
127
+ @extend %align-horizontal;
128
+ }
129
+ }
130
+ &-left {
131
+ align-items: center;
132
+ @extend %align-horizontal;
133
+ }
134
+ &-center {
135
+ text-align: center;
136
+ justify-content: center;
137
+ align-items: center;
138
+ @extend %align-horizontal;
139
+ }
140
+ &-right {
141
+ text-align: right;
142
+ justify-content: flex-end;
143
+ align-items: center;
144
+ @extend %align-horizontal;
145
+ }
146
+ }
147
+ }
148
+ %align-vertical-reverse {
149
+ display: flex;
150
+ flex-direction: column-reverse;
151
+ }
152
+ .align {
153
+ &_vertical-reverse {
154
+ &-top {
155
+ &-left {
156
+ @extend %align-horizontal-reverse;
157
+ align-items: flex-start;
158
+ }
159
+ &-center {
160
+ @extend %align-horizontal-reverse;
161
+ text-align: center;
162
+ align-items: center;
163
+ }
164
+ &-right {
165
+ @extend %align-horizontal-reverse;
166
+ text-align: right;
167
+ align-items: flex-end;
168
+ }
169
+ }
170
+ &-left {
171
+ @extend %align-horizontal-reverse;
172
+ justify-content: center;
173
+ align-items: flex-start;
174
+ }
175
+ &-center {
176
+ @extend %align-horizontal-reverse;
177
+ text-align: center;
178
+ justify-content: center;
179
+ align-items: center;
180
+ }
181
+ &-right {
182
+ @extend %align-horizontal-reverse;
183
+ text-align: right;
184
+ justify-content: center;
185
+ align-items: flex-end;
186
+ }
187
+ &-bottom {
188
+ &-left {
189
+ @extend %align-horizontal-reverse;
190
+ justify-content: flex-end;
191
+ align-items: flex-start;
192
+ }
193
+ &-center {
194
+ @extend %align-horizontal-reverse;
195
+ text-align: center;
196
+ justify-content: flex-end;
197
+ align-items: center;
198
+ }
199
+ &-right {
200
+ @extend %align-horizontal-reverse;
201
+ text-align: right;
202
+ justify-content: flex-end;
203
+ align-items: flex-end;
204
+ }
205
+ }
206
+ }
207
+ }
208
+ %align-vertical {
209
+ display: flex;
210
+ flex-direction: column;
211
+ }
212
+ .align {
213
+ &_vertical {
214
+ &-top {
215
+ &-left {
216
+ align-items: flex-start;
217
+ @extend %align-vertical;
218
+ }
219
+ &-center {
220
+ text-align: center;
221
+ align-items: center;
222
+ @extend %align-vertical;
223
+ }
224
+ &-right {
225
+ text-align: right;
226
+ align-items: flex-end;
227
+ @extend %align-vertical;
228
+ }
229
+ }
230
+ &-left {
231
+ justify-content: center;
232
+ align-items: flex-start;
233
+ @extend %align-vertical;
234
+ }
235
+ &-center {
236
+ text-align: center;
237
+ justify-content: center;
238
+ align-items: center;
239
+ @extend %align-vertical;
240
+ }
241
+ &-right {
242
+ text-align: right;
243
+ justify-content: center;
244
+ align-items: flex-end;
245
+ @extend %align-vertical;
246
+ }
247
+ &-bottom {
248
+ &-left {
249
+ justify-content: flex-end;
250
+ align-items: flex-start;
251
+ @extend %align-vertical;
252
+ }
253
+ &-center {
254
+ text-align: center;
255
+ justify-content: flex-end;
256
+ align-items: center;
257
+ @extend %align-vertical;
258
+ }
259
+ &-right {
260
+ text-align: right;
261
+ justify-content: flex-end;
262
+ align-items: flex-end;
263
+ @extend %align-vertical;
264
+ }
265
+ }
266
+ }
267
+ }
268
+ .alignment {
269
+ &_top {
270
+ &-left {
271
+ position: absolute;
272
+ right: 100%;
273
+ bottom: 100%;
274
+ }
275
+ &-center {
276
+ position: absolute;
277
+ left: 50%;
278
+ bottom: 100%;
279
+ }
280
+ &-right {
281
+ position: absolute;
282
+ left: 100%;
283
+ bottom: 100%;
284
+ }
285
+ }
286
+ &_bottom {
287
+ &-left {
288
+ position: absolute;
289
+ top: 100%;
290
+ right: 100%;
291
+ }
292
+ &-center {
293
+ position: absolute;
294
+ left: 50%;
295
+ top: 100%;
296
+ }
297
+ &-right {
298
+ position: absolute;
299
+ left: 100%;
300
+ top: 100%;
301
+ }
302
+ }
303
+ &_left-center {
304
+ position: absolute;
305
+ top: 50%;
306
+ right: 100%;
307
+ }
308
+ &_right-center {
309
+ position: absolute;
310
+ left: 100%;
311
+ top: 50%;
312
+ }
313
+ }
314
+ .blur {
315
+ @each $val in 0, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85,
316
+ 90, 95, 100 {
317
+ &_$(val) {
318
+ /* stylelint-disable-next-line prettier/prettier */
319
+ backdrop-filter: blur($(val)px);
320
+ }
321
+ }
322
+ }
323
+ .border-color,
324
+ button.border-color {
325
+ &_none {
326
+ border-width: 1px;
327
+ border-color: transparent;
328
+ border-style: solid;
329
+ }
330
+ @each $type in accent, primary, secondary, surface, error, warning, success,
331
+ danger, info, disabled {
332
+ @each $color in primary, secondary, tertiary, quaternary {
333
+ &_$(type) {
334
+ &-border {
335
+ &-$(color) {
336
+ border-width: 1px;
337
+ border-color: var(--color-$(type)-border-$(color));
338
+ border-style: solid;
339
+ }
340
+ }
341
+ }
342
+ }
343
+ }
344
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink, pink-citrus,
345
+ pomegranate, dragon-fruit, camellia, red-rose, plum, orange, clementine,
346
+ apricot, papaya, kumquat, light-orange, peach, flamingo, rose-gold,
347
+ pink-sand, vintage-rose, grapefruit, cream, mellow-yellow, canary-yellow,
348
+ pollen, flash-light, lemon-cream, flash, dark-green, green, spearmint, mint,
349
+ beryl, sea-foam, turquoise, blue, light-blue, cerulean, surf-blue,
350
+ pacific-green, blue-cobalt, dark-teal, blue-horizon, denim-blue, linen-blue,
351
+ deep-navy, midnight-blue, purple, ultra-violet, lilac, ocean-blue,
352
+ delft-blue, indigo, lavender-gray, lavender, mist-blue, storm-gray, cactus,
353
+ pine-green, cyprus-green, northern-blue, azure, alaskan-blue, khaki,
354
+ dark-olive, soft-white, antique-white, yellow-gold, gold, camel, walnut,
355
+ stone, pebble, cocoa, coastal-gray, white, black, alto, athens-gray,
356
+ sonic-silver {
357
+ &_$(palette) {
358
+ border-width: 1px;
359
+ border-color: var(--color-palette-$(palette));
360
+ border-style: solid;
361
+ }
362
+ }
363
+ }
364
+ .border-color,
365
+ button.border-color {
366
+ &_active {
367
+ &_none {
368
+ border-width: 1px;
369
+ border-color: transparent;
370
+ border-style: solid;
371
+ }
372
+ @each $type in accent, primary, secondary, surface, error, warning, success,
373
+ danger, info, disabled {
374
+ @each $color in primary, secondary, tertiary, quaternary {
375
+ &_$(type) {
376
+ &-border {
377
+ &-$(color) {
378
+ border-width: 1px;
379
+ border-color: var(--color-$(type)-border-$(color));
380
+ border-style: solid;
381
+ }
382
+ }
383
+ }
384
+ }
385
+ }
386
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
387
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
388
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
389
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
390
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
391
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
392
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
393
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
394
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
395
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
396
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
397
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
398
+ alto, athens-gray, sonic-silver {
399
+ &_$(palette) {
400
+ border-width: 1px;
401
+ border-color: var(--color-palette-$(palette));
402
+ border-style: solid;
403
+ }
404
+ }
405
+ }
406
+ }
407
+ .border-color,
408
+ button.border-color {
409
+ &_active {
410
+ &_none {
411
+ border-width: 1px;
412
+ border-color: transparent;
413
+ border-style: solid;
414
+ }
415
+ @each $type in accent, primary, secondary, surface, error, warning, success,
416
+ danger, info, disabled {
417
+ @each $color in primary, secondary, tertiary, quaternary {
418
+ &_$(type) {
419
+ &-border {
420
+ &-$(color) {
421
+ &:hover {
422
+ border-width: 1px;
423
+ border-color: var(--color-$(type)-border-$(color));
424
+ border-style: solid;
425
+ }
426
+ }
427
+ }
428
+ }
429
+ }
430
+ }
431
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
432
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
433
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
434
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
435
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
436
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
437
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
438
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
439
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
440
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
441
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
442
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
443
+ alto, athens-gray, sonic-silver {
444
+ &_$(palette) {
445
+ &:hover {
446
+ border-width: 1px;
447
+ border-color: var(--color-palette-$(palette));
448
+ border-style: solid;
449
+ }
450
+ }
451
+ }
452
+ }
453
+ }
454
+ .border-color,
455
+ button.border-color {
456
+ &_focus {
457
+ &_none {
458
+ border-width: 1px;
459
+ border-color: transparent;
460
+ border-style: solid;
461
+ }
462
+ @each $type in accent, primary, secondary, surface, error, warning, success,
463
+ danger, info, disabled {
464
+ @each $color in primary, secondary, tertiary, quaternary {
465
+ &_$(type) {
466
+ &-border {
467
+ &-$(color) {
468
+ &:focus {
469
+ border-width: 1px;
470
+ border-color: var(--color-$(type)-border-$(color)) !important;
471
+ border-style: solid;
472
+ outline: 0;
473
+ }
474
+ }
475
+ }
476
+ }
477
+ }
478
+ }
479
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
480
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
481
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
482
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
483
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
484
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
485
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
486
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
487
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
488
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
489
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
490
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
491
+ alto, athens-gray, sonic-silver {
492
+ &_$(palette) {
493
+ &:focus {
494
+ border-width: 1px;
495
+ border-color: var(--color-palette-$(palette)) !important;
496
+ border-style: solid;
497
+ outline: 0;
498
+ }
499
+ }
500
+ }
501
+ }
502
+ }
503
+ .border-color,
504
+ button.border-color {
505
+ &_hover {
506
+ &_none {
507
+ border-width: 1px;
508
+ border-color: transparent;
509
+ border-style: solid;
510
+ }
511
+ @each $type in accent, primary, secondary, surface, error, warning, success,
512
+ danger, info, disabled {
513
+ @each $color in primary, secondary, tertiary, quaternary {
514
+ &_$(type) {
515
+ &-border {
516
+ &-$(color) {
517
+ &:hover {
518
+ border-width: 1px;
519
+ border-color: var(--color-$(type)-border-$(color));
520
+ border-style: solid;
521
+ }
522
+ &-hover {
523
+ &:hover {
524
+ border-width: 1px;
525
+ border-color: var(--color-$(type)-border-$(color));
526
+ border-style: solid;
527
+ }
528
+ }
529
+ }
530
+ }
531
+ }
532
+ }
533
+ }
534
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
535
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
536
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
537
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
538
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
539
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
540
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
541
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
542
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
543
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
544
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
545
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
546
+ alto, athens-gray, sonic-silver {
547
+ &_$(palette) {
548
+ &:hover {
549
+ border-width: 1px;
550
+ border-color: var(--color-palette-$(palette));
551
+ border-style: solid;
552
+ }
553
+ &-hover {
554
+ &:hover {
555
+ border-width: 1px;
556
+ border-color: var(--color-palette-$(palette));
557
+ border-style: solid;
558
+ }
559
+ }
560
+ }
561
+ }
562
+ }
563
+ }
564
+ .border {
565
+ &_type {
566
+ &_outline {
567
+ border-style: solid;
568
+ }
569
+ &_solid {
570
+ border-style: solid;
571
+ }
572
+ &_none {
573
+ border: none;
574
+ }
575
+ }
576
+ }
577
+ .border-width {
578
+ @each $width in 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 {
579
+ &_$(width) {
580
+ /* stylelint-disable-next-line prettier/prettier */
581
+ border-width: $(width)px;
582
+ border-style: solid;
583
+ }
584
+ }
585
+ }
586
+ /* stylelint-disable prettier/prettier */
587
+ .border {
588
+ @each $width in 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 {
589
+ &_top {
590
+ &_$(width) {
591
+ border-top-style: solid;
592
+ border-width: $(width)px 0 0 0;
593
+ }
594
+ }
595
+ &_right {
596
+ &_$(width) {
597
+ border-right-style: solid;
598
+ border-width: 0 $(width)px 0 0;
599
+ }
600
+ }
601
+ &_bottom {
602
+ &_$(width) {
603
+ border-bottom-style: solid;
604
+ border-width: 0 0 $(width)px 0;
605
+ }
606
+ }
607
+ &_left {
608
+ &_$(width) {
609
+ border-left-style: solid;
610
+ border-width: 0 0 0 $(width)px;
611
+ }
612
+ }
613
+ }
614
+ }
615
+ .caret-color {
616
+ @each $type in accent, primary, secondary, surface, error, warning, success,
617
+ danger, info, disabled {
618
+ @each $color in primary, secondary, tertiary, quaternary {
619
+ &_$(type) {
620
+ &-item {
621
+ &-$(color) {
622
+ caret-color: var(--color-$(type)-item-$(color));
623
+ }
624
+ }
625
+ }
626
+ }
627
+ }
628
+ }
629
+ .centering {
630
+ &_horizontal {
631
+ display: flex;
632
+ justify-content: center;
633
+ }
634
+ &_vertical {
635
+ position: absolute;
636
+ top: 50%;
637
+ transform: translateY(-50%);
638
+ }
639
+ &_both {
640
+ position: absolute;
641
+ top: 50%;
642
+ left: 50%;
643
+ transform: translate(-50%, -50%);
644
+ }
645
+ }
646
+ .constraints {
647
+ &_top {
648
+ top: 0;
649
+ }
650
+ &_top-left {
651
+ left: 0;
652
+ top: 0;
653
+ }
654
+ &_top-right {
655
+ top: 0;
656
+ right: 0;
657
+ }
658
+ &_top-fill {
659
+ left: 0;
660
+ top: 0;
661
+ right: 0;
662
+ }
663
+ &_top-center {
664
+ position: absolute;
665
+ left: 50%;
666
+ top: 0%;
667
+ right: 0;
668
+ transform: translate(-50%, 0);
669
+ }
670
+ &_bottom {
671
+ bottom: 0;
672
+ }
673
+ &_bottom-left {
674
+ left: 0;
675
+ bottom: 0;
676
+ }
677
+ &_bottom-right {
678
+ right: 0;
679
+ bottom: 0;
680
+ }
681
+ &_bottom-left-right {
682
+ left: 0;
683
+ top: 0;
684
+ right: 0;
685
+ }
686
+ &_bottom_center {
687
+ position: absolute;
688
+ left: 50%;
689
+ right: 0;
690
+ bottom: 0;
691
+ transform: translate(-50%, 0);
692
+ }
693
+ &_bottom-fill {
694
+ left: 0;
695
+ right: 0;
696
+ bottom: 0;
697
+ }
698
+ &_left {
699
+ left: 0;
700
+ }
701
+ &_right {
702
+ right: 0;
703
+ }
704
+ &_center {
705
+ position: absolute;
706
+ left: 50%;
707
+ top: 50%;
708
+ transform: translate(-50%, -50%);
709
+ }
710
+ &_fill {
711
+ inset: 0 0 0 0;
712
+ }
713
+ &_fill_vertical {
714
+ top: 0;
715
+ bottom: 0;
716
+ }
717
+ }
718
+ .cursor {
719
+ &_type {
720
+ @each $val in auto, default, none, pointer {
721
+ &_$(val) {
722
+ cursor: $(val);
723
+ &:hover {
724
+ cursor: $(val);
725
+ }
726
+ }
727
+ }
728
+ }
729
+ }
730
+ .direction {
731
+ &_vertical {
732
+ display: flex;
733
+ flex-direction: column;
734
+ &-reverse {
735
+ display: flex;
736
+ flex-direction: column-reverse;
737
+ }
738
+ }
739
+ &_horizontal {
740
+ display: flex;
741
+ flex-direction: row;
742
+ &-reverse {
743
+ display: flex;
744
+ flex-direction: row-reverse;
745
+ }
746
+ }
747
+ }
748
+ .elevation {
749
+ @each $val in 1, 2, 4, 6, 8, 12, 16, 24 {
750
+ &_$(val) {
751
+ @mixin elevation-$(val);
752
+ }
753
+ }
754
+ }
755
+ .elevation {
756
+ &_hover {
757
+ @each $val in 1, 2, 4, 6, 8, 12, 16, 24 {
758
+ &_$(val) {
759
+ &:hover {
760
+ @mixin elevation-$(val);
761
+ }
762
+ }
763
+ }
764
+ }
765
+ }
766
+ .fill,
767
+ button.fill {
768
+ &_none {
769
+ background-color: transparent;
770
+ }
771
+ @each $type in accent, primary, secondary, surface, error, warning, success,
772
+ danger, info, disabled {
773
+ @each $color in primary, secondary, tertiary, quaternary {
774
+ /* @each $alpha in 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 { */
775
+ &_$(type) {
776
+ &-item {
777
+ &-$(color) {
778
+ background: var(--color-$(type)-item-$(color));
779
+
780
+ /* &$(alpha) {
781
+ background: var(--color-$(type)-item-$(color)-$(alpha));
782
+ } */
783
+ }
784
+ }
785
+ &-$(color) {
786
+ background: var(--color-$(type)-fill-$(color));
787
+
788
+ /* &$(alpha) {
789
+ background: var(--color-$(type)-$(color)-$(alpha));
790
+ } */
791
+ }
792
+ }
793
+
794
+ /* } */
795
+ }
796
+ }
797
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink, pink-citrus,
798
+ pomegranate, dragon-fruit, camellia, red-rose, plum, orange, clementine,
799
+ apricot, papaya, kumquat, light-orange, peach, flamingo, rose-gold,
800
+ pink-sand, vintage-rose, grapefruit, cream, mellow-yellow, canary-yellow,
801
+ pollen, flash-light, lemon-cream, flash, dark-green, green, spearmint, mint,
802
+ beryl, sea-foam, turquoise, blue, light-blue, cerulean, surf-blue,
803
+ pacific-green, blue-cobalt, dark-teal, blue-horizon, denim-blue, linen-blue,
804
+ deep-navy, midnight-blue, purple, ultra-violet, lilac, ocean-blue,
805
+ delft-blue, indigo, lavender-gray, lavender, mist-blue, storm-gray, cactus,
806
+ pine-green, cyprus-green, northern-blue, azure, alaskan-blue, khaki,
807
+ dark-olive, soft-white, antique-white, yellow-gold, gold, camel, walnut,
808
+ stone, pebble, cocoa, coastal-gray, white, black, alto, athens-gray,
809
+ sonic-silver {
810
+ &_$(palette) {
811
+ background: var(--color-palette-$(palette));
812
+ &-item {
813
+ &_$(palette) {
814
+ background: var(--color-palette-$(palette));
815
+ }
816
+ }
817
+ }
818
+ }
819
+ }
820
+ .fill,
821
+ button.fill {
822
+ &_active {
823
+ &_none {
824
+ background-color: transparent;
825
+ }
826
+ @each $type in accent, primary, secondary, surface, error, warning, success,
827
+ danger, info, disabled {
828
+ @each $color in primary, secondary, tertiary, quaternary {
829
+ &_$(type) {
830
+ &-item {
831
+ &-$(color) {
832
+ background: var(--color-$(type)-item-$(color));
833
+ }
834
+ }
835
+ &-$(color) {
836
+ background: var(--color-$(type)-fill-$(color));
837
+ }
838
+ &-$(color)-active {
839
+ background: var(--color-$(type)-fill-active-$(color));
840
+ }
841
+ }
842
+ }
843
+ }
844
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
845
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
846
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
847
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
848
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
849
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
850
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
851
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
852
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
853
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
854
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
855
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
856
+ alto, athens-gray, sonic-silver {
857
+ &_$(palette) {
858
+ background: var(--color-palette-$(palette));
859
+ &-item {
860
+ &_$(palette) {
861
+ background: var(--color-palette-$(palette));
862
+ }
863
+ }
864
+ }
865
+ }
866
+ }
867
+ }
868
+ .fill,
869
+ button.fill {
870
+ &_active {
871
+ &_hover {
872
+ &_none {
873
+ background-color: transparent;
874
+ }
875
+ @each $type in accent, primary, secondary, surface, error, warning,
876
+ success, danger, info, disabled {
877
+ @each $color in primary, secondary, tertiary, quaternary {
878
+ /* @each $alpha in 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 { */
879
+ &_$(type) {
880
+ &-item {
881
+ &-$(color) {
882
+ &:hover {
883
+ background: var(--color-$(type)-item-$(color));
884
+ }
885
+
886
+ /* &$(alpha) {
887
+ &:hover {
888
+ background: var(--color-$(type)-item-$(color)-$(alpha));
889
+ }
890
+ } */
891
+ &-hover {
892
+ &:hover {
893
+ background: var(--color-$(type)-item-$(color)-hover);
894
+ }
895
+
896
+ /* &$(alpha) {
897
+ &:hover {
898
+ background: var(
899
+ --color-$(type)-item-$(color)-$(alpha)-hover
900
+ );
901
+ }
902
+ } */
903
+ &-active {
904
+ &:hover {
905
+ background: var(
906
+ --color-$(type)-item-$(color)-active-hover
907
+ );
908
+ }
909
+
910
+ /* &$(alpha) {
911
+ &:hover {
912
+ background: var(
913
+ --color-$(type)-item-$(color)-$(alpha)-active-hover
914
+ );
915
+ }
916
+ } */
917
+ }
918
+ }
919
+ }
920
+ }
921
+ &-$(color) {
922
+ &:hover {
923
+ background: var(--color-$(type)-fill-$(color));
924
+ }
925
+ &-hover {
926
+ &:hover {
927
+ background: var(--color-$(type)-fill-$(color)-hover);
928
+ }
929
+ &-active {
930
+ &:hover {
931
+ background: var(--color-$(type)-fill-$(color)-active-hover);
932
+ }
933
+ }
934
+ }
935
+ &-active {
936
+ &:hover {
937
+ background: var(--color-$(type)-fill-$(color)-active);
938
+ }
939
+ }
940
+ }
941
+ &-hover {
942
+ &-$(color) {
943
+ &:hover {
944
+ background: var(--color-$(type)-fill-hover-$(color));
945
+ }
946
+ }
947
+ }
948
+ }
949
+
950
+ /* } */
951
+ }
952
+ }
953
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
954
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum,
955
+ orange, clementine, apricot, papaya, kumquat, light-orange, peach,
956
+ flamingo, rose-gold, pink-sand, vintage-rose, grapefruit, cream,
957
+ mellow-yellow, canary-yellow, pollen, flash-light, lemon-cream, flash,
958
+ dark-green, green, spearmint, mint, beryl, sea-foam, turquoise, blue,
959
+ light-blue, cerulean, surf-blue, pacific-green, blue-cobalt, dark-teal,
960
+ blue-horizon, denim-blue, linen-blue, deep-navy, midnight-blue, purple,
961
+ ultra-violet, lilac, ocean-blue, delft-blue, indigo, lavender-gray,
962
+ lavender, mist-blue, storm-gray, cactus, pine-green, cyprus-green,
963
+ northern-blue, azure, alaskan-blue, khaki, dark-olive, soft-white,
964
+ antique-white, yellow-gold, gold, camel, walnut, stone, pebble, cocoa,
965
+ coastal-gray, white, black, alto, athens-gray, sonic-silver {
966
+ &_$(palette) {
967
+ &:hover {
968
+ background: var(--color-palette-$(palette));
969
+ }
970
+ &-item {
971
+ &_$(palette) {
972
+ &:hover {
973
+ background: var(--color-palette-$(palette));
974
+ }
975
+ }
976
+ }
977
+ }
978
+ }
979
+ }
980
+ }
981
+ }
982
+ .fill_gradient,
983
+ button.fill {
984
+ @each $type in primary, secondary, tertiary, quaternary {
985
+ &-$(type) {
986
+ @each $direction, $degree in (top, right, diagonal, bottom, left),
987
+ (0deg, 90deg, 135deg, 180deg, 270deg) {
988
+ &-$(direction) {
989
+ background: linear-gradient($(degree), var(--color-gradient-$(type)));
990
+ }
991
+ }
992
+ }
993
+ }
994
+ }
995
+ .fill,
996
+ button.fill {
997
+ &_hover {
998
+ &_none {
999
+ background-color: transparent;
1000
+ }
1001
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1002
+ danger, info, disabled {
1003
+ @each $color in primary, secondary, tertiary, quaternary {
1004
+ /* @each $alpha in 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 { */
1005
+ &_$(type) {
1006
+ &-item {
1007
+ &-$(color) {
1008
+ &:hover {
1009
+ background: var(--color-$(type)-item-$(color));
1010
+ }
1011
+
1012
+ /* &$(alpha) {
1013
+ &:hover {
1014
+ background: var(--color-$(type)-item-$(color)-$(alpha));
1015
+ }
1016
+ } */
1017
+ &-hover {
1018
+ &:hover {
1019
+ background: var(--color-$(type)-item-$(color)-hover);
1020
+ }
1021
+
1022
+ /* &$(alpha) {
1023
+ &:hover {
1024
+ background: var(
1025
+ --color-$(type)-item-$(color)-$(alpha)-hover
1026
+ );
1027
+ }
1028
+ } */
1029
+ }
1030
+ }
1031
+ }
1032
+ &-$(color) {
1033
+ &:hover {
1034
+ background: var(--color-$(type)-fill-$(color));
1035
+ }
1036
+ &-hover {
1037
+ &:hover {
1038
+ background: var(--color-$(type)-fill-$(color)-hover);
1039
+ }
1040
+ }
1041
+ }
1042
+ &-hover {
1043
+ &-$(color) {
1044
+ &:hover {
1045
+ background: var(--color-$(type)-fill-hover-$(color));
1046
+ }
1047
+ }
1048
+ }
1049
+ }
1050
+
1051
+ /* } */
1052
+ }
1053
+ }
1054
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
1055
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
1056
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
1057
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
1058
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
1059
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
1060
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
1061
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
1062
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
1063
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
1064
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
1065
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
1066
+ alto, athens-gray, sonic-silver {
1067
+ &_$(palette) {
1068
+ &:hover {
1069
+ background: var(--color-palette-$(palette));
1070
+ }
1071
+ &-item {
1072
+ &_$(palette) {
1073
+ &:hover {
1074
+ background: var(--color-palette-$(palette));
1075
+ }
1076
+ }
1077
+ }
1078
+ }
1079
+ }
1080
+ }
1081
+ }
1082
+ .flex-grow {
1083
+ @each $val in 0, 1 {
1084
+ &_$(val) {
1085
+ flex-grow: $(val);
1086
+ }
1087
+ }
1088
+ }
1089
+ .height {
1090
+ &_hug {
1091
+ display: inline-flex;
1092
+ }
1093
+ &_fill {
1094
+ height: 100%;
1095
+ &-vh {
1096
+ height: 100vh;
1097
+ }
1098
+ }
1099
+ }
1100
+ .hover-fill-color {
1101
+ @each $type in accent, primary, secondary, tertiary, quaternary, surface,
1102
+ error, success, warning, info, danger, gradient, disabled, hover, inverse {
1103
+ @each $color in primary, secondary, tertiary, quaternary, accent, disabled,
1104
+ hover, inverse {
1105
+ &_$(type) {
1106
+ &-$(color) {
1107
+ &:hover {
1108
+ background: var(--color-$(type)-fill-$(color));
1109
+ }
1110
+ }
1111
+ }
1112
+ }
1113
+ }
1114
+ }
1115
+ .hover-item-color {
1116
+ @each $type in accent, primary, secondary, tertiary, quaternary, surface,
1117
+ error, success, warning, info, danger, gradient, disabled, hover, inverse {
1118
+ @each $color in primary, secondary, tertiary, quaternary, accent, disabled,
1119
+ hover, inverse {
1120
+ &_$(type) {
1121
+ &-item {
1122
+ &-$(color) {
1123
+ &:hover {
1124
+ color: var(--color-$(type)-item-$(color));
1125
+ }
1126
+ }
1127
+ }
1128
+ }
1129
+ }
1130
+ }
1131
+ }
1132
+ .hover-text-color {
1133
+ @each $type in accent, primary, secondary, tertiary, quaternary, surface,
1134
+ error, success, warning, info, danger, gradient, disabled, hover, inverse {
1135
+ @each $color in primary, secondary, tertiary, quaternary, accent, disabled,
1136
+ hover, inverse {
1137
+ &_$(type) {
1138
+ &-text {
1139
+ &-$(color) {
1140
+ &:hover {
1141
+ color: var(--color-$(type)-text-$(color));
1142
+ }
1143
+ }
1144
+ }
1145
+ }
1146
+ }
1147
+ }
1148
+ }
1149
+ .justify-content {
1150
+ @each $val in flexStart, flexEnd, spaceBetween, spaceAround, spaceEvenly, flex-start, flex-end, center, space-between, space-around, space-evenly {
1151
+ &_$(val) {
1152
+ justify-content: $(val);
1153
+ }
1154
+ }
1155
+ }
1156
+ .opacity {
1157
+ @each $val in 5, 10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 75, 80, 85,
1158
+ 90, 95 {
1159
+ &_$(val) {
1160
+ /* stylelint-disable-next-line prettier/prettier */
1161
+ opacity: $(val)%;
1162
+ }
1163
+ }
1164
+ }
1165
+ .placeholder-text-color {
1166
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1167
+ danger, info, disabled {
1168
+ @each $color in primary, secondary, tertiary, quaternary {
1169
+ &_$(type) {
1170
+ &-text {
1171
+ &-$(color) {
1172
+ &::placeholder {
1173
+ color: var(--color-$(type)-text-$(color));
1174
+ }
1175
+ }
1176
+ }
1177
+ }
1178
+ }
1179
+ }
1180
+ }
1181
+ .position {
1182
+ &_absolute {
1183
+ position: absolute;
1184
+ }
1185
+ &_relative {
1186
+ position: relative;
1187
+ }
1188
+ &_fixed {
1189
+ position: fixed;
1190
+ }
1191
+ &_static {
1192
+ position: static;
1193
+ }
1194
+ }
1195
+ .resize-horizontal {
1196
+ &_hug {
1197
+ display: inline-flex;
1198
+ }
1199
+ &_fill {
1200
+ width: 100%;
1201
+ }
1202
+ &_fit-content {
1203
+ display: inline-flex;
1204
+ }
1205
+ }
1206
+ .resize-vertical {
1207
+ &_hug {
1208
+ display: inline-flex;
1209
+ }
1210
+ &_fill {
1211
+ min-height: 100%;
1212
+ flex: 1;
1213
+ }
1214
+ }
1215
+ .shape_rounded.shape-strength,
1216
+ .shape-strength {
1217
+ &_05-m {
1218
+ border-radius: 0.5m;
1219
+ }
1220
+ &_1-m {
1221
+ border-radius: 1m;
1222
+ }
1223
+ &_15-m {
1224
+ border-radius: 1.5m;
1225
+ }
1226
+ &_2-m {
1227
+ border-radius: 2m;
1228
+ }
1229
+ }
1230
+ .shape {
1231
+ &_rounded {
1232
+ border-radius: 8px;
1233
+ }
1234
+ &_circular {
1235
+ border-radius: 50%;
1236
+ }
1237
+ }
1238
+ .svg {
1239
+ &_fill {
1240
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1241
+ danger, info, disabled {
1242
+ @each $color in primary, secondary, tertiary, quaternary {
1243
+ &_$(type) {
1244
+ &-item {
1245
+ &-$(color) {
1246
+ & svg {
1247
+ stroke: none;
1248
+ fill: var(--color-$(type)-item-$(color));
1249
+ }
1250
+
1251
+ /* & path,
1252
+ & circle {
1253
+ fill: var(--color-$(type)-item-$(color));
1254
+ } */
1255
+ }
1256
+ }
1257
+ &-$(color) {
1258
+ & svg {
1259
+ stroke: none;
1260
+ fill: var(--color-$(type)-fill-$(color));
1261
+ }
1262
+
1263
+ /* & path,
1264
+ & circle {
1265
+ fill: var(--color-$(type)-item-$(color));
1266
+ } */
1267
+ }
1268
+ }
1269
+ }
1270
+ }
1271
+ }
1272
+ }
1273
+ .svg {
1274
+ &_fill_hover {
1275
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1276
+ danger, info, disabled {
1277
+ @each $color in primary, secondary, tertiary, quaternary {
1278
+ &_$(type) {
1279
+ &-item {
1280
+ &-$(color) {
1281
+ &:hover {
1282
+ & svg {
1283
+ stroke: none;
1284
+ fill: var(--color-$(type)-item-$(color));
1285
+ }
1286
+ }
1287
+ }
1288
+ }
1289
+ }
1290
+ }
1291
+ }
1292
+ }
1293
+ }
1294
+ .svg {
1295
+ &_path_fill {
1296
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1297
+ danger, info, disabled {
1298
+ @each $color in primary, secondary, tertiary, quaternary {
1299
+ &_$(type) {
1300
+ &-item {
1301
+ &-$(color) {
1302
+ & path {
1303
+ fill: var(--color-$(type)-item-$(color));
1304
+ }
1305
+ }
1306
+ }
1307
+ }
1308
+ }
1309
+ }
1310
+ }
1311
+ }
1312
+ .text_align {
1313
+ @each $align in left, center, right {
1314
+ &_$(align) {
1315
+ text-align: ($align);
1316
+ }
1317
+ }
1318
+ }
1319
+ .text {
1320
+ &&-color {
1321
+ &_none {
1322
+ color: transparent;
1323
+ }
1324
+ @each $type in accent, primary, secondary, surface, error, warning, success,
1325
+ danger, info, disabled {
1326
+ @each $color in primary, secondary, tertiary, quaternary {
1327
+ &_$(type) {
1328
+ &-text {
1329
+ &-$(color) {
1330
+ color: var(--color-$(type)-text-$(color));
1331
+ }
1332
+ }
1333
+ }
1334
+ }
1335
+ }
1336
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
1337
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum, orange,
1338
+ clementine, apricot, papaya, kumquat, light-orange, peach, flamingo,
1339
+ rose-gold, pink-sand, vintage-rose, grapefruit, cream, mellow-yellow,
1340
+ canary-yellow, pollen, flash-light, lemon-cream, flash, dark-green, green,
1341
+ spearmint, mint, beryl, sea-foam, turquoise, blue, light-blue, cerulean,
1342
+ surf-blue, pacific-green, blue-cobalt, dark-teal, blue-horizon,
1343
+ denim-blue, linen-blue, deep-navy, midnight-blue, purple, ultra-violet,
1344
+ lilac, ocean-blue, delft-blue, indigo, lavender-gray, lavender, mist-blue,
1345
+ storm-gray, cactus, pine-green, cyprus-green, northern-blue, azure,
1346
+ alaskan-blue, khaki, dark-olive, soft-white, antique-white, yellow-gold,
1347
+ gold, camel, walnut, stone, pebble, cocoa, coastal-gray, white, black,
1348
+ alto, athens-gray, sonic-silver {
1349
+ &_$(palette) {
1350
+ color: var(--color-palette-$(palette));
1351
+ }
1352
+ }
1353
+ }
1354
+ }
1355
+ .text {
1356
+ &&-color {
1357
+ &_active {
1358
+ &_none {
1359
+ color: transparent;
1360
+ }
1361
+ @each $type in accent, primary, secondary, surface, error, warning,
1362
+ success, danger, info, disabled {
1363
+ @each $color in primary, secondary, tertiary, quaternary {
1364
+ &_$(type) {
1365
+ &-text {
1366
+ &-$(color) {
1367
+ color: var(--color-$(type)-text-$(color));
1368
+ }
1369
+ }
1370
+ }
1371
+ }
1372
+ }
1373
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
1374
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum,
1375
+ orange, clementine, apricot, papaya, kumquat, light-orange, peach,
1376
+ flamingo, rose-gold, pink-sand, vintage-rose, grapefruit, cream,
1377
+ mellow-yellow, canary-yellow, pollen, flash-light, lemon-cream, flash,
1378
+ dark-green, green, spearmint, mint, beryl, sea-foam, turquoise, blue,
1379
+ light-blue, cerulean, surf-blue, pacific-green, blue-cobalt, dark-teal,
1380
+ blue-horizon, denim-blue, linen-blue, deep-navy, midnight-blue, purple,
1381
+ ultra-violet, lilac, ocean-blue, delft-blue, indigo, lavender-gray,
1382
+ lavender, mist-blue, storm-gray, cactus, pine-green, cyprus-green,
1383
+ northern-blue, azure, alaskan-blue, khaki, dark-olive, soft-white,
1384
+ antique-white, yellow-gold, gold, camel, walnut, stone, pebble, cocoa,
1385
+ coastal-gray, white, black, alto, athens-gray, sonic-silver {
1386
+ &_$(palette) {
1387
+ color: var(--color-palette-$(palette));
1388
+ }
1389
+ }
1390
+ }
1391
+ }
1392
+ }
1393
+ .text {
1394
+ &&-color {
1395
+ &_active {
1396
+ &_hover {
1397
+ &_none {
1398
+ color: transparent;
1399
+ }
1400
+ @each $type in accent, primary, secondary, surface, error, warning,
1401
+ success, danger, info, disabled {
1402
+ @each $color in primary, secondary, tertiary, quaternary {
1403
+ &_$(type) {
1404
+ &-text {
1405
+ &-$(color) {
1406
+ &:hover {
1407
+ color: var(--color-$(type)-text-$(color));
1408
+ }
1409
+ }
1410
+ }
1411
+ }
1412
+ }
1413
+ }
1414
+ @each $palette in red, neon-pink, electric-pink, hibiscus, pink,
1415
+ pink-citrus, pomegranate, dragon-fruit, camellia, red-rose, plum,
1416
+ orange, clementine, apricot, papaya, kumquat, light-orange, peach,
1417
+ flamingo, rose-gold, pink-sand, vintage-rose, grapefruit, cream,
1418
+ mellow-yellow, canary-yellow, pollen, flash-light, lemon-cream, flash,
1419
+ dark-green, green, spearmint, mint, beryl, sea-foam, turquoise, blue,
1420
+ light-blue, cerulean, surf-blue, pacific-green, blue-cobalt,
1421
+ dark-teal, blue-horizon, denim-blue, linen-blue, deep-navy,
1422
+ midnight-blue, purple, ultra-violet, lilac, ocean-blue, delft-blue,
1423
+ indigo, lavender-gray, lavender, mist-blue, storm-gray, cactus,
1424
+ pine-green, cyprus-green, northern-blue, azure, alaskan-blue, khaki,
1425
+ dark-olive, soft-white, antique-white, yellow-gold, gold, camel,
1426
+ walnut, stone, pebble, cocoa, coastal-gray, white, black, alto,
1427
+ athens-gray, sonic-silver {
1428
+ &_$(palette) {
1429
+ &:hover {
1430
+ color: var(--color-palette-$(palette));
1431
+ }
1432
+ }
1433
+ }
1434
+ }
1435
+ }
1436
+ }
1437
+ }
1438
+ .text {
1439
+ &&-color {
1440
+ &_disabled {
1441
+ &-text {
1442
+ @each $color in primary, secondary, tertiary, quaternary {
1443
+ &-$(color) {
1444
+ color: var(--color-disabled-text-$(color));
1445
+ }
1446
+ }
1447
+ }
1448
+ }
1449
+ }
1450
+ }
1451
+ .text {
1452
+ &&-color {
1453
+ &_hover {
1454
+ &_none {
1455
+ color: transparent;
1456
+ }
1457
+ @each $type in accent, primary, secondary, surface, error, warning,
1458
+ success, danger, info, disabled {
1459
+ @each $color in primary, secondary, tertiary, quaternary {
1460
+ &_$(type) {
1461
+ &-text {
1462
+ &-$(color) {
1463
+ &:hover {
1464
+ color: var(--color-$(type)-text-$(color));
1465
+ }
1466
+ &-hover {
1467
+ &:hover {
1468
+ color: var(--color-$(type)-text-$(color)-hover);
1469
+ }
1470
+ }
1471
+ }
1472
+ }
1473
+ }
1474
+ }
1475
+ }
1476
+ }
1477
+ }
1478
+ }
1479
+ .text {
1480
+ &-decoration {
1481
+ @each $val in underline, none {
1482
+ &_$(val) {
1483
+ text-decoration: $(val);
1484
+ }
1485
+ }
1486
+ }
1487
+ }
1488
+ .text-gradient {
1489
+ &_primary {
1490
+ @mixin text-gradient-primary;
1491
+ }
1492
+ @each $type in accent, primary, secondary, tertiary, surface, success, error {
1493
+ &_$(type) {
1494
+ @each $color in primary, secondary, tertiary, quaternary, quinary, senary, accent, disabled,
1495
+ hover {
1496
+ &-$(color) {
1497
+ @each $direction in left, top, right, bottom {
1498
+ &-$(direction) {
1499
+ color: transparent;
1500
+ background: linear-gradient(
1501
+ to $(direction),
1502
+ var(--color-$(type)-text-gradient-$(color)-start) 0%,
1503
+ var(--color-$(type)-text-gradient-$(color)-end) 100%
1504
+ );
1505
+ background-clip: text;
1506
+ text-fill-color: transparent;
1507
+ }
1508
+ }
1509
+ }
1510
+ }
1511
+ }
1512
+ }
1513
+ }
1514
+ .text {
1515
+ &&-style {
1516
+ @each $val in normal, italic {
1517
+ &_$(val) {
1518
+ font-style: $(val);
1519
+ }
1520
+ }
1521
+ }
1522
+ }
1523
+ .text-truncate {
1524
+ &_true {
1525
+ overflow: hidden;
1526
+ text-overflow: ellipsis;
1527
+ white-space: nowrap;
1528
+ }
1529
+ }
1530
+ /* stylelint-disable order/order */
1531
+ .text {
1532
+ &-weight {
1533
+ @each $val in 100, 200, 300, 400, 500, 600, 700, 800, 900, 950 {
1534
+ &_$(val) {
1535
+ font-weight: $(val);
1536
+ }
1537
+ }
1538
+ &_thin {
1539
+ font-weight: 100;
1540
+ }
1541
+ &_extra-light,
1542
+ &_extralight,
1543
+ &_ultra-light,
1544
+ &_ultralight {
1545
+ font-weight: 200;
1546
+ }
1547
+ &_light {
1548
+ font-weight: 300;
1549
+ }
1550
+ &_normal {
1551
+ font-weight: 400;
1552
+ }
1553
+ &_medium {
1554
+ font-weight: 500;
1555
+ }
1556
+ &_semibold,
1557
+ &_semi-bold,
1558
+ &_demi-bold {
1559
+ font-weight: 600;
1560
+ }
1561
+ &_bold {
1562
+ font-weight: 700;
1563
+ }
1564
+ &_extrabold,
1565
+ &_extra-bold,
1566
+ &_ultrabold,
1567
+ &_ultra-bold {
1568
+ font-weight: 800;
1569
+ }
1570
+ &_black,
1571
+ &_heavy {
1572
+ font-weight: 900;
1573
+ }
1574
+ }
1575
+ }
1576
+ .width {
1577
+ &_hug {
1578
+ display: inline-flex;
1579
+ }
1580
+ &_fill {
1581
+ width: 100%;
1582
+ }
1583
+ &_auto {
1584
+ width: auto;
1585
+ }
1586
+ }
1587
+ .word-wrap {
1588
+ &_wrap {
1589
+ @mixin word-wrap;
1590
+ }
1591
+ &_nowrap {
1592
+ white-space: nowrap;
1593
+ }
1594
+ }