@rovula/ui 0.0.31 → 0.0.33
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.
- package/dist/cjs/bundle.css +1020 -16
- package/dist/cjs/types/stories/ColorPreview.d.ts +9 -5
- package/dist/cjs/types/utils/colors.d.ts +1 -0
- package/dist/components/Text/Text.stories.js +5 -1
- package/dist/esm/bundle.css +1020 -16
- package/dist/esm/types/stories/ColorPreview.d.ts +9 -5
- package/dist/esm/types/utils/colors.d.ts +1 -0
- package/dist/src/theme/global.css +1410 -153
- package/dist/stories/ColorGroupPreview.js +280 -472
- package/dist/stories/ColorPreview.js +76 -6
- package/dist/theme/main-preset.js +8 -0
- package/dist/theme/plugins/utilities/typography.js +3 -0
- package/dist/theme/presets/colors.js +1 -3
- package/dist/theme/tokens/color.css +2 -1
- package/dist/theme/tokens/transparent.css +2 -2
- package/dist/theme/utils.js +12 -1
- package/dist/utils/colors.js +31 -0
- package/package.json +1 -1
- package/src/components/Text/Text.stories.tsx +5 -1
- package/src/stories/ColorGroupPreview.tsx +392 -486
- package/src/stories/ColorPreview.tsx +122 -33
- package/src/theme/main-preset.js +8 -0
- package/src/theme/plugins/utilities/typography.js +3 -0
- package/src/theme/presets/colors.js +1 -3
- package/src/theme/tokens/color.css +2 -1
- package/src/theme/tokens/transparent.css +2 -2
- package/src/theme/utils.js +12 -1
- package/src/utils/colors.ts +33 -0
|
@@ -218,6 +218,7 @@
|
|
|
218
218
|
--function-active-hover-bg: rgba(221 205 0 / 0.08);
|
|
219
219
|
--function-active-stroke: rgba(177 164 0 / 0.48);
|
|
220
220
|
--function-active-icon: #ffffff;
|
|
221
|
+
--text-black: #000000;
|
|
221
222
|
--text-dark: #18283a;
|
|
222
223
|
--text-medium: #4b5b6d;
|
|
223
224
|
--text-light: #8e98a4;
|
|
@@ -225,7 +226,7 @@
|
|
|
225
226
|
--text-grey-medium: #7e7e7e;
|
|
226
227
|
--text-grey-light: #9e9e9e;
|
|
227
228
|
--text-white: #ffffff;
|
|
228
|
-
--base-color-bg: #
|
|
229
|
+
--base-color-bg: #f5f5f5;
|
|
229
230
|
--base-color-bg2: #f5f5f5;
|
|
230
231
|
--base-color-bg3: #d8d8d8;
|
|
231
232
|
--base-color-workspace-stroke: #e2e2e2;
|
|
@@ -315,13 +316,13 @@
|
|
|
315
316
|
--other-transparency-grey2-24: rgba(145 158 171 / 0.24);
|
|
316
317
|
--other-transparency-grey2-32: rgba(145 158 171 / 0.32);
|
|
317
318
|
--other-transparency-grey2-48: rgba(145 158 171 / 0.48);
|
|
318
|
-
--other-transparency-white-
|
|
319
|
+
--other-transparency-white-8: rgba(255 255 255 / 0.08);
|
|
319
320
|
--other-transparency-white-12: rgba(255 255 255 / 0.12);
|
|
320
321
|
--other-transparency-white-16: rgba(255 255 255 / 0.16);
|
|
321
322
|
--other-transparency-white-24: rgba(255 255 255 / 0.24);
|
|
322
323
|
--other-transparency-white-32: rgba(255 255 255 / 0.32);
|
|
323
324
|
--other-transparency-white-48: rgba(255 255 255 / 0.48);
|
|
324
|
-
--other-transparency-black-
|
|
325
|
+
--other-transparency-black-8: rgba(0 0 0 / 0.08);
|
|
325
326
|
--other-transparency-black-12: rgba(0 0 0 / 0.12);
|
|
326
327
|
--other-transparency-black-16: rgba(0 0 0 / 0.16);
|
|
327
328
|
--other-transparency-black-24: rgba(0 0 0 / 0.24);
|
|
@@ -2330,6 +2331,10 @@ body {
|
|
|
2330
2331
|
margin-top: 0.5rem;
|
|
2331
2332
|
}
|
|
2332
2333
|
|
|
2334
|
+
.mt-3 {
|
|
2335
|
+
margin-top: 0.75rem;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2333
2338
|
.mt-4 {
|
|
2334
2339
|
margin-top: 1rem;
|
|
2335
2340
|
}
|
|
@@ -2466,14 +2471,6 @@ body {
|
|
|
2466
2471
|
height: 15rem;
|
|
2467
2472
|
}
|
|
2468
2473
|
|
|
2469
|
-
.h-\[120px\] {
|
|
2470
|
-
height: 120px;
|
|
2471
|
-
}
|
|
2472
|
-
|
|
2473
|
-
.h-\[160px\] {
|
|
2474
|
-
height: 160px;
|
|
2475
|
-
}
|
|
2476
|
-
|
|
2477
2474
|
.h-\[1px\] {
|
|
2478
2475
|
height: 1px;
|
|
2479
2476
|
}
|
|
@@ -2603,6 +2600,11 @@ body {
|
|
|
2603
2600
|
width: auto;
|
|
2604
2601
|
}
|
|
2605
2602
|
|
|
2603
|
+
.w-fit {
|
|
2604
|
+
width: -moz-fit-content;
|
|
2605
|
+
width: fit-content;
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2606
2608
|
.w-full {
|
|
2607
2609
|
width: 100%;
|
|
2608
2610
|
}
|
|
@@ -2615,6 +2617,11 @@ body {
|
|
|
2615
2617
|
min-width: 154px;
|
|
2616
2618
|
}
|
|
2617
2619
|
|
|
2620
|
+
.min-w-fit {
|
|
2621
|
+
min-width: -moz-fit-content;
|
|
2622
|
+
min-width: fit-content;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2618
2625
|
.max-w-lg {
|
|
2619
2626
|
max-width: 32rem;
|
|
2620
2627
|
}
|
|
@@ -2698,10 +2705,42 @@ body {
|
|
|
2698
2705
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2699
2706
|
}
|
|
2700
2707
|
|
|
2708
|
+
.grid-cols-10 {
|
|
2709
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2712
|
+
.grid-cols-2 {
|
|
2713
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2714
|
+
}
|
|
2715
|
+
|
|
2716
|
+
.grid-cols-3 {
|
|
2717
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2701
2720
|
.grid-cols-4 {
|
|
2702
2721
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2703
2722
|
}
|
|
2704
2723
|
|
|
2724
|
+
.grid-cols-5 {
|
|
2725
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2726
|
+
}
|
|
2727
|
+
|
|
2728
|
+
.grid-cols-6 {
|
|
2729
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2732
|
+
.grid-cols-7 {
|
|
2733
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
2734
|
+
}
|
|
2735
|
+
|
|
2736
|
+
.grid-cols-8 {
|
|
2737
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2738
|
+
}
|
|
2739
|
+
|
|
2740
|
+
.grid-cols-9 {
|
|
2741
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
2742
|
+
}
|
|
2743
|
+
|
|
2705
2744
|
.flex-row {
|
|
2706
2745
|
flex-direction: row;
|
|
2707
2746
|
}
|
|
@@ -2758,12 +2797,12 @@ body {
|
|
|
2758
2797
|
gap: 0.375rem;
|
|
2759
2798
|
}
|
|
2760
2799
|
|
|
2761
|
-
.gap-
|
|
2762
|
-
gap:
|
|
2800
|
+
.gap-10 {
|
|
2801
|
+
gap: 2.5rem;
|
|
2763
2802
|
}
|
|
2764
2803
|
|
|
2765
|
-
.gap-
|
|
2766
|
-
gap: 5rem;
|
|
2804
|
+
.gap-2 {
|
|
2805
|
+
gap: 0.5rem;
|
|
2767
2806
|
}
|
|
2768
2807
|
|
|
2769
2808
|
.gap-3 {
|
|
@@ -3248,11 +3287,26 @@ body {
|
|
|
3248
3287
|
background-color: color-mix(in srgb, var(--background) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3249
3288
|
}
|
|
3250
3289
|
|
|
3290
|
+
.bg-base-bg {
|
|
3291
|
+
--tw-bg-opacity: 1;
|
|
3292
|
+
background-color: color-mix(in srgb, var(--base-color-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3293
|
+
}
|
|
3294
|
+
|
|
3251
3295
|
.bg-base-bg2 {
|
|
3252
3296
|
--tw-bg-opacity: 1;
|
|
3253
3297
|
background-color: color-mix(in srgb, var(--base-color-bg2) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3254
3298
|
}
|
|
3255
3299
|
|
|
3300
|
+
.bg-base-bg3 {
|
|
3301
|
+
--tw-bg-opacity: 1;
|
|
3302
|
+
background-color: color-mix(in srgb, var(--base-color-bg3) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3303
|
+
}
|
|
3304
|
+
|
|
3305
|
+
.bg-base-guideline-stroke {
|
|
3306
|
+
--tw-bg-opacity: 1;
|
|
3307
|
+
background-color: color-mix(in srgb, var(--base-color-guideline-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3256
3310
|
.bg-base-popup {
|
|
3257
3311
|
--tw-bg-opacity: 1;
|
|
3258
3312
|
background-color: color-mix(in srgb, var(--base-color-popup) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -3263,16 +3317,61 @@ body {
|
|
|
3263
3317
|
background-color: color-mix(in srgb, var(--base-color-popup-curtain) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3264
3318
|
}
|
|
3265
3319
|
|
|
3320
|
+
.bg-base-popup-foreground {
|
|
3321
|
+
--tw-bg-opacity: 1;
|
|
3322
|
+
background-color: color-mix(in srgb, var(--base-color-popup-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3323
|
+
}
|
|
3324
|
+
|
|
3266
3325
|
.bg-base-popup-highlight {
|
|
3267
3326
|
--tw-bg-opacity: 1;
|
|
3268
3327
|
background-color: color-mix(in srgb, var(--base-color-popup-hightlight) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3269
3328
|
}
|
|
3270
3329
|
|
|
3330
|
+
.bg-base-stroke {
|
|
3331
|
+
--tw-bg-opacity: 1;
|
|
3332
|
+
background-color: color-mix(in srgb, var(--base-color-workspace-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3333
|
+
}
|
|
3334
|
+
|
|
3335
|
+
.bg-base-workspace-stroke {
|
|
3336
|
+
--tw-bg-opacity: 1;
|
|
3337
|
+
background-color: color-mix(in srgb, var(--base-color-workspace-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3271
3340
|
.bg-black {
|
|
3272
3341
|
--tw-bg-opacity: 1;
|
|
3273
3342
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
3274
3343
|
}
|
|
3275
3344
|
|
|
3345
|
+
.bg-black-transparent-12 {
|
|
3346
|
+
--tw-bg-opacity: 1;
|
|
3347
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
.bg-black-transparent-16 {
|
|
3351
|
+
--tw-bg-opacity: 1;
|
|
3352
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
.bg-black-transparent-24 {
|
|
3356
|
+
--tw-bg-opacity: 1;
|
|
3357
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
.bg-black-transparent-32 {
|
|
3361
|
+
--tw-bg-opacity: 1;
|
|
3362
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3363
|
+
}
|
|
3364
|
+
|
|
3365
|
+
.bg-black-transparent-48 {
|
|
3366
|
+
--tw-bg-opacity: 1;
|
|
3367
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3368
|
+
}
|
|
3369
|
+
|
|
3370
|
+
.bg-black-transparent-8 {
|
|
3371
|
+
--tw-bg-opacity: 1;
|
|
3372
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3373
|
+
}
|
|
3374
|
+
|
|
3276
3375
|
.bg-button-error-flat-default {
|
|
3277
3376
|
--tw-bg-opacity: 1;
|
|
3278
3377
|
background-color: color-mix(in srgb, var(--button-error-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
@@ -3383,287 +3482,1427 @@ body {
|
|
|
3383
3482
|
background-color: color-mix(in srgb, var(--common-black) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3384
3483
|
}
|
|
3385
3484
|
|
|
3386
|
-
.bg-
|
|
3485
|
+
.bg-common-white {
|
|
3387
3486
|
--tw-bg-opacity: 1;
|
|
3388
|
-
background-color: color-mix(in srgb, var(--
|
|
3487
|
+
background-color: color-mix(in srgb, var(--common-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3389
3488
|
}
|
|
3390
3489
|
|
|
3391
|
-
.bg-
|
|
3490
|
+
.bg-error {
|
|
3392
3491
|
--tw-bg-opacity: 1;
|
|
3393
|
-
background-color: color-mix(in srgb, var(--
|
|
3492
|
+
background-color: color-mix(in srgb, var(--state-color-error-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3394
3493
|
}
|
|
3395
3494
|
|
|
3396
|
-
.bg-
|
|
3495
|
+
.bg-error-100 {
|
|
3397
3496
|
--tw-bg-opacity: 1;
|
|
3398
|
-
background-color:
|
|
3497
|
+
background-color: color-mix(in srgb, var(--error-error-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3399
3498
|
}
|
|
3400
3499
|
|
|
3401
|
-
.bg-
|
|
3500
|
+
.bg-error-200 {
|
|
3402
3501
|
--tw-bg-opacity: 1;
|
|
3403
|
-
background-color: color-mix(in srgb, var(--
|
|
3502
|
+
background-color: color-mix(in srgb, var(--error-error-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3404
3503
|
}
|
|
3405
3504
|
|
|
3406
|
-
.bg-
|
|
3505
|
+
.bg-error-300 {
|
|
3407
3506
|
--tw-bg-opacity: 1;
|
|
3408
|
-
background-color: color-mix(in srgb, var(--
|
|
3507
|
+
background-color: color-mix(in srgb, var(--error-error-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3409
3508
|
}
|
|
3410
3509
|
|
|
3411
|
-
.bg-
|
|
3510
|
+
.bg-error-400 {
|
|
3412
3511
|
--tw-bg-opacity: 1;
|
|
3413
|
-
background-color: color-mix(in srgb, var(--
|
|
3512
|
+
background-color: color-mix(in srgb, var(--error-error-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3414
3513
|
}
|
|
3415
3514
|
|
|
3416
|
-
.bg-
|
|
3515
|
+
.bg-error-50 {
|
|
3417
3516
|
--tw-bg-opacity: 1;
|
|
3418
|
-
background-color: color-mix(in srgb, var(--
|
|
3517
|
+
background-color: color-mix(in srgb, var(--error-error-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3419
3518
|
}
|
|
3420
3519
|
|
|
3421
|
-
.bg-
|
|
3520
|
+
.bg-error-500 {
|
|
3422
3521
|
--tw-bg-opacity: 1;
|
|
3423
|
-
background-color: color-mix(in srgb, var(--
|
|
3522
|
+
background-color: color-mix(in srgb, var(--error-error-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3424
3523
|
}
|
|
3425
3524
|
|
|
3426
|
-
.bg-
|
|
3525
|
+
.bg-error-600 {
|
|
3427
3526
|
--tw-bg-opacity: 1;
|
|
3428
|
-
background-color: color-mix(in srgb, var(--
|
|
3527
|
+
background-color: color-mix(in srgb, var(--error-error-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3429
3528
|
}
|
|
3430
3529
|
|
|
3431
|
-
.bg-
|
|
3530
|
+
.bg-error-700 {
|
|
3432
3531
|
--tw-bg-opacity: 1;
|
|
3433
|
-
background-color: color-mix(in srgb, var(--
|
|
3532
|
+
background-color: color-mix(in srgb, var(--error-error-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3434
3533
|
}
|
|
3435
3534
|
|
|
3436
|
-
.bg-
|
|
3535
|
+
.bg-error-800 {
|
|
3437
3536
|
--tw-bg-opacity: 1;
|
|
3438
|
-
background-color: color-mix(in srgb, var(--
|
|
3537
|
+
background-color: color-mix(in srgb, var(--error-error-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3439
3538
|
}
|
|
3440
3539
|
|
|
3441
|
-
.bg-
|
|
3540
|
+
.bg-error-900 {
|
|
3442
3541
|
--tw-bg-opacity: 1;
|
|
3443
|
-
background-color: color-mix(in srgb, var(--
|
|
3542
|
+
background-color: color-mix(in srgb, var(--error-error-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3444
3543
|
}
|
|
3445
3544
|
|
|
3446
|
-
.bg-
|
|
3545
|
+
.bg-error-foreground {
|
|
3447
3546
|
--tw-bg-opacity: 1;
|
|
3448
|
-
background-color: color-mix(in srgb, var(--
|
|
3547
|
+
background-color: color-mix(in srgb, var(--error-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3449
3548
|
}
|
|
3450
3549
|
|
|
3451
|
-
.bg-
|
|
3550
|
+
.bg-error-transparent-12 {
|
|
3452
3551
|
--tw-bg-opacity: 1;
|
|
3453
|
-
background-color: color-mix(in srgb, var(--
|
|
3552
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3454
3553
|
}
|
|
3455
3554
|
|
|
3456
|
-
.bg-
|
|
3555
|
+
.bg-error-transparent-16 {
|
|
3457
3556
|
--tw-bg-opacity: 1;
|
|
3458
|
-
background-color: color-mix(in srgb, var(--
|
|
3557
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3459
3558
|
}
|
|
3460
3559
|
|
|
3461
|
-
.bg-
|
|
3560
|
+
.bg-error-transparent-24 {
|
|
3462
3561
|
--tw-bg-opacity: 1;
|
|
3463
|
-
background-color: color-mix(in srgb, var(--other-transparency-
|
|
3562
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3464
3563
|
}
|
|
3465
3564
|
|
|
3466
|
-
.bg-
|
|
3565
|
+
.bg-error-transparent-32 {
|
|
3467
3566
|
--tw-bg-opacity: 1;
|
|
3468
|
-
background-color: color-mix(in srgb, var(--
|
|
3567
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3469
3568
|
}
|
|
3470
3569
|
|
|
3471
|
-
.bg-transparent {
|
|
3472
|
-
|
|
3570
|
+
.bg-error-transparent-48 {
|
|
3571
|
+
--tw-bg-opacity: 1;
|
|
3572
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3473
3573
|
}
|
|
3474
3574
|
|
|
3475
|
-
.bg-
|
|
3575
|
+
.bg-error-transparent-8 {
|
|
3476
3576
|
--tw-bg-opacity: 1;
|
|
3477
|
-
background-color: color-mix(in srgb, var(--other-transparency-
|
|
3577
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3478
3578
|
}
|
|
3479
3579
|
|
|
3480
|
-
.bg-
|
|
3580
|
+
.bg-foreground {
|
|
3481
3581
|
--tw-bg-opacity: 1;
|
|
3482
|
-
background-color:
|
|
3582
|
+
background-color: color-mix(in srgb, var(--foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3483
3583
|
}
|
|
3484
3584
|
|
|
3485
|
-
.
|
|
3486
|
-
|
|
3585
|
+
.bg-function-active-hover {
|
|
3586
|
+
--tw-bg-opacity: 1;
|
|
3587
|
+
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3487
3588
|
}
|
|
3488
3589
|
|
|
3489
|
-
.
|
|
3490
|
-
|
|
3590
|
+
.bg-function-active-hover-bg {
|
|
3591
|
+
--tw-bg-opacity: 1;
|
|
3592
|
+
background-color: color-mix(in srgb, var(--function-active-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3491
3593
|
}
|
|
3492
3594
|
|
|
3493
|
-
.
|
|
3494
|
-
|
|
3595
|
+
.bg-function-active-icon {
|
|
3596
|
+
--tw-bg-opacity: 1;
|
|
3597
|
+
background-color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3495
3598
|
}
|
|
3496
3599
|
|
|
3497
|
-
.
|
|
3498
|
-
|
|
3600
|
+
.bg-function-active-solid {
|
|
3601
|
+
--tw-bg-opacity: 1;
|
|
3602
|
+
background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3499
3603
|
}
|
|
3500
3604
|
|
|
3501
|
-
.
|
|
3502
|
-
|
|
3605
|
+
.bg-function-active-stroke {
|
|
3606
|
+
--tw-bg-opacity: 1;
|
|
3607
|
+
background-color: color-mix(in srgb, var(--function-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3503
3608
|
}
|
|
3504
3609
|
|
|
3505
|
-
.
|
|
3506
|
-
|
|
3610
|
+
.bg-function-default-hover {
|
|
3611
|
+
--tw-bg-opacity: 1;
|
|
3612
|
+
background-color: color-mix(in srgb, var(--function-default-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3507
3613
|
}
|
|
3508
3614
|
|
|
3509
|
-
.
|
|
3510
|
-
|
|
3615
|
+
.bg-function-default-hover-bg {
|
|
3616
|
+
--tw-bg-opacity: 1;
|
|
3617
|
+
background-color: color-mix(in srgb, var(--function-default-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3511
3618
|
}
|
|
3512
3619
|
|
|
3513
|
-
.
|
|
3514
|
-
|
|
3620
|
+
.bg-function-default-icon {
|
|
3621
|
+
--tw-bg-opacity: 1;
|
|
3622
|
+
background-color: color-mix(in srgb, var(--function-default-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3515
3623
|
}
|
|
3516
3624
|
|
|
3517
|
-
.
|
|
3518
|
-
|
|
3625
|
+
.bg-function-default-outline {
|
|
3626
|
+
--tw-bg-opacity: 1;
|
|
3627
|
+
background-color: color-mix(in srgb, var(--function-default-outline-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3519
3628
|
}
|
|
3520
3629
|
|
|
3521
|
-
.
|
|
3522
|
-
|
|
3630
|
+
.bg-function-default-solid {
|
|
3631
|
+
--tw-bg-opacity: 1;
|
|
3632
|
+
background-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3523
3633
|
}
|
|
3524
3634
|
|
|
3525
|
-
.
|
|
3526
|
-
|
|
3635
|
+
.bg-function-default-stroke {
|
|
3636
|
+
--tw-bg-opacity: 1;
|
|
3637
|
+
background-color: color-mix(in srgb, var(--function-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3527
3638
|
}
|
|
3528
3639
|
|
|
3529
|
-
.
|
|
3530
|
-
|
|
3640
|
+
.bg-gray-200 {
|
|
3641
|
+
--tw-bg-opacity: 1;
|
|
3642
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
3531
3643
|
}
|
|
3532
3644
|
|
|
3533
|
-
.
|
|
3534
|
-
|
|
3645
|
+
.bg-grey-10 {
|
|
3646
|
+
--tw-bg-opacity: 1;
|
|
3647
|
+
background-color: color-mix(in srgb, var(--grey-grey-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3535
3648
|
}
|
|
3536
3649
|
|
|
3537
|
-
.
|
|
3538
|
-
|
|
3650
|
+
.bg-grey-100 {
|
|
3651
|
+
--tw-bg-opacity: 1;
|
|
3652
|
+
background-color: color-mix(in srgb, var(--grey-grey-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3539
3653
|
}
|
|
3540
3654
|
|
|
3541
|
-
.
|
|
3542
|
-
|
|
3655
|
+
.bg-grey-110 {
|
|
3656
|
+
--tw-bg-opacity: 1;
|
|
3657
|
+
background-color: color-mix(in srgb, var(--grey-grey-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3543
3658
|
}
|
|
3544
3659
|
|
|
3545
|
-
.
|
|
3546
|
-
|
|
3660
|
+
.bg-grey-120 {
|
|
3661
|
+
--tw-bg-opacity: 1;
|
|
3662
|
+
background-color: color-mix(in srgb, var(--grey-grey-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3547
3663
|
}
|
|
3548
3664
|
|
|
3549
|
-
.
|
|
3550
|
-
|
|
3665
|
+
.bg-grey-130 {
|
|
3666
|
+
--tw-bg-opacity: 1;
|
|
3667
|
+
background-color: color-mix(in srgb, var(--grey-grey-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3551
3668
|
}
|
|
3552
3669
|
|
|
3553
|
-
.
|
|
3554
|
-
|
|
3670
|
+
.bg-grey-140 {
|
|
3671
|
+
--tw-bg-opacity: 1;
|
|
3672
|
+
background-color: color-mix(in srgb, var(--grey-grey-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3555
3673
|
}
|
|
3556
3674
|
|
|
3557
|
-
.
|
|
3558
|
-
|
|
3675
|
+
.bg-grey-150 {
|
|
3676
|
+
--tw-bg-opacity: 1;
|
|
3677
|
+
background-color: color-mix(in srgb, var(--grey-grey-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3559
3678
|
}
|
|
3560
3679
|
|
|
3561
|
-
.
|
|
3562
|
-
|
|
3680
|
+
.bg-grey-20 {
|
|
3681
|
+
--tw-bg-opacity: 1;
|
|
3682
|
+
background-color: color-mix(in srgb, var(--grey-grey-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3563
3683
|
}
|
|
3564
3684
|
|
|
3565
|
-
.
|
|
3566
|
-
|
|
3685
|
+
.bg-grey-30 {
|
|
3686
|
+
--tw-bg-opacity: 1;
|
|
3687
|
+
background-color: color-mix(in srgb, var(--grey-grey-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3567
3688
|
}
|
|
3568
3689
|
|
|
3569
|
-
.
|
|
3570
|
-
|
|
3690
|
+
.bg-grey-40 {
|
|
3691
|
+
--tw-bg-opacity: 1;
|
|
3692
|
+
background-color: color-mix(in srgb, var(--grey-grey-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3571
3693
|
}
|
|
3572
3694
|
|
|
3573
|
-
.
|
|
3574
|
-
|
|
3695
|
+
.bg-grey-5 {
|
|
3696
|
+
--tw-bg-opacity: 1;
|
|
3697
|
+
background-color: color-mix(in srgb, var(--grey-grey-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3575
3698
|
}
|
|
3576
3699
|
|
|
3577
|
-
.
|
|
3578
|
-
|
|
3700
|
+
.bg-grey-50 {
|
|
3701
|
+
--tw-bg-opacity: 1;
|
|
3702
|
+
background-color: color-mix(in srgb, var(--grey-grey-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3579
3703
|
}
|
|
3580
3704
|
|
|
3581
|
-
.
|
|
3582
|
-
|
|
3705
|
+
.bg-grey-60 {
|
|
3706
|
+
--tw-bg-opacity: 1;
|
|
3707
|
+
background-color: color-mix(in srgb, var(--grey-grey-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3583
3708
|
}
|
|
3584
3709
|
|
|
3585
|
-
.
|
|
3586
|
-
|
|
3710
|
+
.bg-grey-70 {
|
|
3711
|
+
--tw-bg-opacity: 1;
|
|
3712
|
+
background-color: color-mix(in srgb, var(--grey-grey-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3587
3713
|
}
|
|
3588
3714
|
|
|
3589
|
-
.
|
|
3590
|
-
|
|
3715
|
+
.bg-grey-80 {
|
|
3716
|
+
--tw-bg-opacity: 1;
|
|
3717
|
+
background-color: color-mix(in srgb, var(--grey-grey-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3591
3718
|
}
|
|
3592
3719
|
|
|
3593
|
-
.
|
|
3594
|
-
|
|
3720
|
+
.bg-grey-90 {
|
|
3721
|
+
--tw-bg-opacity: 1;
|
|
3722
|
+
background-color: color-mix(in srgb, var(--grey-grey-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3595
3723
|
}
|
|
3596
3724
|
|
|
3597
|
-
.
|
|
3598
|
-
|
|
3725
|
+
.bg-grey-transparent-12 {
|
|
3726
|
+
--tw-bg-opacity: 1;
|
|
3727
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3599
3728
|
}
|
|
3600
3729
|
|
|
3601
|
-
.
|
|
3602
|
-
|
|
3730
|
+
.bg-grey-transparent-16 {
|
|
3731
|
+
--tw-bg-opacity: 1;
|
|
3732
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3603
3733
|
}
|
|
3604
3734
|
|
|
3605
|
-
.
|
|
3606
|
-
|
|
3735
|
+
.bg-grey-transparent-24 {
|
|
3736
|
+
--tw-bg-opacity: 1;
|
|
3737
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3607
3738
|
}
|
|
3608
3739
|
|
|
3609
|
-
.
|
|
3610
|
-
|
|
3740
|
+
.bg-grey-transparent-32 {
|
|
3741
|
+
--tw-bg-opacity: 1;
|
|
3742
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3611
3743
|
}
|
|
3612
3744
|
|
|
3613
|
-
.
|
|
3614
|
-
|
|
3745
|
+
.bg-grey-transparent-48 {
|
|
3746
|
+
--tw-bg-opacity: 1;
|
|
3747
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3615
3748
|
}
|
|
3616
3749
|
|
|
3617
|
-
.
|
|
3618
|
-
|
|
3750
|
+
.bg-grey-transparent-8 {
|
|
3751
|
+
--tw-bg-opacity: 1;
|
|
3752
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3619
3753
|
}
|
|
3620
3754
|
|
|
3621
|
-
.
|
|
3622
|
-
|
|
3755
|
+
.bg-grey2-100 {
|
|
3756
|
+
--tw-bg-opacity: 1;
|
|
3757
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3623
3758
|
}
|
|
3624
3759
|
|
|
3625
|
-
.
|
|
3626
|
-
|
|
3760
|
+
.bg-grey2-200 {
|
|
3761
|
+
--tw-bg-opacity: 1;
|
|
3762
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3627
3763
|
}
|
|
3628
3764
|
|
|
3629
|
-
.
|
|
3630
|
-
|
|
3765
|
+
.bg-grey2-300 {
|
|
3766
|
+
--tw-bg-opacity: 1;
|
|
3767
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3631
3768
|
}
|
|
3632
3769
|
|
|
3633
|
-
.
|
|
3634
|
-
|
|
3770
|
+
.bg-grey2-400 {
|
|
3771
|
+
--tw-bg-opacity: 1;
|
|
3772
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3635
3773
|
}
|
|
3636
3774
|
|
|
3637
|
-
.
|
|
3638
|
-
|
|
3775
|
+
.bg-grey2-50 {
|
|
3776
|
+
--tw-bg-opacity: 1;
|
|
3777
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3639
3778
|
}
|
|
3640
3779
|
|
|
3641
|
-
.
|
|
3642
|
-
|
|
3780
|
+
.bg-grey2-500 {
|
|
3781
|
+
--tw-bg-opacity: 1;
|
|
3782
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3643
3783
|
}
|
|
3644
3784
|
|
|
3645
|
-
.
|
|
3646
|
-
|
|
3785
|
+
.bg-grey2-600 {
|
|
3786
|
+
--tw-bg-opacity: 1;
|
|
3787
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3647
3788
|
}
|
|
3648
3789
|
|
|
3649
|
-
.
|
|
3650
|
-
|
|
3790
|
+
.bg-grey2-700 {
|
|
3791
|
+
--tw-bg-opacity: 1;
|
|
3792
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3651
3793
|
}
|
|
3652
3794
|
|
|
3653
|
-
.
|
|
3654
|
-
|
|
3795
|
+
.bg-grey2-800 {
|
|
3796
|
+
--tw-bg-opacity: 1;
|
|
3797
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3655
3798
|
}
|
|
3656
3799
|
|
|
3657
|
-
.
|
|
3658
|
-
|
|
3800
|
+
.bg-grey2-900 {
|
|
3801
|
+
--tw-bg-opacity: 1;
|
|
3802
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3659
3803
|
}
|
|
3660
3804
|
|
|
3661
|
-
.
|
|
3662
|
-
|
|
3805
|
+
.bg-grey2-transparent-12 {
|
|
3806
|
+
--tw-bg-opacity: 1;
|
|
3807
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3663
3808
|
}
|
|
3664
3809
|
|
|
3665
|
-
.
|
|
3666
|
-
|
|
3810
|
+
.bg-grey2-transparent-16 {
|
|
3811
|
+
--tw-bg-opacity: 1;
|
|
3812
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3813
|
+
}
|
|
3814
|
+
|
|
3815
|
+
.bg-grey2-transparent-24 {
|
|
3816
|
+
--tw-bg-opacity: 1;
|
|
3817
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
.bg-grey2-transparent-32 {
|
|
3821
|
+
--tw-bg-opacity: 1;
|
|
3822
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3823
|
+
}
|
|
3824
|
+
|
|
3825
|
+
.bg-grey2-transparent-48 {
|
|
3826
|
+
--tw-bg-opacity: 1;
|
|
3827
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3828
|
+
}
|
|
3829
|
+
|
|
3830
|
+
.bg-grey2-transparent-8 {
|
|
3831
|
+
--tw-bg-opacity: 1;
|
|
3832
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
.bg-info {
|
|
3836
|
+
--tw-bg-opacity: 1;
|
|
3837
|
+
background-color: color-mix(in srgb, var(--state-color-info-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
.bg-info-100 {
|
|
3841
|
+
--tw-bg-opacity: 1;
|
|
3842
|
+
background-color: color-mix(in srgb, var(--info-info-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.bg-info-200 {
|
|
3846
|
+
--tw-bg-opacity: 1;
|
|
3847
|
+
background-color: color-mix(in srgb, var(--info-info-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3848
|
+
}
|
|
3849
|
+
|
|
3850
|
+
.bg-info-300 {
|
|
3851
|
+
--tw-bg-opacity: 1;
|
|
3852
|
+
background-color: color-mix(in srgb, var(--info-info-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3853
|
+
}
|
|
3854
|
+
|
|
3855
|
+
.bg-info-400 {
|
|
3856
|
+
--tw-bg-opacity: 1;
|
|
3857
|
+
background-color: color-mix(in srgb, var(--info-info-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3858
|
+
}
|
|
3859
|
+
|
|
3860
|
+
.bg-info-50 {
|
|
3861
|
+
--tw-bg-opacity: 1;
|
|
3862
|
+
background-color: color-mix(in srgb, var(--info-info-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
.bg-info-500 {
|
|
3866
|
+
--tw-bg-opacity: 1;
|
|
3867
|
+
background-color: color-mix(in srgb, var(--info-info-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3870
|
+
.bg-info-600 {
|
|
3871
|
+
--tw-bg-opacity: 1;
|
|
3872
|
+
background-color: color-mix(in srgb, var(--info-info-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
.bg-info-700 {
|
|
3876
|
+
--tw-bg-opacity: 1;
|
|
3877
|
+
background-color: color-mix(in srgb, var(--info-info-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3878
|
+
}
|
|
3879
|
+
|
|
3880
|
+
.bg-info-800 {
|
|
3881
|
+
--tw-bg-opacity: 1;
|
|
3882
|
+
background-color: color-mix(in srgb, var(--info-info-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
.bg-info-900 {
|
|
3886
|
+
--tw-bg-opacity: 1;
|
|
3887
|
+
background-color: color-mix(in srgb, var(--info-info-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
.bg-info-foreground {
|
|
3891
|
+
--tw-bg-opacity: 1;
|
|
3892
|
+
background-color: color-mix(in srgb, var(--info-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3893
|
+
}
|
|
3894
|
+
|
|
3895
|
+
.bg-info-transparent-12 {
|
|
3896
|
+
--tw-bg-opacity: 1;
|
|
3897
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3898
|
+
}
|
|
3899
|
+
|
|
3900
|
+
.bg-info-transparent-16 {
|
|
3901
|
+
--tw-bg-opacity: 1;
|
|
3902
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.bg-info-transparent-24 {
|
|
3906
|
+
--tw-bg-opacity: 1;
|
|
3907
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
.bg-info-transparent-32 {
|
|
3911
|
+
--tw-bg-opacity: 1;
|
|
3912
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3913
|
+
}
|
|
3914
|
+
|
|
3915
|
+
.bg-info-transparent-48 {
|
|
3916
|
+
--tw-bg-opacity: 1;
|
|
3917
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3918
|
+
}
|
|
3919
|
+
|
|
3920
|
+
.bg-info-transparent-8 {
|
|
3921
|
+
--tw-bg-opacity: 1;
|
|
3922
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.bg-input-active-stroke {
|
|
3926
|
+
--tw-bg-opacity: 1;
|
|
3927
|
+
background-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.bg-input-default-stroke {
|
|
3931
|
+
--tw-bg-opacity: 1;
|
|
3932
|
+
background-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3933
|
+
}
|
|
3934
|
+
|
|
3935
|
+
.bg-input-default-text {
|
|
3936
|
+
--tw-bg-opacity: 1;
|
|
3937
|
+
background-color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3940
|
+
.bg-input-disable-bg {
|
|
3941
|
+
--tw-bg-opacity: 1;
|
|
3942
|
+
background-color: color-mix(in srgb, var(--input-color-disable-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
.bg-input-disable-stroke {
|
|
3946
|
+
--tw-bg-opacity: 1;
|
|
3947
|
+
background-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3948
|
+
}
|
|
3949
|
+
|
|
3950
|
+
.bg-input-disable-text {
|
|
3951
|
+
--tw-bg-opacity: 1;
|
|
3952
|
+
background-color: color-mix(in srgb, var(--input-color-disable-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
.bg-input-error {
|
|
3956
|
+
--tw-bg-opacity: 1;
|
|
3957
|
+
background-color: color-mix(in srgb, var(--input-color-error) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3958
|
+
}
|
|
3959
|
+
|
|
3960
|
+
.bg-input-filled-text {
|
|
3961
|
+
--tw-bg-opacity: 1;
|
|
3962
|
+
background-color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3963
|
+
}
|
|
3964
|
+
|
|
3965
|
+
.bg-input-label-bg {
|
|
3966
|
+
--tw-bg-opacity: 1;
|
|
3967
|
+
background-color: color-mix(in srgb, var(--input-color-label-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
.bg-primary {
|
|
3971
|
+
--tw-bg-opacity: 1;
|
|
3972
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3973
|
+
}
|
|
3974
|
+
|
|
3975
|
+
.bg-primary-10 {
|
|
3976
|
+
--tw-bg-opacity: 1;
|
|
3977
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
.bg-primary-100 {
|
|
3981
|
+
--tw-bg-opacity: 1;
|
|
3982
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
.bg-primary-110 {
|
|
3986
|
+
--tw-bg-opacity: 1;
|
|
3987
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3988
|
+
}
|
|
3989
|
+
|
|
3990
|
+
.bg-primary-120 {
|
|
3991
|
+
--tw-bg-opacity: 1;
|
|
3992
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3993
|
+
}
|
|
3994
|
+
|
|
3995
|
+
.bg-primary-130 {
|
|
3996
|
+
--tw-bg-opacity: 1;
|
|
3997
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3998
|
+
}
|
|
3999
|
+
|
|
4000
|
+
.bg-primary-140 {
|
|
4001
|
+
--tw-bg-opacity: 1;
|
|
4002
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.bg-primary-150 {
|
|
4006
|
+
--tw-bg-opacity: 1;
|
|
4007
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4008
|
+
}
|
|
4009
|
+
|
|
4010
|
+
.bg-primary-20 {
|
|
4011
|
+
--tw-bg-opacity: 1;
|
|
4012
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
.bg-primary-30 {
|
|
4016
|
+
--tw-bg-opacity: 1;
|
|
4017
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.bg-primary-40 {
|
|
4021
|
+
--tw-bg-opacity: 1;
|
|
4022
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4023
|
+
}
|
|
4024
|
+
|
|
4025
|
+
.bg-primary-5 {
|
|
4026
|
+
--tw-bg-opacity: 1;
|
|
4027
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
.bg-primary-50 {
|
|
4031
|
+
--tw-bg-opacity: 1;
|
|
4032
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4033
|
+
}
|
|
4034
|
+
|
|
4035
|
+
.bg-primary-60 {
|
|
4036
|
+
--tw-bg-opacity: 1;
|
|
4037
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4038
|
+
}
|
|
4039
|
+
|
|
4040
|
+
.bg-primary-70 {
|
|
4041
|
+
--tw-bg-opacity: 1;
|
|
4042
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4043
|
+
}
|
|
4044
|
+
|
|
4045
|
+
.bg-primary-80 {
|
|
4046
|
+
--tw-bg-opacity: 1;
|
|
4047
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
.bg-primary-90 {
|
|
4051
|
+
--tw-bg-opacity: 1;
|
|
4052
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4053
|
+
}
|
|
4054
|
+
|
|
4055
|
+
.bg-primary-default {
|
|
4056
|
+
--tw-bg-opacity: 1;
|
|
4057
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4058
|
+
}
|
|
4059
|
+
|
|
4060
|
+
.bg-primary-foreground {
|
|
4061
|
+
--tw-bg-opacity: 1;
|
|
4062
|
+
background-color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4063
|
+
}
|
|
4064
|
+
|
|
4065
|
+
.bg-primary-hover {
|
|
4066
|
+
--tw-bg-opacity: 1;
|
|
4067
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4068
|
+
}
|
|
4069
|
+
|
|
4070
|
+
.bg-primary-hover-bg {
|
|
4071
|
+
--tw-bg-opacity: 1;
|
|
4072
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4073
|
+
}
|
|
4074
|
+
|
|
4075
|
+
.bg-primary-pressed {
|
|
4076
|
+
--tw-bg-opacity: 1;
|
|
4077
|
+
background-color: color-mix(in srgb, var(--state-color-primary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4080
|
+
.bg-primary-stroke {
|
|
4081
|
+
--tw-bg-opacity: 1;
|
|
4082
|
+
background-color: color-mix(in srgb, var(--state-color-primary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
.bg-primary-text-outline {
|
|
4086
|
+
--tw-bg-opacity: 1;
|
|
4087
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4088
|
+
}
|
|
4089
|
+
|
|
4090
|
+
.bg-primary-text-pressed {
|
|
4091
|
+
--tw-bg-opacity: 1;
|
|
4092
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4093
|
+
}
|
|
4094
|
+
|
|
4095
|
+
.bg-primary-text-solid {
|
|
4096
|
+
--tw-bg-opacity: 1;
|
|
4097
|
+
background-color: color-mix(in srgb, var(--state-color-primary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
.bg-primary-transparent-12 {
|
|
4101
|
+
--tw-bg-opacity: 1;
|
|
4102
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4103
|
+
}
|
|
4104
|
+
|
|
4105
|
+
.bg-primary-transparent-16 {
|
|
4106
|
+
--tw-bg-opacity: 1;
|
|
4107
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4108
|
+
}
|
|
4109
|
+
|
|
4110
|
+
.bg-primary-transparent-24 {
|
|
4111
|
+
--tw-bg-opacity: 1;
|
|
4112
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4113
|
+
}
|
|
4114
|
+
|
|
4115
|
+
.bg-primary-transparent-32 {
|
|
4116
|
+
--tw-bg-opacity: 1;
|
|
4117
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
.bg-primary-transparent-48 {
|
|
4121
|
+
--tw-bg-opacity: 1;
|
|
4122
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4123
|
+
}
|
|
4124
|
+
|
|
4125
|
+
.bg-primary-transparent-8 {
|
|
4126
|
+
--tw-bg-opacity: 1;
|
|
4127
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4128
|
+
}
|
|
4129
|
+
|
|
4130
|
+
.bg-secondary {
|
|
4131
|
+
--tw-bg-opacity: 1;
|
|
4132
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
.bg-secondary-10 {
|
|
4136
|
+
--tw-bg-opacity: 1;
|
|
4137
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.bg-secondary-100 {
|
|
4141
|
+
--tw-bg-opacity: 1;
|
|
4142
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4143
|
+
}
|
|
4144
|
+
|
|
4145
|
+
.bg-secondary-110 {
|
|
4146
|
+
--tw-bg-opacity: 1;
|
|
4147
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4148
|
+
}
|
|
4149
|
+
|
|
4150
|
+
.bg-secondary-120 {
|
|
4151
|
+
--tw-bg-opacity: 1;
|
|
4152
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
.bg-secondary-130 {
|
|
4156
|
+
--tw-bg-opacity: 1;
|
|
4157
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4158
|
+
}
|
|
4159
|
+
|
|
4160
|
+
.bg-secondary-140 {
|
|
4161
|
+
--tw-bg-opacity: 1;
|
|
4162
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4163
|
+
}
|
|
4164
|
+
|
|
4165
|
+
.bg-secondary-150 {
|
|
4166
|
+
--tw-bg-opacity: 1;
|
|
4167
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4168
|
+
}
|
|
4169
|
+
|
|
4170
|
+
.bg-secondary-20 {
|
|
4171
|
+
--tw-bg-opacity: 1;
|
|
4172
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4173
|
+
}
|
|
4174
|
+
|
|
4175
|
+
.bg-secondary-30 {
|
|
4176
|
+
--tw-bg-opacity: 1;
|
|
4177
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4178
|
+
}
|
|
4179
|
+
|
|
4180
|
+
.bg-secondary-40 {
|
|
4181
|
+
--tw-bg-opacity: 1;
|
|
4182
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4183
|
+
}
|
|
4184
|
+
|
|
4185
|
+
.bg-secondary-5 {
|
|
4186
|
+
--tw-bg-opacity: 1;
|
|
4187
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
.bg-secondary-50 {
|
|
4191
|
+
--tw-bg-opacity: 1;
|
|
4192
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4193
|
+
}
|
|
4194
|
+
|
|
4195
|
+
.bg-secondary-60 {
|
|
4196
|
+
--tw-bg-opacity: 1;
|
|
4197
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4198
|
+
}
|
|
4199
|
+
|
|
4200
|
+
.bg-secondary-70 {
|
|
4201
|
+
--tw-bg-opacity: 1;
|
|
4202
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4203
|
+
}
|
|
4204
|
+
|
|
4205
|
+
.bg-secondary-80 {
|
|
4206
|
+
--tw-bg-opacity: 1;
|
|
4207
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4208
|
+
}
|
|
4209
|
+
|
|
4210
|
+
.bg-secondary-90 {
|
|
4211
|
+
--tw-bg-opacity: 1;
|
|
4212
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4213
|
+
}
|
|
4214
|
+
|
|
4215
|
+
.bg-secondary-active {
|
|
4216
|
+
--tw-bg-opacity: 1;
|
|
4217
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4218
|
+
}
|
|
4219
|
+
|
|
4220
|
+
.bg-secondary-default {
|
|
4221
|
+
--tw-bg-opacity: 1;
|
|
4222
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
.bg-secondary-foreground {
|
|
4226
|
+
--tw-bg-opacity: 1;
|
|
4227
|
+
background-color: color-mix(in srgb, var(--secondary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4228
|
+
}
|
|
4229
|
+
|
|
4230
|
+
.bg-secondary-hover {
|
|
4231
|
+
--tw-bg-opacity: 1;
|
|
4232
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4235
|
+
.bg-secondary-hover-bg {
|
|
4236
|
+
--tw-bg-opacity: 1;
|
|
4237
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4240
|
+
.bg-secondary-pressed {
|
|
4241
|
+
--tw-bg-opacity: 1;
|
|
4242
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
.bg-secondary-stroke {
|
|
4246
|
+
--tw-bg-opacity: 1;
|
|
4247
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
.bg-secondary-text-outline {
|
|
4251
|
+
--tw-bg-opacity: 1;
|
|
4252
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4253
|
+
}
|
|
4254
|
+
|
|
4255
|
+
.bg-secondary-text-pressed {
|
|
4256
|
+
--tw-bg-opacity: 1;
|
|
4257
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4258
|
+
}
|
|
4259
|
+
|
|
4260
|
+
.bg-secondary-text-solid {
|
|
4261
|
+
--tw-bg-opacity: 1;
|
|
4262
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4263
|
+
}
|
|
4264
|
+
|
|
4265
|
+
.bg-secondary-transparent-12 {
|
|
4266
|
+
--tw-bg-opacity: 1;
|
|
4267
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4268
|
+
}
|
|
4269
|
+
|
|
4270
|
+
.bg-secondary-transparent-16 {
|
|
4271
|
+
--tw-bg-opacity: 1;
|
|
4272
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
.bg-secondary-transparent-24 {
|
|
4276
|
+
--tw-bg-opacity: 1;
|
|
4277
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4278
|
+
}
|
|
4279
|
+
|
|
4280
|
+
.bg-secondary-transparent-32 {
|
|
4281
|
+
--tw-bg-opacity: 1;
|
|
4282
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4283
|
+
}
|
|
4284
|
+
|
|
4285
|
+
.bg-secondary-transparent-48 {
|
|
4286
|
+
--tw-bg-opacity: 1;
|
|
4287
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4288
|
+
}
|
|
4289
|
+
|
|
4290
|
+
.bg-secondary-transparent-8 {
|
|
4291
|
+
--tw-bg-opacity: 1;
|
|
4292
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.bg-state-disable-outline {
|
|
4296
|
+
--tw-bg-opacity: 1;
|
|
4297
|
+
background-color: color-mix(in srgb, var(--state-color-disable-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4298
|
+
}
|
|
4299
|
+
|
|
4300
|
+
.bg-state-disable-solid {
|
|
4301
|
+
--tw-bg-opacity: 1;
|
|
4302
|
+
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4305
|
+
.bg-success {
|
|
4306
|
+
--tw-bg-opacity: 1;
|
|
4307
|
+
background-color: color-mix(in srgb, var(--state-color-success-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4308
|
+
}
|
|
4309
|
+
|
|
4310
|
+
.bg-success-100 {
|
|
4311
|
+
--tw-bg-opacity: 1;
|
|
4312
|
+
background-color: color-mix(in srgb, var(--success-success-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
.bg-success-200 {
|
|
4316
|
+
--tw-bg-opacity: 1;
|
|
4317
|
+
background-color: color-mix(in srgb, var(--success-success-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4318
|
+
}
|
|
4319
|
+
|
|
4320
|
+
.bg-success-300 {
|
|
4321
|
+
--tw-bg-opacity: 1;
|
|
4322
|
+
background-color: color-mix(in srgb, var(--success-success-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4325
|
+
.bg-success-400 {
|
|
4326
|
+
--tw-bg-opacity: 1;
|
|
4327
|
+
background-color: color-mix(in srgb, var(--success-success-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4328
|
+
}
|
|
4329
|
+
|
|
4330
|
+
.bg-success-50 {
|
|
4331
|
+
--tw-bg-opacity: 1;
|
|
4332
|
+
background-color: color-mix(in srgb, var(--success-success-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
.bg-success-500 {
|
|
4336
|
+
--tw-bg-opacity: 1;
|
|
4337
|
+
background-color: color-mix(in srgb, var(--success-success-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4338
|
+
}
|
|
4339
|
+
|
|
4340
|
+
.bg-success-600 {
|
|
4341
|
+
--tw-bg-opacity: 1;
|
|
4342
|
+
background-color: color-mix(in srgb, var(--success-success-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4345
|
+
.bg-success-700 {
|
|
4346
|
+
--tw-bg-opacity: 1;
|
|
4347
|
+
background-color: color-mix(in srgb, var(--success-success-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4348
|
+
}
|
|
4349
|
+
|
|
4350
|
+
.bg-success-800 {
|
|
4351
|
+
--tw-bg-opacity: 1;
|
|
4352
|
+
background-color: color-mix(in srgb, var(--success-success-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.bg-success-900 {
|
|
4356
|
+
--tw-bg-opacity: 1;
|
|
4357
|
+
background-color: color-mix(in srgb, var(--success-success-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4358
|
+
}
|
|
4359
|
+
|
|
4360
|
+
.bg-success-foreground {
|
|
4361
|
+
--tw-bg-opacity: 1;
|
|
4362
|
+
background-color: color-mix(in srgb, var(--success-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4365
|
+
.bg-success-transparent-12 {
|
|
4366
|
+
--tw-bg-opacity: 1;
|
|
4367
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4368
|
+
}
|
|
4369
|
+
|
|
4370
|
+
.bg-success-transparent-16 {
|
|
4371
|
+
--tw-bg-opacity: 1;
|
|
4372
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.bg-success-transparent-24 {
|
|
4376
|
+
--tw-bg-opacity: 1;
|
|
4377
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4378
|
+
}
|
|
4379
|
+
|
|
4380
|
+
.bg-success-transparent-32 {
|
|
4381
|
+
--tw-bg-opacity: 1;
|
|
4382
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
.bg-success-transparent-48 {
|
|
4386
|
+
--tw-bg-opacity: 1;
|
|
4387
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4388
|
+
}
|
|
4389
|
+
|
|
4390
|
+
.bg-success-transparent-8 {
|
|
4391
|
+
--tw-bg-opacity: 1;
|
|
4392
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4395
|
+
.bg-surface {
|
|
4396
|
+
--tw-bg-opacity: 1;
|
|
4397
|
+
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.bg-tertiary {
|
|
4401
|
+
--tw-bg-opacity: 1;
|
|
4402
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
.bg-tertiary-10 {
|
|
4406
|
+
--tw-bg-opacity: 1;
|
|
4407
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4408
|
+
}
|
|
4409
|
+
|
|
4410
|
+
.bg-tertiary-100 {
|
|
4411
|
+
--tw-bg-opacity: 1;
|
|
4412
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
.bg-tertiary-110 {
|
|
4416
|
+
--tw-bg-opacity: 1;
|
|
4417
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
.bg-tertiary-120 {
|
|
4421
|
+
--tw-bg-opacity: 1;
|
|
4422
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4423
|
+
}
|
|
4424
|
+
|
|
4425
|
+
.bg-tertiary-130 {
|
|
4426
|
+
--tw-bg-opacity: 1;
|
|
4427
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4428
|
+
}
|
|
4429
|
+
|
|
4430
|
+
.bg-tertiary-140 {
|
|
4431
|
+
--tw-bg-opacity: 1;
|
|
4432
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4433
|
+
}
|
|
4434
|
+
|
|
4435
|
+
.bg-tertiary-150 {
|
|
4436
|
+
--tw-bg-opacity: 1;
|
|
4437
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4438
|
+
}
|
|
4439
|
+
|
|
4440
|
+
.bg-tertiary-20 {
|
|
4441
|
+
--tw-bg-opacity: 1;
|
|
4442
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4445
|
+
.bg-tertiary-30 {
|
|
4446
|
+
--tw-bg-opacity: 1;
|
|
4447
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
.bg-tertiary-40 {
|
|
4451
|
+
--tw-bg-opacity: 1;
|
|
4452
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4453
|
+
}
|
|
4454
|
+
|
|
4455
|
+
.bg-tertiary-5 {
|
|
4456
|
+
--tw-bg-opacity: 1;
|
|
4457
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4458
|
+
}
|
|
4459
|
+
|
|
4460
|
+
.bg-tertiary-50 {
|
|
4461
|
+
--tw-bg-opacity: 1;
|
|
4462
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4463
|
+
}
|
|
4464
|
+
|
|
4465
|
+
.bg-tertiary-60 {
|
|
4466
|
+
--tw-bg-opacity: 1;
|
|
4467
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4468
|
+
}
|
|
4469
|
+
|
|
4470
|
+
.bg-tertiary-70 {
|
|
4471
|
+
--tw-bg-opacity: 1;
|
|
4472
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4473
|
+
}
|
|
4474
|
+
|
|
4475
|
+
.bg-tertiary-80 {
|
|
4476
|
+
--tw-bg-opacity: 1;
|
|
4477
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4478
|
+
}
|
|
4479
|
+
|
|
4480
|
+
.bg-tertiary-90 {
|
|
4481
|
+
--tw-bg-opacity: 1;
|
|
4482
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4485
|
+
.bg-tertiary-default {
|
|
4486
|
+
--tw-bg-opacity: 1;
|
|
4487
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4488
|
+
}
|
|
4489
|
+
|
|
4490
|
+
.bg-tertiary-foreground {
|
|
4491
|
+
--tw-bg-opacity: 1;
|
|
4492
|
+
background-color: color-mix(in srgb, var(--tertiary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4493
|
+
}
|
|
4494
|
+
|
|
4495
|
+
.bg-tertiary-hover {
|
|
4496
|
+
--tw-bg-opacity: 1;
|
|
4497
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4498
|
+
}
|
|
4499
|
+
|
|
4500
|
+
.bg-tertiary-hover-bg {
|
|
4501
|
+
--tw-bg-opacity: 1;
|
|
4502
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
.bg-tertiary-pressed {
|
|
4506
|
+
--tw-bg-opacity: 1;
|
|
4507
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4508
|
+
}
|
|
4509
|
+
|
|
4510
|
+
.bg-tertiary-stroke {
|
|
4511
|
+
--tw-bg-opacity: 1;
|
|
4512
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.bg-tertiary-text-outline {
|
|
4516
|
+
--tw-bg-opacity: 1;
|
|
4517
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4518
|
+
}
|
|
4519
|
+
|
|
4520
|
+
.bg-tertiary-text-pressed {
|
|
4521
|
+
--tw-bg-opacity: 1;
|
|
4522
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4523
|
+
}
|
|
4524
|
+
|
|
4525
|
+
.bg-tertiary-text-solid {
|
|
4526
|
+
--tw-bg-opacity: 1;
|
|
4527
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-text-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4528
|
+
}
|
|
4529
|
+
|
|
4530
|
+
.bg-tertiary-transparent-12 {
|
|
4531
|
+
--tw-bg-opacity: 1;
|
|
4532
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4533
|
+
}
|
|
4534
|
+
|
|
4535
|
+
.bg-tertiary-transparent-16 {
|
|
4536
|
+
--tw-bg-opacity: 1;
|
|
4537
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4538
|
+
}
|
|
4539
|
+
|
|
4540
|
+
.bg-tertiary-transparent-24 {
|
|
4541
|
+
--tw-bg-opacity: 1;
|
|
4542
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4543
|
+
}
|
|
4544
|
+
|
|
4545
|
+
.bg-tertiary-transparent-32 {
|
|
4546
|
+
--tw-bg-opacity: 1;
|
|
4547
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4548
|
+
}
|
|
4549
|
+
|
|
4550
|
+
.bg-tertiary-transparent-48 {
|
|
4551
|
+
--tw-bg-opacity: 1;
|
|
4552
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
.bg-tertiary-transparent-8 {
|
|
4556
|
+
--tw-bg-opacity: 1;
|
|
4557
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4560
|
+
.bg-text-black {
|
|
4561
|
+
--tw-bg-opacity: 1;
|
|
4562
|
+
background-color: color-mix(in srgb, var(--text-black) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4563
|
+
}
|
|
4564
|
+
|
|
4565
|
+
.bg-text-dark {
|
|
4566
|
+
--tw-bg-opacity: 1;
|
|
4567
|
+
background-color: color-mix(in srgb, var(--text-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4568
|
+
}
|
|
4569
|
+
|
|
4570
|
+
.bg-text-grey-dark {
|
|
4571
|
+
--tw-bg-opacity: 1;
|
|
4572
|
+
background-color: color-mix(in srgb, var(--text-grey-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.bg-text-grey-light {
|
|
4576
|
+
--tw-bg-opacity: 1;
|
|
4577
|
+
background-color: color-mix(in srgb, var(--text-grey-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4578
|
+
}
|
|
4579
|
+
|
|
4580
|
+
.bg-text-grey-medium {
|
|
4581
|
+
--tw-bg-opacity: 1;
|
|
4582
|
+
background-color: color-mix(in srgb, var(--text-grey-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4583
|
+
}
|
|
4584
|
+
|
|
4585
|
+
.bg-text-light {
|
|
4586
|
+
--tw-bg-opacity: 1;
|
|
4587
|
+
background-color: color-mix(in srgb, var(--text-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4588
|
+
}
|
|
4589
|
+
|
|
4590
|
+
.bg-text-medium {
|
|
4591
|
+
--tw-bg-opacity: 1;
|
|
4592
|
+
background-color: color-mix(in srgb, var(--text-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4593
|
+
}
|
|
4594
|
+
|
|
4595
|
+
.bg-text-white {
|
|
4596
|
+
--tw-bg-opacity: 1;
|
|
4597
|
+
background-color: color-mix(in srgb, var(--text-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4598
|
+
}
|
|
4599
|
+
|
|
4600
|
+
.bg-transparent {
|
|
4601
|
+
background-color: transparent;
|
|
4602
|
+
}
|
|
4603
|
+
|
|
4604
|
+
.bg-warning {
|
|
4605
|
+
--tw-bg-opacity: 1;
|
|
4606
|
+
background-color: color-mix(in srgb, var(--state-color-warning-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4607
|
+
}
|
|
4608
|
+
|
|
4609
|
+
.bg-warning-100 {
|
|
4610
|
+
--tw-bg-opacity: 1;
|
|
4611
|
+
background-color: color-mix(in srgb, var(--warning-warning-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4612
|
+
}
|
|
4613
|
+
|
|
4614
|
+
.bg-warning-200 {
|
|
4615
|
+
--tw-bg-opacity: 1;
|
|
4616
|
+
background-color: color-mix(in srgb, var(--warning-warning-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4617
|
+
}
|
|
4618
|
+
|
|
4619
|
+
.bg-warning-300 {
|
|
4620
|
+
--tw-bg-opacity: 1;
|
|
4621
|
+
background-color: color-mix(in srgb, var(--warning-warning-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4622
|
+
}
|
|
4623
|
+
|
|
4624
|
+
.bg-warning-400 {
|
|
4625
|
+
--tw-bg-opacity: 1;
|
|
4626
|
+
background-color: color-mix(in srgb, var(--warning-warning-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4627
|
+
}
|
|
4628
|
+
|
|
4629
|
+
.bg-warning-50 {
|
|
4630
|
+
--tw-bg-opacity: 1;
|
|
4631
|
+
background-color: color-mix(in srgb, var(--warning-warning-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4634
|
+
.bg-warning-500 {
|
|
4635
|
+
--tw-bg-opacity: 1;
|
|
4636
|
+
background-color: color-mix(in srgb, var(--warning-warning-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4637
|
+
}
|
|
4638
|
+
|
|
4639
|
+
.bg-warning-600 {
|
|
4640
|
+
--tw-bg-opacity: 1;
|
|
4641
|
+
background-color: color-mix(in srgb, var(--warning-warning-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4642
|
+
}
|
|
4643
|
+
|
|
4644
|
+
.bg-warning-700 {
|
|
4645
|
+
--tw-bg-opacity: 1;
|
|
4646
|
+
background-color: color-mix(in srgb, var(--warning-warning-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4647
|
+
}
|
|
4648
|
+
|
|
4649
|
+
.bg-warning-800 {
|
|
4650
|
+
--tw-bg-opacity: 1;
|
|
4651
|
+
background-color: color-mix(in srgb, var(--warning-warning-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4654
|
+
.bg-warning-900 {
|
|
4655
|
+
--tw-bg-opacity: 1;
|
|
4656
|
+
background-color: color-mix(in srgb, var(--warning-warning-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4657
|
+
}
|
|
4658
|
+
|
|
4659
|
+
.bg-warning-foreground {
|
|
4660
|
+
--tw-bg-opacity: 1;
|
|
4661
|
+
background-color: color-mix(in srgb, var(--warning-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4662
|
+
}
|
|
4663
|
+
|
|
4664
|
+
.bg-warning-transparent-12 {
|
|
4665
|
+
--tw-bg-opacity: 1;
|
|
4666
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4667
|
+
}
|
|
4668
|
+
|
|
4669
|
+
.bg-warning-transparent-16 {
|
|
4670
|
+
--tw-bg-opacity: 1;
|
|
4671
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4672
|
+
}
|
|
4673
|
+
|
|
4674
|
+
.bg-warning-transparent-24 {
|
|
4675
|
+
--tw-bg-opacity: 1;
|
|
4676
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4677
|
+
}
|
|
4678
|
+
|
|
4679
|
+
.bg-warning-transparent-32 {
|
|
4680
|
+
--tw-bg-opacity: 1;
|
|
4681
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4684
|
+
.bg-warning-transparent-48 {
|
|
4685
|
+
--tw-bg-opacity: 1;
|
|
4686
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4687
|
+
}
|
|
4688
|
+
|
|
4689
|
+
.bg-warning-transparent-8 {
|
|
4690
|
+
--tw-bg-opacity: 1;
|
|
4691
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4692
|
+
}
|
|
4693
|
+
|
|
4694
|
+
.bg-white-transparent-12 {
|
|
4695
|
+
--tw-bg-opacity: 1;
|
|
4696
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4699
|
+
.bg-white-transparent-16 {
|
|
4700
|
+
--tw-bg-opacity: 1;
|
|
4701
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4702
|
+
}
|
|
4703
|
+
|
|
4704
|
+
.bg-white-transparent-24 {
|
|
4705
|
+
--tw-bg-opacity: 1;
|
|
4706
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4707
|
+
}
|
|
4708
|
+
|
|
4709
|
+
.bg-white-transparent-32 {
|
|
4710
|
+
--tw-bg-opacity: 1;
|
|
4711
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4712
|
+
}
|
|
4713
|
+
|
|
4714
|
+
.bg-white-transparent-48 {
|
|
4715
|
+
--tw-bg-opacity: 1;
|
|
4716
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4717
|
+
}
|
|
4718
|
+
|
|
4719
|
+
.bg-white-transparent-8 {
|
|
4720
|
+
--tw-bg-opacity: 1;
|
|
4721
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4724
|
+
.fill-action-button-icon-active {
|
|
4725
|
+
fill: color-mix(in srgb, var(--action-button-icon-active-text) calc(100% * 1), transparent);
|
|
4726
|
+
}
|
|
4727
|
+
|
|
4728
|
+
.fill-action-button-icon-default {
|
|
4729
|
+
fill: color-mix(in srgb, var(--action-button-icon-default-text) calc(100% * 1), transparent);
|
|
4730
|
+
}
|
|
4731
|
+
|
|
4732
|
+
.fill-action-button-icon-disabled {
|
|
4733
|
+
fill: color-mix(in srgb, var(--action-button-icon-disabled-text) calc(100% * 1), transparent);
|
|
4734
|
+
}
|
|
4735
|
+
|
|
4736
|
+
.fill-action-button-outline-active {
|
|
4737
|
+
fill: color-mix(in srgb, var(--action-button-outline-active-text) calc(100% * 1), transparent);
|
|
4738
|
+
}
|
|
4739
|
+
|
|
4740
|
+
.fill-action-button-outline-default {
|
|
4741
|
+
fill: color-mix(in srgb, var(--action-button-outline-default-text) calc(100% * 1), transparent);
|
|
4742
|
+
}
|
|
4743
|
+
|
|
4744
|
+
.fill-action-button-outline-disabled {
|
|
4745
|
+
fill: color-mix(in srgb, var(--action-button-outline-disabled-text) calc(100% * 1), transparent);
|
|
4746
|
+
}
|
|
4747
|
+
|
|
4748
|
+
.fill-action-button-solid-active {
|
|
4749
|
+
fill: color-mix(in srgb, var(--action-button-solid-active-text) calc(100% * 1), transparent);
|
|
4750
|
+
}
|
|
4751
|
+
|
|
4752
|
+
.fill-action-button-solid-default {
|
|
4753
|
+
fill: color-mix(in srgb, var(--action-button-solid-default-text) calc(100% * 1), transparent);
|
|
4754
|
+
}
|
|
4755
|
+
|
|
4756
|
+
.fill-action-button-solid-disabled {
|
|
4757
|
+
fill: color-mix(in srgb, var(--action-button-solid-disabled-text) calc(100% * 1), transparent);
|
|
4758
|
+
}
|
|
4759
|
+
|
|
4760
|
+
.fill-button-error-flat-default {
|
|
4761
|
+
fill: color-mix(in srgb, var(--button-error-flat-default-text) calc(100% * 1), transparent);
|
|
4762
|
+
}
|
|
4763
|
+
|
|
4764
|
+
.fill-button-error-outline-default {
|
|
4765
|
+
fill: color-mix(in srgb, var(--button-error-outline-default-text) calc(100% * 1), transparent);
|
|
4766
|
+
}
|
|
4767
|
+
|
|
4768
|
+
.fill-button-error-solid-default {
|
|
4769
|
+
fill: color-mix(in srgb, var(--button-error-solid-default-text) calc(100% * 1), transparent);
|
|
4770
|
+
}
|
|
4771
|
+
|
|
4772
|
+
.fill-button-info-flat-default {
|
|
4773
|
+
fill: color-mix(in srgb, var(--button-info-flat-default-text) calc(100% * 1), transparent);
|
|
4774
|
+
}
|
|
4775
|
+
|
|
4776
|
+
.fill-button-info-outline-default {
|
|
4777
|
+
fill: color-mix(in srgb, var(--button-info-outline-default-text) calc(100% * 1), transparent);
|
|
4778
|
+
}
|
|
4779
|
+
|
|
4780
|
+
.fill-button-info-solid-default {
|
|
4781
|
+
fill: color-mix(in srgb, var(--button-info-solid-default-text) calc(100% * 1), transparent);
|
|
4782
|
+
}
|
|
4783
|
+
|
|
4784
|
+
.fill-button-primary-flat-default {
|
|
4785
|
+
fill: color-mix(in srgb, var(--button-primary-flat-default-text) calc(100% * 1), transparent);
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4788
|
+
.fill-button-primary-outline-default {
|
|
4789
|
+
fill: color-mix(in srgb, var(--button-primary-outline-default-text) calc(100% * 1), transparent);
|
|
4790
|
+
}
|
|
4791
|
+
|
|
4792
|
+
.fill-button-primary-solid-default {
|
|
4793
|
+
fill: color-mix(in srgb, var(--button-primary-solid-default-text) calc(100% * 1), transparent);
|
|
4794
|
+
}
|
|
4795
|
+
|
|
4796
|
+
.fill-button-secondary-flat-default {
|
|
4797
|
+
fill: color-mix(in srgb, var(--button-secondary-flat-default-text) calc(100% * 1), transparent);
|
|
4798
|
+
}
|
|
4799
|
+
|
|
4800
|
+
.fill-button-secondary-outline-default {
|
|
4801
|
+
fill: color-mix(in srgb, var(--button-secondary-outline-default-text) calc(100% * 1), transparent);
|
|
4802
|
+
}
|
|
4803
|
+
|
|
4804
|
+
.fill-button-secondary-solid-default {
|
|
4805
|
+
fill: color-mix(in srgb, var(--button-secondary-solid-default-text) calc(100% * 1), transparent);
|
|
4806
|
+
}
|
|
4807
|
+
|
|
4808
|
+
.fill-button-success-flat-default {
|
|
4809
|
+
fill: color-mix(in srgb, var(--button-success-flat-default-text) calc(100% * 1), transparent);
|
|
4810
|
+
}
|
|
4811
|
+
|
|
4812
|
+
.fill-button-success-outline-default {
|
|
4813
|
+
fill: color-mix(in srgb, var(--button-success-outline-default-text) calc(100% * 1), transparent);
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
.fill-button-success-solid-default {
|
|
4817
|
+
fill: color-mix(in srgb, var(--button-success-solid-default-text) calc(100% * 1), transparent);
|
|
4818
|
+
}
|
|
4819
|
+
|
|
4820
|
+
.fill-button-tertiary-flat-default {
|
|
4821
|
+
fill: color-mix(in srgb, var(--button-tertiary-flat-default-text) calc(100% * 1), transparent);
|
|
4822
|
+
}
|
|
4823
|
+
|
|
4824
|
+
.fill-button-tertiary-outline-default {
|
|
4825
|
+
fill: color-mix(in srgb, var(--button-tertiary-outline-default-text) calc(100% * 1), transparent);
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
.fill-button-tertiary-solid-default {
|
|
4829
|
+
fill: color-mix(in srgb, var(--button-tertiary-solid-default-text) calc(100% * 1), transparent);
|
|
4830
|
+
}
|
|
4831
|
+
|
|
4832
|
+
.fill-button-warning-flat-default {
|
|
4833
|
+
fill: color-mix(in srgb, var(--button-warning-flat-default-text) calc(100% * 1), transparent);
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4836
|
+
.fill-button-warning-outline-default {
|
|
4837
|
+
fill: color-mix(in srgb, var(--button-warning-outline-default-text) calc(100% * 1), transparent);
|
|
4838
|
+
}
|
|
4839
|
+
|
|
4840
|
+
.fill-button-warning-solid-default {
|
|
4841
|
+
fill: color-mix(in srgb, var(--button-warning-solid-default-text) calc(100% * 1), transparent);
|
|
4842
|
+
}
|
|
4843
|
+
|
|
4844
|
+
.fill-current {
|
|
4845
|
+
fill: currentColor;
|
|
4846
|
+
}
|
|
4847
|
+
|
|
4848
|
+
.fill-error {
|
|
4849
|
+
fill: color-mix(in srgb, var(--state-color-error-default) calc(100% * 1), transparent);
|
|
4850
|
+
}
|
|
4851
|
+
|
|
4852
|
+
.fill-inherit {
|
|
4853
|
+
fill: inherit;
|
|
4854
|
+
}
|
|
4855
|
+
|
|
4856
|
+
.fill-input-active-stroke {
|
|
4857
|
+
fill: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * 1), transparent);
|
|
4858
|
+
}
|
|
4859
|
+
|
|
4860
|
+
.fill-input-default-text {
|
|
4861
|
+
fill: color-mix(in srgb, var(--input-color-default-text) calc(100% * 1), transparent);
|
|
4862
|
+
}
|
|
4863
|
+
|
|
4864
|
+
.fill-input-disable-stroke {
|
|
4865
|
+
fill: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * 1), transparent);
|
|
4866
|
+
}
|
|
4867
|
+
|
|
4868
|
+
.fill-primary {
|
|
4869
|
+
fill: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
4870
|
+
}
|
|
4871
|
+
|
|
4872
|
+
.fill-primary-default {
|
|
4873
|
+
fill: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
4874
|
+
}
|
|
4875
|
+
|
|
4876
|
+
.stroke-input-default-stroke {
|
|
4877
|
+
stroke: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * 1), transparent);
|
|
4878
|
+
}
|
|
4879
|
+
|
|
4880
|
+
.stroke-input-disable-stroke {
|
|
4881
|
+
stroke: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * 1), transparent);
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
.stroke-primary-default {
|
|
4885
|
+
stroke: color-mix(in srgb, var(--state-color-primary-default) calc(100% * 1), transparent);
|
|
4886
|
+
}
|
|
4887
|
+
|
|
4888
|
+
.p-0 {
|
|
4889
|
+
padding: 0px;
|
|
4890
|
+
}
|
|
4891
|
+
|
|
4892
|
+
.p-1 {
|
|
4893
|
+
padding: 0.25rem;
|
|
4894
|
+
}
|
|
4895
|
+
|
|
4896
|
+
.p-2 {
|
|
4897
|
+
padding: 0.5rem;
|
|
4898
|
+
}
|
|
4899
|
+
|
|
4900
|
+
.p-20 {
|
|
4901
|
+
padding: 5rem;
|
|
4902
|
+
}
|
|
4903
|
+
|
|
4904
|
+
.p-3 {
|
|
4905
|
+
padding: 0.75rem;
|
|
3667
4906
|
}
|
|
3668
4907
|
|
|
3669
4908
|
.p-4 {
|
|
@@ -4033,6 +5272,12 @@ body {
|
|
|
4033
5272
|
font-weight: var(--small8-weight, 700);
|
|
4034
5273
|
}
|
|
4035
5274
|
|
|
5275
|
+
.text-small9 {
|
|
5276
|
+
font-size: var(--small9-size, 8px);
|
|
5277
|
+
line-height: var(--small9-line-height, 10px);
|
|
5278
|
+
font-weight: var(--small9-weight, 400);
|
|
5279
|
+
}
|
|
5280
|
+
|
|
4036
5281
|
.text-subtitile1 {
|
|
4037
5282
|
font-size: var(--subtitle1-size, 16px);
|
|
4038
5283
|
line-height: var(--subtitle1-line-height, 24px);
|
|
@@ -4087,12 +5332,12 @@ body {
|
|
|
4087
5332
|
font-weight: 500;
|
|
4088
5333
|
}
|
|
4089
5334
|
|
|
4090
|
-
.
|
|
4091
|
-
text-transform:
|
|
5335
|
+
.uppercase {
|
|
5336
|
+
text-transform: uppercase;
|
|
4092
5337
|
}
|
|
4093
5338
|
|
|
4094
|
-
.
|
|
4095
|
-
|
|
5339
|
+
.capitalize {
|
|
5340
|
+
text-transform: capitalize;
|
|
4096
5341
|
}
|
|
4097
5342
|
|
|
4098
5343
|
.leading-none {
|
|
@@ -4326,9 +5571,9 @@ body {
|
|
|
4326
5571
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
4327
5572
|
}
|
|
4328
5573
|
|
|
4329
|
-
.text-gray-
|
|
5574
|
+
.text-gray-500 {
|
|
4330
5575
|
--tw-text-opacity: 1;
|
|
4331
|
-
color: rgb(
|
|
5576
|
+
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
4332
5577
|
}
|
|
4333
5578
|
|
|
4334
5579
|
.text-info {
|
|
@@ -4445,6 +5690,12 @@ body {
|
|
|
4445
5690
|
opacity: 0.7;
|
|
4446
5691
|
}
|
|
4447
5692
|
|
|
5693
|
+
.shadow {
|
|
5694
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
5695
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
5696
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
5697
|
+
}
|
|
5698
|
+
|
|
4448
5699
|
.shadow-\[0px_2px_24px_0px_rgba\(145\2c _158\2c _171\2c _0\.24\)\] {
|
|
4449
5700
|
--tw-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
4450
5701
|
--tw-shadow-colored: 0px 2px 24px 0px var(--tw-shadow-color);
|
|
@@ -4727,6 +5978,12 @@ body {
|
|
|
4727
5978
|
font-weight: var(--small8-weight, 700);
|
|
4728
5979
|
}
|
|
4729
5980
|
|
|
5981
|
+
.typography-small9 {
|
|
5982
|
+
font-size: var(--small9-size, 8px);
|
|
5983
|
+
line-height: var(--small9-line-height, 10px);
|
|
5984
|
+
font-weight: var(--small9-weight, 400);
|
|
5985
|
+
}
|
|
5986
|
+
|
|
4730
5987
|
.typography-label1 {
|
|
4731
5988
|
font-size: var(--label-label1-size, 12px);
|
|
4732
5989
|
line-height: var(--label-label1-line-height, 12px);
|