@rovula/ui 0.0.31 → 0.0.32
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 +920 -20
- 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 +920 -20
- 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 +1343 -217
- package/dist/stories/ColorGroupPreview.js +282 -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 +0 -3
- 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 +394 -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 +0 -3
- package/src/utils/colors.ts +33 -0
|
@@ -2330,6 +2330,10 @@ body {
|
|
|
2330
2330
|
margin-top: 0.5rem;
|
|
2331
2331
|
}
|
|
2332
2332
|
|
|
2333
|
+
.mt-3 {
|
|
2334
|
+
margin-top: 0.75rem;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2333
2337
|
.mt-4 {
|
|
2334
2338
|
margin-top: 1rem;
|
|
2335
2339
|
}
|
|
@@ -2466,14 +2470,6 @@ body {
|
|
|
2466
2470
|
height: 15rem;
|
|
2467
2471
|
}
|
|
2468
2472
|
|
|
2469
|
-
.h-\[120px\] {
|
|
2470
|
-
height: 120px;
|
|
2471
|
-
}
|
|
2472
|
-
|
|
2473
|
-
.h-\[160px\] {
|
|
2474
|
-
height: 160px;
|
|
2475
|
-
}
|
|
2476
|
-
|
|
2477
2473
|
.h-\[1px\] {
|
|
2478
2474
|
height: 1px;
|
|
2479
2475
|
}
|
|
@@ -2603,6 +2599,11 @@ body {
|
|
|
2603
2599
|
width: auto;
|
|
2604
2600
|
}
|
|
2605
2601
|
|
|
2602
|
+
.w-fit {
|
|
2603
|
+
width: -moz-fit-content;
|
|
2604
|
+
width: fit-content;
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2606
2607
|
.w-full {
|
|
2607
2608
|
width: 100%;
|
|
2608
2609
|
}
|
|
@@ -2615,6 +2616,11 @@ body {
|
|
|
2615
2616
|
min-width: 154px;
|
|
2616
2617
|
}
|
|
2617
2618
|
|
|
2619
|
+
.min-w-fit {
|
|
2620
|
+
min-width: -moz-fit-content;
|
|
2621
|
+
min-width: fit-content;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2618
2624
|
.max-w-lg {
|
|
2619
2625
|
max-width: 32rem;
|
|
2620
2626
|
}
|
|
@@ -2698,10 +2704,42 @@ body {
|
|
|
2698
2704
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2699
2705
|
}
|
|
2700
2706
|
|
|
2707
|
+
.grid-cols-10 {
|
|
2708
|
+
grid-template-columns: repeat(10, minmax(0, 1fr));
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
.grid-cols-2 {
|
|
2712
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2715
|
+
.grid-cols-3 {
|
|
2716
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2701
2719
|
.grid-cols-4 {
|
|
2702
2720
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
2703
2721
|
}
|
|
2704
2722
|
|
|
2723
|
+
.grid-cols-5 {
|
|
2724
|
+
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
.grid-cols-6 {
|
|
2728
|
+
grid-template-columns: repeat(6, minmax(0, 1fr));
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
.grid-cols-7 {
|
|
2732
|
+
grid-template-columns: repeat(7, minmax(0, 1fr));
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
.grid-cols-8 {
|
|
2736
|
+
grid-template-columns: repeat(8, minmax(0, 1fr));
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2739
|
+
.grid-cols-9 {
|
|
2740
|
+
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
2741
|
+
}
|
|
2742
|
+
|
|
2705
2743
|
.flex-row {
|
|
2706
2744
|
flex-direction: row;
|
|
2707
2745
|
}
|
|
@@ -2758,12 +2796,12 @@ body {
|
|
|
2758
2796
|
gap: 0.375rem;
|
|
2759
2797
|
}
|
|
2760
2798
|
|
|
2761
|
-
.gap-
|
|
2762
|
-
gap:
|
|
2799
|
+
.gap-10 {
|
|
2800
|
+
gap: 2.5rem;
|
|
2763
2801
|
}
|
|
2764
2802
|
|
|
2765
|
-
.gap-
|
|
2766
|
-
gap: 5rem;
|
|
2803
|
+
.gap-2 {
|
|
2804
|
+
gap: 0.5rem;
|
|
2767
2805
|
}
|
|
2768
2806
|
|
|
2769
2807
|
.gap-3 {
|
|
@@ -3060,426 +3098,1501 @@ body {
|
|
|
3060
3098
|
border-color: color-mix(in srgb, var(--button-success-flat-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3061
3099
|
}
|
|
3062
3100
|
|
|
3063
|
-
.border-button-success-outline-default {
|
|
3064
|
-
--tw-border-opacity: 1;
|
|
3065
|
-
border-color: color-mix(in srgb, var(--button-success-outline-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3101
|
+
.border-button-success-outline-default {
|
|
3102
|
+
--tw-border-opacity: 1;
|
|
3103
|
+
border-color: color-mix(in srgb, var(--button-success-outline-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
.border-button-success-solid-default {
|
|
3107
|
+
--tw-border-opacity: 1;
|
|
3108
|
+
border-color: color-mix(in srgb, var(--button-success-solid-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3109
|
+
}
|
|
3110
|
+
|
|
3111
|
+
.border-button-tertiary-flat-default {
|
|
3112
|
+
--tw-border-opacity: 1;
|
|
3113
|
+
border-color: color-mix(in srgb, var(--button-tertiary-flat-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
.border-button-tertiary-outline-default {
|
|
3117
|
+
--tw-border-opacity: 1;
|
|
3118
|
+
border-color: color-mix(in srgb, var(--button-tertiary-outline-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
.border-button-tertiary-solid-default {
|
|
3122
|
+
--tw-border-opacity: 1;
|
|
3123
|
+
border-color: color-mix(in srgb, var(--button-tertiary-solid-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
.border-button-warning-flat-default {
|
|
3127
|
+
--tw-border-opacity: 1;
|
|
3128
|
+
border-color: color-mix(in srgb, var(--button-warning-flat-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3129
|
+
}
|
|
3130
|
+
|
|
3131
|
+
.border-button-warning-outline-default {
|
|
3132
|
+
--tw-border-opacity: 1;
|
|
3133
|
+
border-color: color-mix(in srgb, var(--button-warning-outline-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
.border-button-warning-solid-default {
|
|
3137
|
+
--tw-border-opacity: 1;
|
|
3138
|
+
border-color: color-mix(in srgb, var(--button-warning-solid-default-border) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
.border-error-stroke {
|
|
3142
|
+
--tw-border-opacity: 1;
|
|
3143
|
+
border-color: color-mix(in srgb, var(--state-color-error-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3144
|
+
}
|
|
3145
|
+
|
|
3146
|
+
.border-function-default-solid {
|
|
3147
|
+
--tw-border-opacity: 1;
|
|
3148
|
+
border-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3151
|
+
.border-info-stroke {
|
|
3152
|
+
--tw-border-opacity: 1;
|
|
3153
|
+
border-color: color-mix(in srgb, var(--state-color-info-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
.border-input-default-stroke {
|
|
3157
|
+
--tw-border-opacity: 1;
|
|
3158
|
+
border-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
.border-primary {
|
|
3162
|
+
--tw-border-opacity: 1;
|
|
3163
|
+
border-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3166
|
+
.border-primary-10 {
|
|
3167
|
+
--tw-border-opacity: 1;
|
|
3168
|
+
border-color: color-mix(in srgb, var(--primary-ramps-primary-10) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3169
|
+
}
|
|
3170
|
+
|
|
3171
|
+
.border-secondary {
|
|
3172
|
+
--tw-border-opacity: 1;
|
|
3173
|
+
border-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3174
|
+
}
|
|
3175
|
+
|
|
3176
|
+
.border-success-stroke {
|
|
3177
|
+
--tw-border-opacity: 1;
|
|
3178
|
+
border-color: color-mix(in srgb, var(--state-color-success-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
.border-surface {
|
|
3182
|
+
--tw-border-opacity: 1;
|
|
3183
|
+
border-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.border-transparent {
|
|
3187
|
+
border-color: transparent;
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.border-warning-stroke {
|
|
3191
|
+
--tw-border-opacity: 1;
|
|
3192
|
+
border-color: color-mix(in srgb, var(--state-color-warning-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3193
|
+
}
|
|
3194
|
+
|
|
3195
|
+
.border-b-\[rgb\(var\(--navbar-border-color\)\)\] {
|
|
3196
|
+
border-bottom-color: rgb(var(--navbar-border-color));
|
|
3197
|
+
}
|
|
3198
|
+
|
|
3199
|
+
.border-l-input-default-stroke {
|
|
3200
|
+
--tw-border-opacity: 1;
|
|
3201
|
+
border-left-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3202
|
+
}
|
|
3203
|
+
|
|
3204
|
+
.border-l-input-disable-stroke {
|
|
3205
|
+
--tw-border-opacity: 1;
|
|
3206
|
+
border-left-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3207
|
+
}
|
|
3208
|
+
|
|
3209
|
+
.border-l-input-error {
|
|
3210
|
+
--tw-border-opacity: 1;
|
|
3211
|
+
border-left-color: color-mix(in srgb, var(--input-color-error) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3214
|
+
.border-t-secondary {
|
|
3215
|
+
--tw-border-opacity: 1;
|
|
3216
|
+
border-top-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-border-opacity)), transparent);
|
|
3217
|
+
}
|
|
3218
|
+
|
|
3219
|
+
.bg-\[rgb\(var\(--base-bg-2\)\)\] {
|
|
3220
|
+
background-color: rgb(var(--base-bg-2));
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
.bg-\[rgb\(var\(--navbar-bg-color\)\)\] {
|
|
3224
|
+
background-color: rgb(var(--navbar-bg-color));
|
|
3225
|
+
}
|
|
3226
|
+
|
|
3227
|
+
.bg-\[var\(--dropdown-menu-default-bg\)\] {
|
|
3228
|
+
background-color: var(--dropdown-menu-default-bg);
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
.bg-\[var\(--dropdown-menu-selected-bg\)\] {
|
|
3232
|
+
background-color: var(--dropdown-menu-selected-bg);
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
.bg-\[var\(--dropdown-menu-seperator-bg\)\] {
|
|
3236
|
+
background-color: var(--dropdown-menu-seperator-bg);
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3239
|
+
.bg-action-button-icon-active {
|
|
3240
|
+
--tw-bg-opacity: 1;
|
|
3241
|
+
background-color: color-mix(in srgb, var(--action-button-icon-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3242
|
+
}
|
|
3243
|
+
|
|
3244
|
+
.bg-action-button-icon-default {
|
|
3245
|
+
--tw-bg-opacity: 1;
|
|
3246
|
+
background-color: color-mix(in srgb, var(--action-button-icon-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3249
|
+
.bg-action-button-icon-disabled {
|
|
3250
|
+
--tw-bg-opacity: 1;
|
|
3251
|
+
background-color: color-mix(in srgb, var(--action-button-icon-disabled-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3254
|
+
.bg-action-button-outline-active {
|
|
3255
|
+
--tw-bg-opacity: 1;
|
|
3256
|
+
background-color: color-mix(in srgb, var(--action-button-outline-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
.bg-action-button-outline-default {
|
|
3260
|
+
--tw-bg-opacity: 1;
|
|
3261
|
+
background-color: color-mix(in srgb, var(--action-button-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3262
|
+
}
|
|
3263
|
+
|
|
3264
|
+
.bg-action-button-outline-disabled {
|
|
3265
|
+
--tw-bg-opacity: 1;
|
|
3266
|
+
background-color: color-mix(in srgb, var(--action-button-outline-disabled-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3267
|
+
}
|
|
3268
|
+
|
|
3269
|
+
.bg-action-button-solid-active {
|
|
3270
|
+
--tw-bg-opacity: 1;
|
|
3271
|
+
background-color: color-mix(in srgb, var(--action-button-solid-active-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3272
|
+
}
|
|
3273
|
+
|
|
3274
|
+
.bg-action-button-solid-default {
|
|
3275
|
+
--tw-bg-opacity: 1;
|
|
3276
|
+
background-color: color-mix(in srgb, var(--action-button-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3279
|
+
.bg-action-button-solid-disabled {
|
|
3280
|
+
--tw-bg-opacity: 1;
|
|
3281
|
+
background-color: color-mix(in srgb, var(--action-button-solid-disabled-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
.bg-background {
|
|
3285
|
+
--tw-bg-opacity: 1;
|
|
3286
|
+
background-color: color-mix(in srgb, var(--background) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3287
|
+
}
|
|
3288
|
+
|
|
3289
|
+
.bg-base-bg2 {
|
|
3290
|
+
--tw-bg-opacity: 1;
|
|
3291
|
+
background-color: color-mix(in srgb, var(--base-color-bg2) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
.bg-base-bg3 {
|
|
3295
|
+
--tw-bg-opacity: 1;
|
|
3296
|
+
background-color: color-mix(in srgb, var(--base-color-bg3) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
.bg-base-popup {
|
|
3300
|
+
--tw-bg-opacity: 1;
|
|
3301
|
+
background-color: color-mix(in srgb, var(--base-color-popup) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
.bg-base-popup-curtain {
|
|
3305
|
+
--tw-bg-opacity: 1;
|
|
3306
|
+
background-color: color-mix(in srgb, var(--base-color-popup-curtain) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
.bg-base-popup-highlight {
|
|
3310
|
+
--tw-bg-opacity: 1;
|
|
3311
|
+
background-color: color-mix(in srgb, var(--base-color-popup-hightlight) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3312
|
+
}
|
|
3313
|
+
|
|
3314
|
+
.bg-black {
|
|
3315
|
+
--tw-bg-opacity: 1;
|
|
3316
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
|
|
3317
|
+
}
|
|
3318
|
+
|
|
3319
|
+
.bg-black-transparent-12 {
|
|
3320
|
+
--tw-bg-opacity: 1;
|
|
3321
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
.bg-black-transparent-16 {
|
|
3325
|
+
--tw-bg-opacity: 1;
|
|
3326
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
.bg-black-transparent-24 {
|
|
3330
|
+
--tw-bg-opacity: 1;
|
|
3331
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
.bg-black-transparent-32 {
|
|
3335
|
+
--tw-bg-opacity: 1;
|
|
3336
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
.bg-black-transparent-48 {
|
|
3340
|
+
--tw-bg-opacity: 1;
|
|
3341
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
.bg-black-transparent-8 {
|
|
3345
|
+
--tw-bg-opacity: 1;
|
|
3346
|
+
background-color: color-mix(in srgb, var(--other-transparency-black-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3347
|
+
}
|
|
3348
|
+
|
|
3349
|
+
.bg-button-error-flat-default {
|
|
3350
|
+
--tw-bg-opacity: 1;
|
|
3351
|
+
background-color: color-mix(in srgb, var(--button-error-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3352
|
+
}
|
|
3353
|
+
|
|
3354
|
+
.bg-button-error-outline-default {
|
|
3355
|
+
--tw-bg-opacity: 1;
|
|
3356
|
+
background-color: color-mix(in srgb, var(--button-error-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
.bg-button-error-solid-default {
|
|
3360
|
+
--tw-bg-opacity: 1;
|
|
3361
|
+
background-color: color-mix(in srgb, var(--button-error-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
.bg-button-info-flat-default {
|
|
3365
|
+
--tw-bg-opacity: 1;
|
|
3366
|
+
background-color: color-mix(in srgb, var(--button-info-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
.bg-button-info-outline-default {
|
|
3370
|
+
--tw-bg-opacity: 1;
|
|
3371
|
+
background-color: color-mix(in srgb, var(--button-info-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
.bg-button-info-solid-default {
|
|
3375
|
+
--tw-bg-opacity: 1;
|
|
3376
|
+
background-color: color-mix(in srgb, var(--button-info-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3377
|
+
}
|
|
3378
|
+
|
|
3379
|
+
.bg-button-primary-flat-default {
|
|
3380
|
+
--tw-bg-opacity: 1;
|
|
3381
|
+
background-color: color-mix(in srgb, var(--button-primary-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3382
|
+
}
|
|
3383
|
+
|
|
3384
|
+
.bg-button-primary-outline-default {
|
|
3385
|
+
--tw-bg-opacity: 1;
|
|
3386
|
+
background-color: color-mix(in srgb, var(--button-primary-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3387
|
+
}
|
|
3388
|
+
|
|
3389
|
+
.bg-button-primary-solid-default {
|
|
3390
|
+
--tw-bg-opacity: 1;
|
|
3391
|
+
background-color: color-mix(in srgb, var(--button-primary-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
.bg-button-secondary-flat-default {
|
|
3395
|
+
--tw-bg-opacity: 1;
|
|
3396
|
+
background-color: color-mix(in srgb, var(--button-secondary-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
.bg-button-secondary-outline-default {
|
|
3400
|
+
--tw-bg-opacity: 1;
|
|
3401
|
+
background-color: color-mix(in srgb, var(--button-secondary-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3402
|
+
}
|
|
3403
|
+
|
|
3404
|
+
.bg-button-secondary-solid-default {
|
|
3405
|
+
--tw-bg-opacity: 1;
|
|
3406
|
+
background-color: color-mix(in srgb, var(--button-secondary-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3407
|
+
}
|
|
3408
|
+
|
|
3409
|
+
.bg-button-success-flat-default {
|
|
3410
|
+
--tw-bg-opacity: 1;
|
|
3411
|
+
background-color: color-mix(in srgb, var(--button-success-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3412
|
+
}
|
|
3413
|
+
|
|
3414
|
+
.bg-button-success-outline-default {
|
|
3415
|
+
--tw-bg-opacity: 1;
|
|
3416
|
+
background-color: color-mix(in srgb, var(--button-success-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3419
|
+
.bg-button-success-solid-default {
|
|
3420
|
+
--tw-bg-opacity: 1;
|
|
3421
|
+
background-color: color-mix(in srgb, var(--button-success-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3422
|
+
}
|
|
3423
|
+
|
|
3424
|
+
.bg-button-tertiary-flat-default {
|
|
3425
|
+
--tw-bg-opacity: 1;
|
|
3426
|
+
background-color: color-mix(in srgb, var(--button-tertiary-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3427
|
+
}
|
|
3428
|
+
|
|
3429
|
+
.bg-button-tertiary-outline-default {
|
|
3430
|
+
--tw-bg-opacity: 1;
|
|
3431
|
+
background-color: color-mix(in srgb, var(--button-tertiary-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
.bg-button-tertiary-solid-default {
|
|
3435
|
+
--tw-bg-opacity: 1;
|
|
3436
|
+
background-color: color-mix(in srgb, var(--button-tertiary-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3439
|
+
.bg-button-warning-flat-default {
|
|
3440
|
+
--tw-bg-opacity: 1;
|
|
3441
|
+
background-color: color-mix(in srgb, var(--button-warning-flat-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3442
|
+
}
|
|
3443
|
+
|
|
3444
|
+
.bg-button-warning-outline-default {
|
|
3445
|
+
--tw-bg-opacity: 1;
|
|
3446
|
+
background-color: color-mix(in srgb, var(--button-warning-outline-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3447
|
+
}
|
|
3448
|
+
|
|
3449
|
+
.bg-button-warning-solid-default {
|
|
3450
|
+
--tw-bg-opacity: 1;
|
|
3451
|
+
background-color: color-mix(in srgb, var(--button-warning-solid-default-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
.bg-common-black {
|
|
3455
|
+
--tw-bg-opacity: 1;
|
|
3456
|
+
background-color: color-mix(in srgb, var(--common-black) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
.bg-common-white {
|
|
3460
|
+
--tw-bg-opacity: 1;
|
|
3461
|
+
background-color: color-mix(in srgb, var(--common-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
.bg-error {
|
|
3465
|
+
--tw-bg-opacity: 1;
|
|
3466
|
+
background-color: color-mix(in srgb, var(--state-color-error-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
.bg-error-100 {
|
|
3470
|
+
--tw-bg-opacity: 1;
|
|
3471
|
+
background-color: color-mix(in srgb, var(--error-error-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
.bg-error-200 {
|
|
3475
|
+
--tw-bg-opacity: 1;
|
|
3476
|
+
background-color: color-mix(in srgb, var(--error-error-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3477
|
+
}
|
|
3478
|
+
|
|
3479
|
+
.bg-error-300 {
|
|
3480
|
+
--tw-bg-opacity: 1;
|
|
3481
|
+
background-color: color-mix(in srgb, var(--error-error-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3482
|
+
}
|
|
3483
|
+
|
|
3484
|
+
.bg-error-400 {
|
|
3485
|
+
--tw-bg-opacity: 1;
|
|
3486
|
+
background-color: color-mix(in srgb, var(--error-error-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3487
|
+
}
|
|
3488
|
+
|
|
3489
|
+
.bg-error-50 {
|
|
3490
|
+
--tw-bg-opacity: 1;
|
|
3491
|
+
background-color: color-mix(in srgb, var(--error-error-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
.bg-error-500 {
|
|
3495
|
+
--tw-bg-opacity: 1;
|
|
3496
|
+
background-color: color-mix(in srgb, var(--error-error-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
.bg-error-600 {
|
|
3500
|
+
--tw-bg-opacity: 1;
|
|
3501
|
+
background-color: color-mix(in srgb, var(--error-error-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
.bg-error-700 {
|
|
3505
|
+
--tw-bg-opacity: 1;
|
|
3506
|
+
background-color: color-mix(in srgb, var(--error-error-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3507
|
+
}
|
|
3508
|
+
|
|
3509
|
+
.bg-error-800 {
|
|
3510
|
+
--tw-bg-opacity: 1;
|
|
3511
|
+
background-color: color-mix(in srgb, var(--error-error-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3514
|
+
.bg-error-900 {
|
|
3515
|
+
--tw-bg-opacity: 1;
|
|
3516
|
+
background-color: color-mix(in srgb, var(--error-error-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3517
|
+
}
|
|
3518
|
+
|
|
3519
|
+
.bg-error-foreground {
|
|
3520
|
+
--tw-bg-opacity: 1;
|
|
3521
|
+
background-color: color-mix(in srgb, var(--error-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3522
|
+
}
|
|
3523
|
+
|
|
3524
|
+
.bg-error-transparent-12 {
|
|
3525
|
+
--tw-bg-opacity: 1;
|
|
3526
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
.bg-error-transparent-16 {
|
|
3530
|
+
--tw-bg-opacity: 1;
|
|
3531
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3532
|
+
}
|
|
3533
|
+
|
|
3534
|
+
.bg-error-transparent-24 {
|
|
3535
|
+
--tw-bg-opacity: 1;
|
|
3536
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
.bg-error-transparent-32 {
|
|
3540
|
+
--tw-bg-opacity: 1;
|
|
3541
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3542
|
+
}
|
|
3543
|
+
|
|
3544
|
+
.bg-error-transparent-48 {
|
|
3545
|
+
--tw-bg-opacity: 1;
|
|
3546
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
.bg-error-transparent-8 {
|
|
3550
|
+
--tw-bg-opacity: 1;
|
|
3551
|
+
background-color: color-mix(in srgb, var(--other-transparency-error-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
.bg-foreground {
|
|
3555
|
+
--tw-bg-opacity: 1;
|
|
3556
|
+
background-color: color-mix(in srgb, var(--foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3557
|
+
}
|
|
3558
|
+
|
|
3559
|
+
.bg-function-active-hover {
|
|
3560
|
+
--tw-bg-opacity: 1;
|
|
3561
|
+
background-color: color-mix(in srgb, var(--function-active-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3562
|
+
}
|
|
3563
|
+
|
|
3564
|
+
.bg-function-active-hover-bg {
|
|
3565
|
+
--tw-bg-opacity: 1;
|
|
3566
|
+
background-color: color-mix(in srgb, var(--function-active-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
.bg-function-active-icon {
|
|
3570
|
+
--tw-bg-opacity: 1;
|
|
3571
|
+
background-color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
.bg-function-active-solid {
|
|
3575
|
+
--tw-bg-opacity: 1;
|
|
3576
|
+
background-color: color-mix(in srgb, var(--function-active-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3577
|
+
}
|
|
3578
|
+
|
|
3579
|
+
.bg-function-active-stroke {
|
|
3580
|
+
--tw-bg-opacity: 1;
|
|
3581
|
+
background-color: color-mix(in srgb, var(--function-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3582
|
+
}
|
|
3583
|
+
|
|
3584
|
+
.bg-function-default-hover {
|
|
3585
|
+
--tw-bg-opacity: 1;
|
|
3586
|
+
background-color: color-mix(in srgb, var(--function-default-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
.bg-function-default-hover-bg {
|
|
3590
|
+
--tw-bg-opacity: 1;
|
|
3591
|
+
background-color: color-mix(in srgb, var(--function-default-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
.bg-function-default-icon {
|
|
3595
|
+
--tw-bg-opacity: 1;
|
|
3596
|
+
background-color: color-mix(in srgb, var(--function-default-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3599
|
+
.bg-function-default-outline {
|
|
3600
|
+
--tw-bg-opacity: 1;
|
|
3601
|
+
background-color: color-mix(in srgb, var(--function-default-outline-icon) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3602
|
+
}
|
|
3603
|
+
|
|
3604
|
+
.bg-function-default-solid {
|
|
3605
|
+
--tw-bg-opacity: 1;
|
|
3606
|
+
background-color: color-mix(in srgb, var(--function-default-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
.bg-function-default-stroke {
|
|
3610
|
+
--tw-bg-opacity: 1;
|
|
3611
|
+
background-color: color-mix(in srgb, var(--function-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3612
|
+
}
|
|
3613
|
+
|
|
3614
|
+
.bg-gray-200 {
|
|
3615
|
+
--tw-bg-opacity: 1;
|
|
3616
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
3617
|
+
}
|
|
3618
|
+
|
|
3619
|
+
.bg-grey {
|
|
3620
|
+
--tw-bg-opacity: 1;
|
|
3621
|
+
background-color: color-mix(in srgb, var(--state-color-grey-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3624
|
+
.bg-grey-10 {
|
|
3625
|
+
--tw-bg-opacity: 1;
|
|
3626
|
+
background-color: color-mix(in srgb, var(--grey-grey-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
.bg-grey-100 {
|
|
3630
|
+
--tw-bg-opacity: 1;
|
|
3631
|
+
background-color: color-mix(in srgb, var(--grey-grey-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
.bg-grey-110 {
|
|
3635
|
+
--tw-bg-opacity: 1;
|
|
3636
|
+
background-color: color-mix(in srgb, var(--grey-grey-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3637
|
+
}
|
|
3638
|
+
|
|
3639
|
+
.bg-grey-120 {
|
|
3640
|
+
--tw-bg-opacity: 1;
|
|
3641
|
+
background-color: color-mix(in srgb, var(--grey-grey-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
.bg-grey-130 {
|
|
3645
|
+
--tw-bg-opacity: 1;
|
|
3646
|
+
background-color: color-mix(in srgb, var(--grey-grey-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
.bg-grey-140 {
|
|
3650
|
+
--tw-bg-opacity: 1;
|
|
3651
|
+
background-color: color-mix(in srgb, var(--grey-grey-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3652
|
+
}
|
|
3653
|
+
|
|
3654
|
+
.bg-grey-150 {
|
|
3655
|
+
--tw-bg-opacity: 1;
|
|
3656
|
+
background-color: color-mix(in srgb, var(--grey-grey-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3657
|
+
}
|
|
3658
|
+
|
|
3659
|
+
.bg-grey-20 {
|
|
3660
|
+
--tw-bg-opacity: 1;
|
|
3661
|
+
background-color: color-mix(in srgb, var(--grey-grey-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3662
|
+
}
|
|
3663
|
+
|
|
3664
|
+
.bg-grey-30 {
|
|
3665
|
+
--tw-bg-opacity: 1;
|
|
3666
|
+
background-color: color-mix(in srgb, var(--grey-grey-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
.bg-grey-40 {
|
|
3670
|
+
--tw-bg-opacity: 1;
|
|
3671
|
+
background-color: color-mix(in srgb, var(--grey-grey-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
.bg-grey-5 {
|
|
3675
|
+
--tw-bg-opacity: 1;
|
|
3676
|
+
background-color: color-mix(in srgb, var(--grey-grey-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
.bg-grey-50 {
|
|
3680
|
+
--tw-bg-opacity: 1;
|
|
3681
|
+
background-color: color-mix(in srgb, var(--grey-grey-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
.bg-grey-60 {
|
|
3685
|
+
--tw-bg-opacity: 1;
|
|
3686
|
+
background-color: color-mix(in srgb, var(--grey-grey-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.bg-grey-70 {
|
|
3690
|
+
--tw-bg-opacity: 1;
|
|
3691
|
+
background-color: color-mix(in srgb, var(--grey-grey-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
.bg-grey-80 {
|
|
3695
|
+
--tw-bg-opacity: 1;
|
|
3696
|
+
background-color: color-mix(in srgb, var(--grey-grey-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
.bg-grey-90 {
|
|
3700
|
+
--tw-bg-opacity: 1;
|
|
3701
|
+
background-color: color-mix(in srgb, var(--grey-grey-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
.bg-grey-foreground {
|
|
3705
|
+
--tw-bg-opacity: 1;
|
|
3706
|
+
background-color: color-mix(in srgb, var(--grey-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.bg-grey-transparent-12 {
|
|
3710
|
+
--tw-bg-opacity: 1;
|
|
3711
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
.bg-grey-transparent-16 {
|
|
3715
|
+
--tw-bg-opacity: 1;
|
|
3716
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
.bg-grey-transparent-24 {
|
|
3720
|
+
--tw-bg-opacity: 1;
|
|
3721
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3724
|
+
.bg-grey-transparent-32 {
|
|
3725
|
+
--tw-bg-opacity: 1;
|
|
3726
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.bg-grey-transparent-48 {
|
|
3730
|
+
--tw-bg-opacity: 1;
|
|
3731
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
.bg-grey-transparent-8 {
|
|
3735
|
+
--tw-bg-opacity: 1;
|
|
3736
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3737
|
+
}
|
|
3738
|
+
|
|
3739
|
+
.bg-grey2 {
|
|
3740
|
+
--tw-bg-opacity: 1;
|
|
3741
|
+
background-color: color-mix(in srgb, var(--state-color-grey2-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
.bg-grey2-100 {
|
|
3745
|
+
--tw-bg-opacity: 1;
|
|
3746
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.bg-grey2-200 {
|
|
3750
|
+
--tw-bg-opacity: 1;
|
|
3751
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3752
|
+
}
|
|
3753
|
+
|
|
3754
|
+
.bg-grey2-300 {
|
|
3755
|
+
--tw-bg-opacity: 1;
|
|
3756
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
.bg-grey2-400 {
|
|
3760
|
+
--tw-bg-opacity: 1;
|
|
3761
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3762
|
+
}
|
|
3763
|
+
|
|
3764
|
+
.bg-grey2-50 {
|
|
3765
|
+
--tw-bg-opacity: 1;
|
|
3766
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
.bg-grey2-500 {
|
|
3770
|
+
--tw-bg-opacity: 1;
|
|
3771
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3774
|
+
.bg-grey2-600 {
|
|
3775
|
+
--tw-bg-opacity: 1;
|
|
3776
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3777
|
+
}
|
|
3778
|
+
|
|
3779
|
+
.bg-grey2-700 {
|
|
3780
|
+
--tw-bg-opacity: 1;
|
|
3781
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
.bg-grey2-800 {
|
|
3785
|
+
--tw-bg-opacity: 1;
|
|
3786
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.bg-grey2-900 {
|
|
3790
|
+
--tw-bg-opacity: 1;
|
|
3791
|
+
background-color: color-mix(in srgb, var(--grey2-grey2-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3792
|
+
}
|
|
3793
|
+
|
|
3794
|
+
.bg-grey2-foreground {
|
|
3795
|
+
--tw-bg-opacity: 1;
|
|
3796
|
+
background-color: color-mix(in srgb, var(--grey2-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3797
|
+
}
|
|
3798
|
+
|
|
3799
|
+
.bg-grey2-transparent-12 {
|
|
3800
|
+
--tw-bg-opacity: 1;
|
|
3801
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3802
|
+
}
|
|
3803
|
+
|
|
3804
|
+
.bg-grey2-transparent-16 {
|
|
3805
|
+
--tw-bg-opacity: 1;
|
|
3806
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
.bg-grey2-transparent-24 {
|
|
3810
|
+
--tw-bg-opacity: 1;
|
|
3811
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3812
|
+
}
|
|
3813
|
+
|
|
3814
|
+
.bg-grey2-transparent-32 {
|
|
3815
|
+
--tw-bg-opacity: 1;
|
|
3816
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
.bg-grey2-transparent-48 {
|
|
3820
|
+
--tw-bg-opacity: 1;
|
|
3821
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3824
|
+
.bg-grey2-transparent-8 {
|
|
3825
|
+
--tw-bg-opacity: 1;
|
|
3826
|
+
background-color: color-mix(in srgb, var(--other-transparency-grey2-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3827
|
+
}
|
|
3828
|
+
|
|
3829
|
+
.bg-info {
|
|
3830
|
+
--tw-bg-opacity: 1;
|
|
3831
|
+
background-color: color-mix(in srgb, var(--state-color-info-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3832
|
+
}
|
|
3833
|
+
|
|
3834
|
+
.bg-info-100 {
|
|
3835
|
+
--tw-bg-opacity: 1;
|
|
3836
|
+
background-color: color-mix(in srgb, var(--info-info-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3837
|
+
}
|
|
3838
|
+
|
|
3839
|
+
.bg-info-200 {
|
|
3840
|
+
--tw-bg-opacity: 1;
|
|
3841
|
+
background-color: color-mix(in srgb, var(--info-info-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3842
|
+
}
|
|
3843
|
+
|
|
3844
|
+
.bg-info-300 {
|
|
3845
|
+
--tw-bg-opacity: 1;
|
|
3846
|
+
background-color: color-mix(in srgb, var(--info-info-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.bg-info-400 {
|
|
3850
|
+
--tw-bg-opacity: 1;
|
|
3851
|
+
background-color: color-mix(in srgb, var(--info-info-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
.bg-info-50 {
|
|
3855
|
+
--tw-bg-opacity: 1;
|
|
3856
|
+
background-color: color-mix(in srgb, var(--info-info-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3857
|
+
}
|
|
3858
|
+
|
|
3859
|
+
.bg-info-500 {
|
|
3860
|
+
--tw-bg-opacity: 1;
|
|
3861
|
+
background-color: color-mix(in srgb, var(--info-info-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3862
|
+
}
|
|
3863
|
+
|
|
3864
|
+
.bg-info-600 {
|
|
3865
|
+
--tw-bg-opacity: 1;
|
|
3866
|
+
background-color: color-mix(in srgb, var(--info-info-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
.bg-info-700 {
|
|
3870
|
+
--tw-bg-opacity: 1;
|
|
3871
|
+
background-color: color-mix(in srgb, var(--info-info-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3872
|
+
}
|
|
3873
|
+
|
|
3874
|
+
.bg-info-800 {
|
|
3875
|
+
--tw-bg-opacity: 1;
|
|
3876
|
+
background-color: color-mix(in srgb, var(--info-info-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3877
|
+
}
|
|
3878
|
+
|
|
3879
|
+
.bg-info-900 {
|
|
3880
|
+
--tw-bg-opacity: 1;
|
|
3881
|
+
background-color: color-mix(in srgb, var(--info-info-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3882
|
+
}
|
|
3883
|
+
|
|
3884
|
+
.bg-info-foreground {
|
|
3885
|
+
--tw-bg-opacity: 1;
|
|
3886
|
+
background-color: color-mix(in srgb, var(--info-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.bg-info-transparent-12 {
|
|
3890
|
+
--tw-bg-opacity: 1;
|
|
3891
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3892
|
+
}
|
|
3893
|
+
|
|
3894
|
+
.bg-info-transparent-16 {
|
|
3895
|
+
--tw-bg-opacity: 1;
|
|
3896
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3897
|
+
}
|
|
3898
|
+
|
|
3899
|
+
.bg-info-transparent-24 {
|
|
3900
|
+
--tw-bg-opacity: 1;
|
|
3901
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3902
|
+
}
|
|
3903
|
+
|
|
3904
|
+
.bg-info-transparent-32 {
|
|
3905
|
+
--tw-bg-opacity: 1;
|
|
3906
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
.bg-info-transparent-48 {
|
|
3910
|
+
--tw-bg-opacity: 1;
|
|
3911
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3912
|
+
}
|
|
3913
|
+
|
|
3914
|
+
.bg-info-transparent-8 {
|
|
3915
|
+
--tw-bg-opacity: 1;
|
|
3916
|
+
background-color: color-mix(in srgb, var(--other-transparency-info-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3919
|
+
.bg-input-active-stroke {
|
|
3920
|
+
--tw-bg-opacity: 1;
|
|
3921
|
+
background-color: color-mix(in srgb, var(--input-color-active-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
.bg-input-default-stroke {
|
|
3925
|
+
--tw-bg-opacity: 1;
|
|
3926
|
+
background-color: color-mix(in srgb, var(--input-color-default-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3927
|
+
}
|
|
3928
|
+
|
|
3929
|
+
.bg-input-default-text {
|
|
3930
|
+
--tw-bg-opacity: 1;
|
|
3931
|
+
background-color: color-mix(in srgb, var(--input-color-default-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.bg-input-disable-bg {
|
|
3935
|
+
--tw-bg-opacity: 1;
|
|
3936
|
+
background-color: color-mix(in srgb, var(--input-color-disable-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3937
|
+
}
|
|
3938
|
+
|
|
3939
|
+
.bg-input-disable-stroke {
|
|
3940
|
+
--tw-bg-opacity: 1;
|
|
3941
|
+
background-color: color-mix(in srgb, var(--input-color-disable-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3942
|
+
}
|
|
3943
|
+
|
|
3944
|
+
.bg-input-disable-text {
|
|
3945
|
+
--tw-bg-opacity: 1;
|
|
3946
|
+
background-color: color-mix(in srgb, var(--input-color-disable-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3947
|
+
}
|
|
3948
|
+
|
|
3949
|
+
.bg-input-error {
|
|
3950
|
+
--tw-bg-opacity: 1;
|
|
3951
|
+
background-color: color-mix(in srgb, var(--input-color-error) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3952
|
+
}
|
|
3953
|
+
|
|
3954
|
+
.bg-input-filled-text {
|
|
3955
|
+
--tw-bg-opacity: 1;
|
|
3956
|
+
background-color: color-mix(in srgb, var(--input-color-filled-text) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
.bg-input-label-bg {
|
|
3960
|
+
--tw-bg-opacity: 1;
|
|
3961
|
+
background-color: color-mix(in srgb, var(--input-color-label-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3962
|
+
}
|
|
3963
|
+
|
|
3964
|
+
.bg-primary {
|
|
3965
|
+
--tw-bg-opacity: 1;
|
|
3966
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3967
|
+
}
|
|
3968
|
+
|
|
3969
|
+
.bg-primary-10 {
|
|
3970
|
+
--tw-bg-opacity: 1;
|
|
3971
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3972
|
+
}
|
|
3973
|
+
|
|
3974
|
+
.bg-primary-100 {
|
|
3975
|
+
--tw-bg-opacity: 1;
|
|
3976
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3979
|
+
.bg-primary-110 {
|
|
3980
|
+
--tw-bg-opacity: 1;
|
|
3981
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3982
|
+
}
|
|
3983
|
+
|
|
3984
|
+
.bg-primary-120 {
|
|
3985
|
+
--tw-bg-opacity: 1;
|
|
3986
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3987
|
+
}
|
|
3988
|
+
|
|
3989
|
+
.bg-primary-130 {
|
|
3990
|
+
--tw-bg-opacity: 1;
|
|
3991
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
.bg-primary-140 {
|
|
3995
|
+
--tw-bg-opacity: 1;
|
|
3996
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3997
|
+
}
|
|
3998
|
+
|
|
3999
|
+
.bg-primary-150 {
|
|
4000
|
+
--tw-bg-opacity: 1;
|
|
4001
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4002
|
+
}
|
|
4003
|
+
|
|
4004
|
+
.bg-primary-20 {
|
|
4005
|
+
--tw-bg-opacity: 1;
|
|
4006
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.bg-primary-30 {
|
|
4010
|
+
--tw-bg-opacity: 1;
|
|
4011
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4012
|
+
}
|
|
4013
|
+
|
|
4014
|
+
.bg-primary-40 {
|
|
4015
|
+
--tw-bg-opacity: 1;
|
|
4016
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
.bg-primary-5 {
|
|
4020
|
+
--tw-bg-opacity: 1;
|
|
4021
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.bg-primary-50 {
|
|
4025
|
+
--tw-bg-opacity: 1;
|
|
4026
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
.bg-primary-60 {
|
|
4030
|
+
--tw-bg-opacity: 1;
|
|
4031
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
.bg-primary-70 {
|
|
4035
|
+
--tw-bg-opacity: 1;
|
|
4036
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.bg-primary-80 {
|
|
4040
|
+
--tw-bg-opacity: 1;
|
|
4041
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4042
|
+
}
|
|
4043
|
+
|
|
4044
|
+
.bg-primary-90 {
|
|
4045
|
+
--tw-bg-opacity: 1;
|
|
4046
|
+
background-color: color-mix(in srgb, var(--primary-ramps-primary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4049
|
+
.bg-primary-default {
|
|
4050
|
+
--tw-bg-opacity: 1;
|
|
4051
|
+
background-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4052
|
+
}
|
|
4053
|
+
|
|
4054
|
+
.bg-primary-foreground {
|
|
4055
|
+
--tw-bg-opacity: 1;
|
|
4056
|
+
background-color: color-mix(in srgb, var(--primary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
.bg-primary-hover {
|
|
4060
|
+
--tw-bg-opacity: 1;
|
|
4061
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
.bg-primary-hover-bg {
|
|
4065
|
+
--tw-bg-opacity: 1;
|
|
4066
|
+
background-color: color-mix(in srgb, var(--state-color-primary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4067
|
+
}
|
|
4068
|
+
|
|
4069
|
+
.bg-primary-pressed {
|
|
4070
|
+
--tw-bg-opacity: 1;
|
|
4071
|
+
background-color: color-mix(in srgb, var(--state-color-primary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4072
|
+
}
|
|
4073
|
+
|
|
4074
|
+
.bg-primary-stroke {
|
|
4075
|
+
--tw-bg-opacity: 1;
|
|
4076
|
+
background-color: color-mix(in srgb, var(--state-color-primary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4077
|
+
}
|
|
4078
|
+
|
|
4079
|
+
.bg-primary-transparent-12 {
|
|
4080
|
+
--tw-bg-opacity: 1;
|
|
4081
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
.bg-primary-transparent-16 {
|
|
4085
|
+
--tw-bg-opacity: 1;
|
|
4086
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4087
|
+
}
|
|
4088
|
+
|
|
4089
|
+
.bg-primary-transparent-24 {
|
|
4090
|
+
--tw-bg-opacity: 1;
|
|
4091
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4092
|
+
}
|
|
4093
|
+
|
|
4094
|
+
.bg-primary-transparent-32 {
|
|
4095
|
+
--tw-bg-opacity: 1;
|
|
4096
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
.bg-primary-transparent-48 {
|
|
4100
|
+
--tw-bg-opacity: 1;
|
|
4101
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
.bg-primary-transparent-8 {
|
|
4105
|
+
--tw-bg-opacity: 1;
|
|
4106
|
+
background-color: color-mix(in srgb, var(--main-transparency-primary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
.bg-secondary {
|
|
4110
|
+
--tw-bg-opacity: 1;
|
|
4111
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4112
|
+
}
|
|
4113
|
+
|
|
4114
|
+
.bg-secondary-10 {
|
|
4115
|
+
--tw-bg-opacity: 1;
|
|
4116
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4117
|
+
}
|
|
4118
|
+
|
|
4119
|
+
.bg-secondary-100 {
|
|
4120
|
+
--tw-bg-opacity: 1;
|
|
4121
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.bg-secondary-110 {
|
|
4125
|
+
--tw-bg-opacity: 1;
|
|
4126
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4129
|
+
.bg-secondary-120 {
|
|
4130
|
+
--tw-bg-opacity: 1;
|
|
4131
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
.bg-secondary-130 {
|
|
4135
|
+
--tw-bg-opacity: 1;
|
|
4136
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4137
|
+
}
|
|
4138
|
+
|
|
4139
|
+
.bg-secondary-140 {
|
|
4140
|
+
--tw-bg-opacity: 1;
|
|
4141
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4144
|
+
.bg-secondary-150 {
|
|
4145
|
+
--tw-bg-opacity: 1;
|
|
4146
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4147
|
+
}
|
|
4148
|
+
|
|
4149
|
+
.bg-secondary-20 {
|
|
4150
|
+
--tw-bg-opacity: 1;
|
|
4151
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4152
|
+
}
|
|
4153
|
+
|
|
4154
|
+
.bg-secondary-30 {
|
|
4155
|
+
--tw-bg-opacity: 1;
|
|
4156
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4157
|
+
}
|
|
4158
|
+
|
|
4159
|
+
.bg-secondary-40 {
|
|
4160
|
+
--tw-bg-opacity: 1;
|
|
4161
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
4162
|
+
}
|
|
4163
|
+
|
|
4164
|
+
.bg-secondary-5 {
|
|
4165
|
+
--tw-bg-opacity: 1;
|
|
4166
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3066
4167
|
}
|
|
3067
4168
|
|
|
3068
|
-
.
|
|
3069
|
-
--tw-
|
|
3070
|
-
|
|
4169
|
+
.bg-secondary-50 {
|
|
4170
|
+
--tw-bg-opacity: 1;
|
|
4171
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3071
4172
|
}
|
|
3072
4173
|
|
|
3073
|
-
.
|
|
3074
|
-
--tw-
|
|
3075
|
-
|
|
4174
|
+
.bg-secondary-60 {
|
|
4175
|
+
--tw-bg-opacity: 1;
|
|
4176
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3076
4177
|
}
|
|
3077
4178
|
|
|
3078
|
-
.
|
|
3079
|
-
--tw-
|
|
3080
|
-
|
|
4179
|
+
.bg-secondary-70 {
|
|
4180
|
+
--tw-bg-opacity: 1;
|
|
4181
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3081
4182
|
}
|
|
3082
4183
|
|
|
3083
|
-
.
|
|
3084
|
-
--tw-
|
|
3085
|
-
|
|
4184
|
+
.bg-secondary-80 {
|
|
4185
|
+
--tw-bg-opacity: 1;
|
|
4186
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3086
4187
|
}
|
|
3087
4188
|
|
|
3088
|
-
.
|
|
3089
|
-
--tw-
|
|
3090
|
-
|
|
4189
|
+
.bg-secondary-90 {
|
|
4190
|
+
--tw-bg-opacity: 1;
|
|
4191
|
+
background-color: color-mix(in srgb, var(--secondary-ramps-secondary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3091
4192
|
}
|
|
3092
4193
|
|
|
3093
|
-
.
|
|
3094
|
-
--tw-
|
|
3095
|
-
|
|
4194
|
+
.bg-secondary-active {
|
|
4195
|
+
--tw-bg-opacity: 1;
|
|
4196
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-active) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3096
4197
|
}
|
|
3097
4198
|
|
|
3098
|
-
.
|
|
3099
|
-
--tw-
|
|
3100
|
-
|
|
4199
|
+
.bg-secondary-default {
|
|
4200
|
+
--tw-bg-opacity: 1;
|
|
4201
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3101
4202
|
}
|
|
3102
4203
|
|
|
3103
|
-
.
|
|
3104
|
-
--tw-
|
|
3105
|
-
|
|
4204
|
+
.bg-secondary-foreground {
|
|
4205
|
+
--tw-bg-opacity: 1;
|
|
4206
|
+
background-color: color-mix(in srgb, var(--secondary-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3106
4207
|
}
|
|
3107
4208
|
|
|
3108
|
-
.
|
|
3109
|
-
--tw-
|
|
3110
|
-
|
|
4209
|
+
.bg-secondary-hover {
|
|
4210
|
+
--tw-bg-opacity: 1;
|
|
4211
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3111
4212
|
}
|
|
3112
4213
|
|
|
3113
|
-
.
|
|
3114
|
-
--tw-
|
|
3115
|
-
|
|
4214
|
+
.bg-secondary-hover-bg {
|
|
4215
|
+
--tw-bg-opacity: 1;
|
|
4216
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3116
4217
|
}
|
|
3117
4218
|
|
|
3118
|
-
.
|
|
3119
|
-
--tw-
|
|
3120
|
-
|
|
4219
|
+
.bg-secondary-pressed {
|
|
4220
|
+
--tw-bg-opacity: 1;
|
|
4221
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3121
4222
|
}
|
|
3122
4223
|
|
|
3123
|
-
.
|
|
3124
|
-
--tw-
|
|
3125
|
-
|
|
4224
|
+
.bg-secondary-stroke {
|
|
4225
|
+
--tw-bg-opacity: 1;
|
|
4226
|
+
background-color: color-mix(in srgb, var(--state-color-secondary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3126
4227
|
}
|
|
3127
4228
|
|
|
3128
|
-
.
|
|
3129
|
-
--tw-
|
|
3130
|
-
|
|
4229
|
+
.bg-secondary-transparent-12 {
|
|
4230
|
+
--tw-bg-opacity: 1;
|
|
4231
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3131
4232
|
}
|
|
3132
4233
|
|
|
3133
|
-
.
|
|
3134
|
-
--tw-
|
|
3135
|
-
|
|
4234
|
+
.bg-secondary-transparent-16 {
|
|
4235
|
+
--tw-bg-opacity: 1;
|
|
4236
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3136
4237
|
}
|
|
3137
4238
|
|
|
3138
|
-
.
|
|
3139
|
-
--tw-
|
|
3140
|
-
|
|
4239
|
+
.bg-secondary-transparent-24 {
|
|
4240
|
+
--tw-bg-opacity: 1;
|
|
4241
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3141
4242
|
}
|
|
3142
4243
|
|
|
3143
|
-
.
|
|
3144
|
-
--tw-
|
|
3145
|
-
|
|
4244
|
+
.bg-secondary-transparent-32 {
|
|
4245
|
+
--tw-bg-opacity: 1;
|
|
4246
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3146
4247
|
}
|
|
3147
4248
|
|
|
3148
|
-
.
|
|
3149
|
-
|
|
4249
|
+
.bg-secondary-transparent-48 {
|
|
4250
|
+
--tw-bg-opacity: 1;
|
|
4251
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3150
4252
|
}
|
|
3151
4253
|
|
|
3152
|
-
.
|
|
3153
|
-
--tw-
|
|
3154
|
-
|
|
4254
|
+
.bg-secondary-transparent-8 {
|
|
4255
|
+
--tw-bg-opacity: 1;
|
|
4256
|
+
background-color: color-mix(in srgb, var(--main-transparency-secondary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3155
4257
|
}
|
|
3156
4258
|
|
|
3157
|
-
.
|
|
3158
|
-
|
|
4259
|
+
.bg-state-disable-outline {
|
|
4260
|
+
--tw-bg-opacity: 1;
|
|
4261
|
+
background-color: color-mix(in srgb, var(--state-color-disable-outline) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3159
4262
|
}
|
|
3160
4263
|
|
|
3161
|
-
.
|
|
3162
|
-
--tw-
|
|
3163
|
-
|
|
4264
|
+
.bg-state-disable-solid {
|
|
4265
|
+
--tw-bg-opacity: 1;
|
|
4266
|
+
background-color: color-mix(in srgb, var(--state-color-disable-solid) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3164
4267
|
}
|
|
3165
4268
|
|
|
3166
|
-
.
|
|
3167
|
-
--tw-
|
|
3168
|
-
|
|
4269
|
+
.bg-success-transparent-12 {
|
|
4270
|
+
--tw-bg-opacity: 1;
|
|
4271
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3169
4272
|
}
|
|
3170
4273
|
|
|
3171
|
-
.
|
|
3172
|
-
--tw-
|
|
3173
|
-
|
|
4274
|
+
.bg-success-transparent-16 {
|
|
4275
|
+
--tw-bg-opacity: 1;
|
|
4276
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3174
4277
|
}
|
|
3175
4278
|
|
|
3176
|
-
.
|
|
3177
|
-
--tw-
|
|
3178
|
-
|
|
4279
|
+
.bg-success-transparent-24 {
|
|
4280
|
+
--tw-bg-opacity: 1;
|
|
4281
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3179
4282
|
}
|
|
3180
4283
|
|
|
3181
|
-
.bg
|
|
3182
|
-
|
|
4284
|
+
.bg-success-transparent-32 {
|
|
4285
|
+
--tw-bg-opacity: 1;
|
|
4286
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3183
4287
|
}
|
|
3184
4288
|
|
|
3185
|
-
.bg
|
|
3186
|
-
|
|
4289
|
+
.bg-success-transparent-48 {
|
|
4290
|
+
--tw-bg-opacity: 1;
|
|
4291
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3187
4292
|
}
|
|
3188
4293
|
|
|
3189
|
-
.bg
|
|
3190
|
-
|
|
4294
|
+
.bg-success-transparent-8 {
|
|
4295
|
+
--tw-bg-opacity: 1;
|
|
4296
|
+
background-color: color-mix(in srgb, var(--other-transparency-success-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3191
4297
|
}
|
|
3192
4298
|
|
|
3193
|
-
.bg
|
|
3194
|
-
|
|
4299
|
+
.bg-surface {
|
|
4300
|
+
--tw-bg-opacity: 1;
|
|
4301
|
+
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3195
4302
|
}
|
|
3196
4303
|
|
|
3197
|
-
.bg
|
|
3198
|
-
|
|
4304
|
+
.bg-tertiary-10 {
|
|
4305
|
+
--tw-bg-opacity: 1;
|
|
4306
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-10) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3199
4307
|
}
|
|
3200
4308
|
|
|
3201
|
-
.bg-
|
|
4309
|
+
.bg-tertiary-100 {
|
|
3202
4310
|
--tw-bg-opacity: 1;
|
|
3203
|
-
background-color: color-mix(in srgb, var(--
|
|
4311
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3204
4312
|
}
|
|
3205
4313
|
|
|
3206
|
-
.bg-
|
|
4314
|
+
.bg-tertiary-110 {
|
|
3207
4315
|
--tw-bg-opacity: 1;
|
|
3208
|
-
background-color: color-mix(in srgb, var(--
|
|
4316
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-110) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3209
4317
|
}
|
|
3210
4318
|
|
|
3211
|
-
.bg-
|
|
4319
|
+
.bg-tertiary-120 {
|
|
3212
4320
|
--tw-bg-opacity: 1;
|
|
3213
|
-
background-color: color-mix(in srgb, var(--
|
|
4321
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-120) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3214
4322
|
}
|
|
3215
4323
|
|
|
3216
|
-
.bg-
|
|
4324
|
+
.bg-tertiary-130 {
|
|
3217
4325
|
--tw-bg-opacity: 1;
|
|
3218
|
-
background-color: color-mix(in srgb, var(--
|
|
4326
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-130) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3219
4327
|
}
|
|
3220
4328
|
|
|
3221
|
-
.bg-
|
|
4329
|
+
.bg-tertiary-140 {
|
|
3222
4330
|
--tw-bg-opacity: 1;
|
|
3223
|
-
background-color: color-mix(in srgb, var(--
|
|
4331
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-140) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3224
4332
|
}
|
|
3225
4333
|
|
|
3226
|
-
.bg-
|
|
4334
|
+
.bg-tertiary-150 {
|
|
3227
4335
|
--tw-bg-opacity: 1;
|
|
3228
|
-
background-color: color-mix(in srgb, var(--
|
|
4336
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-150) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3229
4337
|
}
|
|
3230
4338
|
|
|
3231
|
-
.bg-
|
|
4339
|
+
.bg-tertiary-20 {
|
|
3232
4340
|
--tw-bg-opacity: 1;
|
|
3233
|
-
background-color: color-mix(in srgb, var(--
|
|
4341
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-20) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3234
4342
|
}
|
|
3235
4343
|
|
|
3236
|
-
.bg-
|
|
4344
|
+
.bg-tertiary-30 {
|
|
3237
4345
|
--tw-bg-opacity: 1;
|
|
3238
|
-
background-color: color-mix(in srgb, var(--
|
|
4346
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-30) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3239
4347
|
}
|
|
3240
4348
|
|
|
3241
|
-
.bg-
|
|
4349
|
+
.bg-tertiary-40 {
|
|
3242
4350
|
--tw-bg-opacity: 1;
|
|
3243
|
-
background-color: color-mix(in srgb, var(--
|
|
4351
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-40) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3244
4352
|
}
|
|
3245
4353
|
|
|
3246
|
-
.bg-
|
|
4354
|
+
.bg-tertiary-5 {
|
|
3247
4355
|
--tw-bg-opacity: 1;
|
|
3248
|
-
background-color: color-mix(in srgb, var(--
|
|
4356
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-5) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3249
4357
|
}
|
|
3250
4358
|
|
|
3251
|
-
.bg-
|
|
4359
|
+
.bg-tertiary-50 {
|
|
3252
4360
|
--tw-bg-opacity: 1;
|
|
3253
|
-
background-color: color-mix(in srgb, var(--
|
|
4361
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3254
4362
|
}
|
|
3255
4363
|
|
|
3256
|
-
.bg-
|
|
4364
|
+
.bg-tertiary-60 {
|
|
3257
4365
|
--tw-bg-opacity: 1;
|
|
3258
|
-
background-color: color-mix(in srgb, var(--
|
|
4366
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-60) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3259
4367
|
}
|
|
3260
4368
|
|
|
3261
|
-
.bg-
|
|
4369
|
+
.bg-tertiary-70 {
|
|
3262
4370
|
--tw-bg-opacity: 1;
|
|
3263
|
-
background-color: color-mix(in srgb, var(--
|
|
4371
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-70) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3264
4372
|
}
|
|
3265
4373
|
|
|
3266
|
-
.bg-
|
|
4374
|
+
.bg-tertiary-80 {
|
|
3267
4375
|
--tw-bg-opacity: 1;
|
|
3268
|
-
background-color: color-mix(in srgb, var(--
|
|
4376
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-80) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3269
4377
|
}
|
|
3270
4378
|
|
|
3271
|
-
.bg-
|
|
4379
|
+
.bg-tertiary-90 {
|
|
3272
4380
|
--tw-bg-opacity: 1;
|
|
3273
|
-
background-color:
|
|
4381
|
+
background-color: color-mix(in srgb, var(--tertiary-ramps-tertiary-90) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3274
4382
|
}
|
|
3275
4383
|
|
|
3276
|
-
.bg-
|
|
4384
|
+
.bg-tertiary-default {
|
|
3277
4385
|
--tw-bg-opacity: 1;
|
|
3278
|
-
background-color: color-mix(in srgb, var(--
|
|
4386
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3279
4387
|
}
|
|
3280
4388
|
|
|
3281
|
-
.bg-
|
|
4389
|
+
.bg-tertiary-hover {
|
|
3282
4390
|
--tw-bg-opacity: 1;
|
|
3283
|
-
background-color: color-mix(in srgb, var(--
|
|
4391
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3284
4392
|
}
|
|
3285
4393
|
|
|
3286
|
-
.bg-
|
|
4394
|
+
.bg-tertiary-hover-bg {
|
|
3287
4395
|
--tw-bg-opacity: 1;
|
|
3288
|
-
background-color: color-mix(in srgb, var(--
|
|
4396
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-hover-bg) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3289
4397
|
}
|
|
3290
4398
|
|
|
3291
|
-
.bg-
|
|
4399
|
+
.bg-tertiary-pressed {
|
|
3292
4400
|
--tw-bg-opacity: 1;
|
|
3293
|
-
background-color: color-mix(in srgb, var(--
|
|
4401
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-pressed) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3294
4402
|
}
|
|
3295
4403
|
|
|
3296
|
-
.bg-
|
|
4404
|
+
.bg-tertiary-stroke {
|
|
3297
4405
|
--tw-bg-opacity: 1;
|
|
3298
|
-
background-color: color-mix(in srgb, var(--
|
|
4406
|
+
background-color: color-mix(in srgb, var(--state-color-tertiary-stroke) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3299
4407
|
}
|
|
3300
4408
|
|
|
3301
|
-
.bg-
|
|
4409
|
+
.bg-tertiary-transparent-12 {
|
|
3302
4410
|
--tw-bg-opacity: 1;
|
|
3303
|
-
background-color: color-mix(in srgb, var(--
|
|
4411
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3304
4412
|
}
|
|
3305
4413
|
|
|
3306
|
-
.bg-
|
|
4414
|
+
.bg-tertiary-transparent-16 {
|
|
3307
4415
|
--tw-bg-opacity: 1;
|
|
3308
|
-
background-color: color-mix(in srgb, var(--
|
|
4416
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3309
4417
|
}
|
|
3310
4418
|
|
|
3311
|
-
.bg-
|
|
4419
|
+
.bg-tertiary-transparent-24 {
|
|
3312
4420
|
--tw-bg-opacity: 1;
|
|
3313
|
-
background-color: color-mix(in srgb, var(--
|
|
4421
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3314
4422
|
}
|
|
3315
4423
|
|
|
3316
|
-
.bg-
|
|
4424
|
+
.bg-tertiary-transparent-32 {
|
|
3317
4425
|
--tw-bg-opacity: 1;
|
|
3318
|
-
background-color: color-mix(in srgb, var(--
|
|
4426
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3319
4427
|
}
|
|
3320
4428
|
|
|
3321
|
-
.bg-
|
|
4429
|
+
.bg-tertiary-transparent-48 {
|
|
3322
4430
|
--tw-bg-opacity: 1;
|
|
3323
|
-
background-color: color-mix(in srgb, var(--
|
|
4431
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3324
4432
|
}
|
|
3325
4433
|
|
|
3326
|
-
.bg-
|
|
4434
|
+
.bg-tertiary-transparent-8 {
|
|
3327
4435
|
--tw-bg-opacity: 1;
|
|
3328
|
-
background-color: color-mix(in srgb, var(--
|
|
4436
|
+
background-color: color-mix(in srgb, var(--main-transparency-tertiary-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3329
4437
|
}
|
|
3330
4438
|
|
|
3331
|
-
.bg-
|
|
4439
|
+
.bg-text-dark {
|
|
3332
4440
|
--tw-bg-opacity: 1;
|
|
3333
|
-
background-color: color-mix(in srgb, var(--
|
|
4441
|
+
background-color: color-mix(in srgb, var(--text-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3334
4442
|
}
|
|
3335
4443
|
|
|
3336
|
-
.bg-
|
|
4444
|
+
.bg-text-grey-dark {
|
|
3337
4445
|
--tw-bg-opacity: 1;
|
|
3338
|
-
background-color: color-mix(in srgb, var(--
|
|
4446
|
+
background-color: color-mix(in srgb, var(--text-grey-dark) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3339
4447
|
}
|
|
3340
4448
|
|
|
3341
|
-
.bg-
|
|
4449
|
+
.bg-text-grey-light {
|
|
3342
4450
|
--tw-bg-opacity: 1;
|
|
3343
|
-
background-color: color-mix(in srgb, var(--
|
|
4451
|
+
background-color: color-mix(in srgb, var(--text-grey-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3344
4452
|
}
|
|
3345
4453
|
|
|
3346
|
-
.bg-
|
|
4454
|
+
.bg-text-grey-medium {
|
|
3347
4455
|
--tw-bg-opacity: 1;
|
|
3348
|
-
background-color: color-mix(in srgb, var(--
|
|
4456
|
+
background-color: color-mix(in srgb, var(--text-grey-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3349
4457
|
}
|
|
3350
4458
|
|
|
3351
|
-
.bg-
|
|
4459
|
+
.bg-text-light {
|
|
3352
4460
|
--tw-bg-opacity: 1;
|
|
3353
|
-
background-color: color-mix(in srgb, var(--
|
|
4461
|
+
background-color: color-mix(in srgb, var(--text-light) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3354
4462
|
}
|
|
3355
4463
|
|
|
3356
|
-
.bg-
|
|
4464
|
+
.bg-text-medium {
|
|
3357
4465
|
--tw-bg-opacity: 1;
|
|
3358
|
-
background-color: color-mix(in srgb, var(--
|
|
4466
|
+
background-color: color-mix(in srgb, var(--text-medium) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3359
4467
|
}
|
|
3360
4468
|
|
|
3361
|
-
.bg-
|
|
4469
|
+
.bg-text-white {
|
|
3362
4470
|
--tw-bg-opacity: 1;
|
|
3363
|
-
background-color: color-mix(in srgb, var(--
|
|
4471
|
+
background-color: color-mix(in srgb, var(--text-white) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3364
4472
|
}
|
|
3365
4473
|
|
|
3366
|
-
.bg-
|
|
4474
|
+
.bg-transparent {
|
|
4475
|
+
background-color: transparent;
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4478
|
+
.bg-warning {
|
|
3367
4479
|
--tw-bg-opacity: 1;
|
|
3368
|
-
background-color: color-mix(in srgb, var(--
|
|
4480
|
+
background-color: color-mix(in srgb, var(--state-color-warning-default) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3369
4481
|
}
|
|
3370
4482
|
|
|
3371
|
-
.bg-
|
|
4483
|
+
.bg-warning-100 {
|
|
3372
4484
|
--tw-bg-opacity: 1;
|
|
3373
|
-
background-color: color-mix(in srgb, var(--
|
|
4485
|
+
background-color: color-mix(in srgb, var(--warning-warning-100) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3374
4486
|
}
|
|
3375
4487
|
|
|
3376
|
-
.bg-
|
|
4488
|
+
.bg-warning-200 {
|
|
3377
4489
|
--tw-bg-opacity: 1;
|
|
3378
|
-
background-color: color-mix(in srgb, var(--
|
|
4490
|
+
background-color: color-mix(in srgb, var(--warning-warning-200) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3379
4491
|
}
|
|
3380
4492
|
|
|
3381
|
-
.bg-
|
|
4493
|
+
.bg-warning-300 {
|
|
3382
4494
|
--tw-bg-opacity: 1;
|
|
3383
|
-
background-color: color-mix(in srgb, var(--
|
|
4495
|
+
background-color: color-mix(in srgb, var(--warning-warning-300) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3384
4496
|
}
|
|
3385
4497
|
|
|
3386
|
-
.bg-
|
|
4498
|
+
.bg-warning-400 {
|
|
3387
4499
|
--tw-bg-opacity: 1;
|
|
3388
|
-
background-color: color-mix(in srgb, var(--
|
|
4500
|
+
background-color: color-mix(in srgb, var(--warning-warning-400) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3389
4501
|
}
|
|
3390
4502
|
|
|
3391
|
-
.bg-
|
|
4503
|
+
.bg-warning-50 {
|
|
3392
4504
|
--tw-bg-opacity: 1;
|
|
3393
|
-
background-color: color-mix(in srgb, var(--
|
|
4505
|
+
background-color: color-mix(in srgb, var(--warning-warning-50) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3394
4506
|
}
|
|
3395
4507
|
|
|
3396
|
-
.bg-
|
|
4508
|
+
.bg-warning-500 {
|
|
3397
4509
|
--tw-bg-opacity: 1;
|
|
3398
|
-
background-color:
|
|
4510
|
+
background-color: color-mix(in srgb, var(--warning-warning-500) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3399
4511
|
}
|
|
3400
4512
|
|
|
3401
|
-
.bg-
|
|
4513
|
+
.bg-warning-600 {
|
|
3402
4514
|
--tw-bg-opacity: 1;
|
|
3403
|
-
background-color: color-mix(in srgb, var(--
|
|
4515
|
+
background-color: color-mix(in srgb, var(--warning-warning-600) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3404
4516
|
}
|
|
3405
4517
|
|
|
3406
|
-
.bg-
|
|
4518
|
+
.bg-warning-700 {
|
|
3407
4519
|
--tw-bg-opacity: 1;
|
|
3408
|
-
background-color: color-mix(in srgb, var(--
|
|
4520
|
+
background-color: color-mix(in srgb, var(--warning-warning-700) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3409
4521
|
}
|
|
3410
4522
|
|
|
3411
|
-
.bg-
|
|
4523
|
+
.bg-warning-800 {
|
|
3412
4524
|
--tw-bg-opacity: 1;
|
|
3413
|
-
background-color: color-mix(in srgb, var(--
|
|
4525
|
+
background-color: color-mix(in srgb, var(--warning-warning-800) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3414
4526
|
}
|
|
3415
4527
|
|
|
3416
|
-
.bg-
|
|
4528
|
+
.bg-warning-900 {
|
|
3417
4529
|
--tw-bg-opacity: 1;
|
|
3418
|
-
background-color: color-mix(in srgb, var(--
|
|
4530
|
+
background-color: color-mix(in srgb, var(--warning-warning-900) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3419
4531
|
}
|
|
3420
4532
|
|
|
3421
|
-
.bg-
|
|
4533
|
+
.bg-warning-foreground {
|
|
3422
4534
|
--tw-bg-opacity: 1;
|
|
3423
|
-
background-color: color-mix(in srgb, var(--
|
|
4535
|
+
background-color: color-mix(in srgb, var(--warning-foreground) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3424
4536
|
}
|
|
3425
4537
|
|
|
3426
|
-
.bg-
|
|
4538
|
+
.bg-warning-transparent-12 {
|
|
3427
4539
|
--tw-bg-opacity: 1;
|
|
3428
|
-
background-color: color-mix(in srgb, var(--
|
|
4540
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3429
4541
|
}
|
|
3430
4542
|
|
|
3431
|
-
.bg-
|
|
4543
|
+
.bg-warning-transparent-16 {
|
|
3432
4544
|
--tw-bg-opacity: 1;
|
|
3433
|
-
background-color: color-mix(in srgb, var(--
|
|
4545
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3434
4546
|
}
|
|
3435
4547
|
|
|
3436
|
-
.bg-
|
|
4548
|
+
.bg-warning-transparent-24 {
|
|
3437
4549
|
--tw-bg-opacity: 1;
|
|
3438
|
-
background-color: color-mix(in srgb, var(--
|
|
4550
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3439
4551
|
}
|
|
3440
4552
|
|
|
3441
|
-
.bg-
|
|
4553
|
+
.bg-warning-transparent-32 {
|
|
3442
4554
|
--tw-bg-opacity: 1;
|
|
3443
|
-
background-color: color-mix(in srgb, var(--
|
|
4555
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3444
4556
|
}
|
|
3445
4557
|
|
|
3446
|
-
.bg-
|
|
4558
|
+
.bg-warning-transparent-48 {
|
|
3447
4559
|
--tw-bg-opacity: 1;
|
|
3448
|
-
background-color: color-mix(in srgb, var(--
|
|
4560
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3449
4561
|
}
|
|
3450
4562
|
|
|
3451
|
-
.bg-
|
|
4563
|
+
.bg-warning-transparent-8 {
|
|
3452
4564
|
--tw-bg-opacity: 1;
|
|
3453
|
-
background-color: color-mix(in srgb, var(--
|
|
4565
|
+
background-color: color-mix(in srgb, var(--other-transparency-warning-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3454
4566
|
}
|
|
3455
4567
|
|
|
3456
|
-
.bg-
|
|
4568
|
+
.bg-white-transparent-12 {
|
|
3457
4569
|
--tw-bg-opacity: 1;
|
|
3458
|
-
background-color: color-mix(in srgb, var(--
|
|
4570
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-12) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3459
4571
|
}
|
|
3460
4572
|
|
|
3461
|
-
.bg-
|
|
4573
|
+
.bg-white-transparent-16 {
|
|
3462
4574
|
--tw-bg-opacity: 1;
|
|
3463
|
-
background-color: color-mix(in srgb, var(--other-transparency-
|
|
4575
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-16) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3464
4576
|
}
|
|
3465
4577
|
|
|
3466
|
-
.bg-
|
|
4578
|
+
.bg-white-transparent-24 {
|
|
3467
4579
|
--tw-bg-opacity: 1;
|
|
3468
|
-
background-color: color-mix(in srgb, var(--
|
|
4580
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-24) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3469
4581
|
}
|
|
3470
4582
|
|
|
3471
|
-
.bg-transparent {
|
|
3472
|
-
|
|
4583
|
+
.bg-white-transparent-32 {
|
|
4584
|
+
--tw-bg-opacity: 1;
|
|
4585
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-32) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3473
4586
|
}
|
|
3474
4587
|
|
|
3475
|
-
.bg-
|
|
4588
|
+
.bg-white-transparent-48 {
|
|
3476
4589
|
--tw-bg-opacity: 1;
|
|
3477
|
-
background-color: color-mix(in srgb, var(--other-transparency-
|
|
4590
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-48) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3478
4591
|
}
|
|
3479
4592
|
|
|
3480
|
-
.bg-white {
|
|
4593
|
+
.bg-white-transparent-8 {
|
|
3481
4594
|
--tw-bg-opacity: 1;
|
|
3482
|
-
background-color:
|
|
4595
|
+
background-color: color-mix(in srgb, var(--other-transparency-white-8) calc(100% * var(--tw-bg-opacity)), transparent);
|
|
3483
4596
|
}
|
|
3484
4597
|
|
|
3485
4598
|
.fill-action-button-icon-active {
|
|
@@ -4033,6 +5146,12 @@ body {
|
|
|
4033
5146
|
font-weight: var(--small8-weight, 700);
|
|
4034
5147
|
}
|
|
4035
5148
|
|
|
5149
|
+
.text-small9 {
|
|
5150
|
+
font-size: var(--small9-size, 8px);
|
|
5151
|
+
line-height: var(--small9-line-height, 10px);
|
|
5152
|
+
font-weight: var(--small9-weight, 400);
|
|
5153
|
+
}
|
|
5154
|
+
|
|
4036
5155
|
.text-subtitile1 {
|
|
4037
5156
|
font-size: var(--subtitle1-size, 16px);
|
|
4038
5157
|
line-height: var(--subtitle1-line-height, 24px);
|
|
@@ -4087,12 +5206,12 @@ body {
|
|
|
4087
5206
|
font-weight: 500;
|
|
4088
5207
|
}
|
|
4089
5208
|
|
|
4090
|
-
.
|
|
4091
|
-
text-transform:
|
|
5209
|
+
.uppercase {
|
|
5210
|
+
text-transform: uppercase;
|
|
4092
5211
|
}
|
|
4093
5212
|
|
|
4094
|
-
.
|
|
4095
|
-
|
|
5213
|
+
.capitalize {
|
|
5214
|
+
text-transform: capitalize;
|
|
4096
5215
|
}
|
|
4097
5216
|
|
|
4098
5217
|
.leading-none {
|
|
@@ -4182,11 +5301,6 @@ body {
|
|
|
4182
5301
|
color: color-mix(in srgb, var(--base-color-popup-foreground) calc(100% * var(--tw-text-opacity)), transparent);
|
|
4183
5302
|
}
|
|
4184
5303
|
|
|
4185
|
-
.text-black {
|
|
4186
|
-
--tw-text-opacity: 1;
|
|
4187
|
-
color: rgb(0 0 0 / var(--tw-text-opacity));
|
|
4188
|
-
}
|
|
4189
|
-
|
|
4190
5304
|
.text-button-error-flat-default {
|
|
4191
5305
|
--tw-text-opacity: 1;
|
|
4192
5306
|
color: color-mix(in srgb, var(--button-error-flat-default-text) calc(100% * var(--tw-text-opacity)), transparent);
|
|
@@ -4326,9 +5440,9 @@ body {
|
|
|
4326
5440
|
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
4327
5441
|
}
|
|
4328
5442
|
|
|
4329
|
-
.text-gray-
|
|
5443
|
+
.text-gray-500 {
|
|
4330
5444
|
--tw-text-opacity: 1;
|
|
4331
|
-
color: rgb(
|
|
5445
|
+
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
4332
5446
|
}
|
|
4333
5447
|
|
|
4334
5448
|
.text-info {
|
|
@@ -4445,6 +5559,12 @@ body {
|
|
|
4445
5559
|
opacity: 0.7;
|
|
4446
5560
|
}
|
|
4447
5561
|
|
|
5562
|
+
.shadow {
|
|
5563
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
5564
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
5565
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
5566
|
+
}
|
|
5567
|
+
|
|
4448
5568
|
.shadow-\[0px_2px_24px_0px_rgba\(145\2c _158\2c _171\2c _0\.24\)\] {
|
|
4449
5569
|
--tw-shadow: 0px 2px 24px 0px rgba(145, 158, 171, 0.24);
|
|
4450
5570
|
--tw-shadow-colored: 0px 2px 24px 0px var(--tw-shadow-color);
|
|
@@ -4727,6 +5847,12 @@ body {
|
|
|
4727
5847
|
font-weight: var(--small8-weight, 700);
|
|
4728
5848
|
}
|
|
4729
5849
|
|
|
5850
|
+
.typography-small9 {
|
|
5851
|
+
font-size: var(--small9-size, 8px);
|
|
5852
|
+
line-height: var(--small9-line-height, 10px);
|
|
5853
|
+
font-weight: var(--small9-weight, 400);
|
|
5854
|
+
}
|
|
5855
|
+
|
|
4730
5856
|
.typography-label1 {
|
|
4731
5857
|
font-size: var(--label-label1-size, 12px);
|
|
4732
5858
|
line-height: var(--label-label1-line-height, 12px);
|