@texturehq/edges 1.31.0 → 1.31.1
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/generated/tailwind-tokens-light.css +140 -0
- package/dist/index.cjs +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/styles.css +306 -39
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -88,11 +88,79 @@
|
|
|
88
88
|
--radius-lg: 0.5rem;
|
|
89
89
|
--radius-xl: 0.75rem;
|
|
90
90
|
--radius-full: 9999px;
|
|
91
|
+
--font-family-sans: Inter, system-ui, sans-serif;
|
|
92
|
+
--font-family-brand: 'TT Firs Neue', 'Helvetica Neue', Arial, system-ui, sans-serif;
|
|
93
|
+
--font-family-mono: 'Fira Code', monospace;
|
|
94
|
+
--font-size-xs: 0.75rem;
|
|
95
|
+
--font-size-sm: 0.875rem;
|
|
96
|
+
--font-size-base: 1rem;
|
|
97
|
+
--font-size-lg: 1.125rem;
|
|
98
|
+
--font-size-xl: 1.25rem;
|
|
99
|
+
--font-size-2xl: 1.5rem;
|
|
100
|
+
--font-size-3xl: 1.875rem;
|
|
101
|
+
--font-size-4xl: 2.25rem;
|
|
102
|
+
--font-size-5xl: 3rem;
|
|
103
|
+
--font-size-7xl: 4.5rem;
|
|
104
|
+
--font-size-8xl: 6rem;
|
|
105
|
+
--font-size-9xl: 8rem;
|
|
91
106
|
--font-weight-light: 300;
|
|
92
107
|
--font-weight-normal: 400;
|
|
93
108
|
--font-weight-medium: 500;
|
|
94
109
|
--font-weight-semibold: 600;
|
|
95
110
|
--font-weight-bold: 700;
|
|
111
|
+
--font-lineheight-tight: 1.25;
|
|
112
|
+
--font-lineheight-normal: 1.5;
|
|
113
|
+
--font-letterspacing-normal: 0;
|
|
114
|
+
--font-letterspacing-widest: 0.1em;
|
|
115
|
+
--text-display-xl-size: 6rem;
|
|
116
|
+
--text-display-xl-line-height: 1;
|
|
117
|
+
--text-display-xl-weight: 500;
|
|
118
|
+
--text-display-lg-size: 4.5rem;
|
|
119
|
+
--text-display-lg-line-height: 1;
|
|
120
|
+
--text-display-lg-weight: 500;
|
|
121
|
+
--text-display-md-size: 3rem;
|
|
122
|
+
--text-display-md-line-height: 1.05;
|
|
123
|
+
--text-display-md-weight: 500;
|
|
124
|
+
--text-heading-xl-size: 2.25rem;
|
|
125
|
+
--text-heading-xl-line-height: 1.1;
|
|
126
|
+
--text-heading-xl-weight: 500;
|
|
127
|
+
--text-heading-lg-size: 1.875rem;
|
|
128
|
+
--text-heading-lg-line-height: 1.15;
|
|
129
|
+
--text-heading-lg-weight: 500;
|
|
130
|
+
--text-heading-md-size: 1.5rem;
|
|
131
|
+
--text-heading-md-line-height: 1.2;
|
|
132
|
+
--text-heading-md-weight: 600;
|
|
133
|
+
--text-heading-sm-size: 1.25rem;
|
|
134
|
+
--text-heading-sm-line-height: 1.25;
|
|
135
|
+
--text-heading-sm-weight: 600;
|
|
136
|
+
--text-body-lg-size: 1.125rem;
|
|
137
|
+
--text-body-lg-line-height: 1.55;
|
|
138
|
+
--text-body-lg-weight: 400;
|
|
139
|
+
--text-body-md-size: 1rem;
|
|
140
|
+
--text-body-md-line-height: 1.5;
|
|
141
|
+
--text-body-md-letter-spacing: 0;
|
|
142
|
+
--text-body-md-weight: 400;
|
|
143
|
+
--text-body-sm-size: 0.875rem;
|
|
144
|
+
--text-body-sm-line-height: 1.55;
|
|
145
|
+
--text-body-sm-weight: 400;
|
|
146
|
+
--text-label-lg-size: 1rem;
|
|
147
|
+
--text-label-lg-line-height: 1.4;
|
|
148
|
+
--text-label-lg-weight: 500;
|
|
149
|
+
--text-label-md-size: 0.875rem;
|
|
150
|
+
--text-label-md-line-height: 1.4;
|
|
151
|
+
--text-label-md-weight: 500;
|
|
152
|
+
--text-label-sm-size: 0.8125rem;
|
|
153
|
+
--text-label-sm-line-height: 1.4;
|
|
154
|
+
--text-label-sm-weight: 500;
|
|
155
|
+
--text-caption-size: 0.8125rem;
|
|
156
|
+
--text-caption-line-height: 1.4;
|
|
157
|
+
--text-caption-weight: 400;
|
|
158
|
+
--text-code-size: 0.875rem;
|
|
159
|
+
--text-code-line-height: 1.5;
|
|
160
|
+
--text-code-weight: 400;
|
|
161
|
+
--text-eyebrow-size: 0.6875rem;
|
|
162
|
+
--text-eyebrow-line-height: 1.4;
|
|
163
|
+
--text-eyebrow-weight: 600;
|
|
96
164
|
--color-background-body: #ffffff;
|
|
97
165
|
--color-background-surface: #ffffff;
|
|
98
166
|
--color-background-muted: #f5f5f4;
|
|
@@ -187,6 +255,14 @@
|
|
|
187
255
|
--color-state-exporting-data: #f9c869;
|
|
188
256
|
--color-state-exporting-border: #f59e0b;
|
|
189
257
|
--color-state-exporting-text: #92400e;
|
|
258
|
+
--color-brand-primary: var(--color-ink);
|
|
259
|
+
--color-brand-dark: var(--color-ink);
|
|
260
|
+
--color-brand-light: var(--color-linen);
|
|
261
|
+
--color-brand-background: var(--color-linen);
|
|
262
|
+
--color-neutral-black: var(--color-black);
|
|
263
|
+
--action-brand-background: var(--color-ink);
|
|
264
|
+
--action-brand-hover: var(--color-graphite);
|
|
265
|
+
--feedback-success-text: var(--color-success-dark);
|
|
190
266
|
--control-sm: 0.75rem;
|
|
191
267
|
--control-md: 0.875rem;
|
|
192
268
|
--control-lg: 1rem;
|
|
@@ -492,6 +568,70 @@
|
|
|
492
568
|
--font-letterspacing-wide: 0.025em;
|
|
493
569
|
--font-letterspacing-wider: 0.05em;
|
|
494
570
|
--font-letterspacing-widest: 0.1em;
|
|
571
|
+
--text-display-xl-size: 6rem;
|
|
572
|
+
--text-display-xl-line-height: 1;
|
|
573
|
+
--text-display-xl-letter-spacing: 0;
|
|
574
|
+
--text-display-xl-weight: 500;
|
|
575
|
+
--text-display-lg-size: 4.5rem;
|
|
576
|
+
--text-display-lg-line-height: 1;
|
|
577
|
+
--text-display-lg-letter-spacing: 0;
|
|
578
|
+
--text-display-lg-weight: 500;
|
|
579
|
+
--text-display-md-size: 3rem;
|
|
580
|
+
--text-display-md-line-height: 1.05;
|
|
581
|
+
--text-display-md-letter-spacing: 0;
|
|
582
|
+
--text-display-md-weight: 500;
|
|
583
|
+
--text-heading-xl-size: 2.25rem;
|
|
584
|
+
--text-heading-xl-line-height: 1.1;
|
|
585
|
+
--text-heading-xl-letter-spacing: 0;
|
|
586
|
+
--text-heading-xl-weight: 500;
|
|
587
|
+
--text-heading-lg-size: 1.875rem;
|
|
588
|
+
--text-heading-lg-line-height: 1.15;
|
|
589
|
+
--text-heading-lg-letter-spacing: 0;
|
|
590
|
+
--text-heading-lg-weight: 500;
|
|
591
|
+
--text-heading-md-size: 1.5rem;
|
|
592
|
+
--text-heading-md-line-height: 1.2;
|
|
593
|
+
--text-heading-md-letter-spacing: 0;
|
|
594
|
+
--text-heading-md-weight: 600;
|
|
595
|
+
--text-heading-sm-size: 1.25rem;
|
|
596
|
+
--text-heading-sm-line-height: 1.25;
|
|
597
|
+
--text-heading-sm-letter-spacing: 0;
|
|
598
|
+
--text-heading-sm-weight: 600;
|
|
599
|
+
--text-body-lg-size: 1.125rem;
|
|
600
|
+
--text-body-lg-line-height: 1.55;
|
|
601
|
+
--text-body-lg-letter-spacing: 0;
|
|
602
|
+
--text-body-lg-weight: 400;
|
|
603
|
+
--text-body-md-size: 1rem;
|
|
604
|
+
--text-body-md-line-height: 1.5;
|
|
605
|
+
--text-body-md-letter-spacing: 0;
|
|
606
|
+
--text-body-md-weight: 400;
|
|
607
|
+
--text-body-sm-size: 0.875rem;
|
|
608
|
+
--text-body-sm-line-height: 1.55;
|
|
609
|
+
--text-body-sm-letter-spacing: 0;
|
|
610
|
+
--text-body-sm-weight: 400;
|
|
611
|
+
--text-label-lg-size: 1rem;
|
|
612
|
+
--text-label-lg-line-height: 1.4;
|
|
613
|
+
--text-label-lg-letter-spacing: 0;
|
|
614
|
+
--text-label-lg-weight: 500;
|
|
615
|
+
--text-label-md-size: 0.875rem;
|
|
616
|
+
--text-label-md-line-height: 1.4;
|
|
617
|
+
--text-label-md-letter-spacing: 0;
|
|
618
|
+
--text-label-md-weight: 500;
|
|
619
|
+
--text-label-sm-size: 0.8125rem;
|
|
620
|
+
--text-label-sm-line-height: 1.4;
|
|
621
|
+
--text-label-sm-letter-spacing: 0;
|
|
622
|
+
--text-label-sm-weight: 500;
|
|
623
|
+
--text-caption-size: 0.8125rem;
|
|
624
|
+
--text-caption-line-height: 1.4;
|
|
625
|
+
--text-caption-letter-spacing: 0;
|
|
626
|
+
--text-caption-weight: 400;
|
|
627
|
+
--text-code-size: 0.875rem;
|
|
628
|
+
--text-code-line-height: 1.5;
|
|
629
|
+
--text-code-letter-spacing: 0;
|
|
630
|
+
--text-code-weight: 400;
|
|
631
|
+
--text-eyebrow-size: 0.6875rem;
|
|
632
|
+
--text-eyebrow-line-height: 1.4;
|
|
633
|
+
--text-eyebrow-letter-spacing: 0.1em;
|
|
634
|
+
--text-eyebrow-weight: 600;
|
|
495
635
|
--color-background-body: #ffffff;
|
|
496
636
|
--color-background-surface: #ffffff;
|
|
497
637
|
--color-background-muted: #f5f5f4;
|
|
@@ -699,6 +839,54 @@
|
|
|
699
839
|
--color-state-exporting-text: #92400e;
|
|
700
840
|
}
|
|
701
841
|
:root {
|
|
842
|
+
--text-display-xl-size: var(--font-size-8xl);
|
|
843
|
+
--text-display-xl-letter-spacing: var(--font-letterspacing-normal);
|
|
844
|
+
--text-display-xl-weight: var(--font-weight-medium);
|
|
845
|
+
--text-display-lg-size: var(--font-size-7xl);
|
|
846
|
+
--text-display-lg-letter-spacing: var(--font-letterspacing-normal);
|
|
847
|
+
--text-display-lg-weight: var(--font-weight-medium);
|
|
848
|
+
--text-display-md-size: var(--font-size-5xl);
|
|
849
|
+
--text-display-md-letter-spacing: var(--font-letterspacing-normal);
|
|
850
|
+
--text-display-md-weight: var(--font-weight-medium);
|
|
851
|
+
--text-heading-xl-size: var(--font-size-4xl);
|
|
852
|
+
--text-heading-xl-letter-spacing: var(--font-letterspacing-normal);
|
|
853
|
+
--text-heading-xl-weight: var(--font-weight-medium);
|
|
854
|
+
--text-heading-lg-size: var(--font-size-3xl);
|
|
855
|
+
--text-heading-lg-letter-spacing: var(--font-letterspacing-normal);
|
|
856
|
+
--text-heading-lg-weight: var(--font-weight-medium);
|
|
857
|
+
--text-heading-md-size: var(--font-size-2xl);
|
|
858
|
+
--text-heading-md-letter-spacing: var(--font-letterspacing-normal);
|
|
859
|
+
--text-heading-md-weight: var(--font-weight-semibold);
|
|
860
|
+
--text-heading-sm-size: var(--font-size-xl);
|
|
861
|
+
--text-heading-sm-line-height: var(--font-lineheight-tight);
|
|
862
|
+
--text-heading-sm-letter-spacing: var(--font-letterspacing-normal);
|
|
863
|
+
--text-heading-sm-weight: var(--font-weight-semibold);
|
|
864
|
+
--text-body-lg-size: var(--font-size-lg);
|
|
865
|
+
--text-body-lg-letter-spacing: var(--font-letterspacing-normal);
|
|
866
|
+
--text-body-lg-weight: var(--font-weight-normal);
|
|
867
|
+
--text-body-md-size: var(--font-size-base);
|
|
868
|
+
--text-body-md-line-height: var(--font-lineheight-normal);
|
|
869
|
+
--text-body-md-letter-spacing: var(--font-letterspacing-normal);
|
|
870
|
+
--text-body-md-weight: var(--font-weight-normal);
|
|
871
|
+
--text-body-sm-size: var(--font-size-sm);
|
|
872
|
+
--text-body-sm-letter-spacing: var(--font-letterspacing-normal);
|
|
873
|
+
--text-body-sm-weight: var(--font-weight-normal);
|
|
874
|
+
--text-label-lg-size: var(--font-size-base);
|
|
875
|
+
--text-label-lg-letter-spacing: var(--font-letterspacing-normal);
|
|
876
|
+
--text-label-lg-weight: var(--font-weight-medium);
|
|
877
|
+
--text-label-md-size: var(--font-size-sm);
|
|
878
|
+
--text-label-md-letter-spacing: var(--font-letterspacing-normal);
|
|
879
|
+
--text-label-md-weight: var(--font-weight-medium);
|
|
880
|
+
--text-label-sm-letter-spacing: var(--font-letterspacing-normal);
|
|
881
|
+
--text-label-sm-weight: var(--font-weight-medium);
|
|
882
|
+
--text-caption-letter-spacing: var(--font-letterspacing-normal);
|
|
883
|
+
--text-caption-weight: var(--font-weight-normal);
|
|
884
|
+
--text-code-size: var(--font-size-sm);
|
|
885
|
+
--text-code-line-height: var(--font-lineheight-normal);
|
|
886
|
+
--text-code-letter-spacing: var(--font-letterspacing-normal);
|
|
887
|
+
--text-code-weight: var(--font-weight-normal);
|
|
888
|
+
--text-eyebrow-letter-spacing: var(--font-letterspacing-widest);
|
|
889
|
+
--text-eyebrow-weight: var(--font-weight-semibold);
|
|
702
890
|
--color-background-body: var(--color-white);
|
|
703
891
|
--color-background-surface: var(--color-white);
|
|
704
892
|
--color-background-muted: var(--color-gray-100);
|
|
@@ -749,6 +937,30 @@
|
|
|
749
937
|
--color-map-satellite-border: var(--color-white);
|
|
750
938
|
--color-map-neutral-border: var(--color-black);
|
|
751
939
|
}
|
|
940
|
+
:root {
|
|
941
|
+
--text-display-xl: var(--text-display-xl-weight) var(--text-display-xl-size)/var(--text-display-xl-line-height) var(--font-family-brand);
|
|
942
|
+
--text-display-lg: var(--text-display-lg-weight) var(--text-display-lg-size)/var(--text-display-lg-line-height) var(--font-family-brand);
|
|
943
|
+
--text-display-md: var(--text-display-md-weight) var(--text-display-md-size)/var(--text-display-md-line-height) var(--font-family-brand);
|
|
944
|
+
--text-heading-xl: var(--text-heading-xl-weight) var(--text-heading-xl-size)/var(--text-heading-xl-line-height) var(--font-family-brand);
|
|
945
|
+
--text-heading-lg: var(--text-heading-lg-weight) var(--text-heading-lg-size)/var(--text-heading-lg-line-height) var(--font-family-brand);
|
|
946
|
+
--text-heading-md: var(--text-heading-md-weight) var(--text-heading-md-size)/var(--text-heading-md-line-height) var(--font-family-brand);
|
|
947
|
+
--text-heading-sm: var(--text-heading-sm-weight) var(--text-heading-sm-size)/var(--text-heading-sm-line-height) var(--font-family-brand);
|
|
948
|
+
--text-body-lg: var(--text-body-lg-weight) var(--text-body-lg-size)/var(--text-body-lg-line-height) var(--font-family-sans);
|
|
949
|
+
--text-body-md: var(--text-body-md-weight) var(--text-body-md-size)/var(--text-body-md-line-height) var(--font-family-sans);
|
|
950
|
+
--text-body-sm: var(--text-body-sm-weight) var(--text-body-sm-size)/var(--text-body-sm-line-height) var(--font-family-sans);
|
|
951
|
+
--text-label-lg: var(--text-label-lg-weight) var(--text-label-lg-size)/var(--text-label-lg-line-height) var(--font-family-sans);
|
|
952
|
+
--text-label-md: var(--text-label-md-weight) var(--text-label-md-size)/var(--text-label-md-line-height) var(--font-family-sans);
|
|
953
|
+
--text-label-sm: var(--text-label-sm-weight) var(--text-label-sm-size)/var(--text-label-sm-line-height) var(--font-family-sans);
|
|
954
|
+
--text-caption: var(--text-caption-weight) var(--text-caption-size)/var(--text-caption-line-height) var(--font-family-sans);
|
|
955
|
+
--text-code: var(--text-code-weight) var(--text-code-size)/var(--text-code-line-height) var(--font-family-mono);
|
|
956
|
+
--text-eyebrow: var(--text-eyebrow-weight) var(--text-eyebrow-size)/var(--text-eyebrow-line-height) var(--font-family-mono);
|
|
957
|
+
}
|
|
958
|
+
@media (max-width: 768px) {
|
|
959
|
+
:root {
|
|
960
|
+
--text-body-md-size: 1.0625rem;
|
|
961
|
+
--text-body-lg-size: 1.1875rem;
|
|
962
|
+
}
|
|
963
|
+
}
|
|
752
964
|
.theme-dark {
|
|
753
965
|
--color-white: #ffffff;
|
|
754
966
|
--color-black: #000000;
|
|
@@ -1083,45 +1295,6 @@
|
|
|
1083
1295
|
--color-state-exporting-border: #fbbf24;
|
|
1084
1296
|
--color-state-exporting-text: #fef3c7;
|
|
1085
1297
|
}
|
|
1086
|
-
:root {
|
|
1087
|
-
--color-brand-primary: var(--color-ink);
|
|
1088
|
-
--color-brand-dark: var(--color-ink);
|
|
1089
|
-
--color-brand-light: var(--color-linen);
|
|
1090
|
-
--color-brand-background: var(--color-linen);
|
|
1091
|
-
--color-neutral-white: var(--color-white);
|
|
1092
|
-
--color-neutral-black: var(--color-black);
|
|
1093
|
-
--action-brand-background: var(--color-ink);
|
|
1094
|
-
--action-brand-hover: var(--color-graphite);
|
|
1095
|
-
--action-brand-text: var(--color-white);
|
|
1096
|
-
--action-default-background: var(--color-ink);
|
|
1097
|
-
--action-default-hover: var(--color-graphite);
|
|
1098
|
-
--action-default-text: var(--color-white);
|
|
1099
|
-
--action-destructive-background: var(--color-error-base);
|
|
1100
|
-
--action-destructive-hover: var(--color-error-dark);
|
|
1101
|
-
--action-destructive-text: var(--color-white);
|
|
1102
|
-
--action-disabled-background: var(--color-gray-300);
|
|
1103
|
-
--action-disabled-text: var(--color-gray-500);
|
|
1104
|
-
--feedback-success-text: var(--color-success-dark);
|
|
1105
|
-
--feedback-success-icon: var(--color-success-base);
|
|
1106
|
-
--feedback-success-background: var(--color-success-light);
|
|
1107
|
-
--feedback-success-border: var(--color-success-base);
|
|
1108
|
-
--feedback-error-text: var(--color-error-dark);
|
|
1109
|
-
--feedback-error-icon: var(--color-error-base);
|
|
1110
|
-
--feedback-error-background: var(--color-error-light);
|
|
1111
|
-
--feedback-error-border: var(--color-error-base);
|
|
1112
|
-
--feedback-warning-text: var(--color-warning-dark);
|
|
1113
|
-
--feedback-warning-icon: var(--color-warning-base);
|
|
1114
|
-
--feedback-warning-background: var(--color-warning-light);
|
|
1115
|
-
--feedback-warning-border: var(--color-warning-base);
|
|
1116
|
-
--feedback-info-text: var(--color-info-dark);
|
|
1117
|
-
--feedback-info-icon: var(--color-info-base);
|
|
1118
|
-
--feedback-info-background: var(--color-info-light);
|
|
1119
|
-
--feedback-info-border: var(--color-info-base);
|
|
1120
|
-
--skeleton-base: var(--color-gray-200);
|
|
1121
|
-
--skeleton-highlight: var(--color-gray-100);
|
|
1122
|
-
--skeleton-wave: var(--color-skeleton-wave-light);
|
|
1123
|
-
--theme-text-label: var(--color-ink);
|
|
1124
|
-
}
|
|
1125
1298
|
:root {
|
|
1126
1299
|
--theme-background-canvas: var(--color-background-canvas);
|
|
1127
1300
|
--theme-background-ai: var(--color-background-ai);
|
|
@@ -3436,6 +3609,15 @@
|
|
|
3436
3609
|
border-color: color-mix(in oklab, var(--color-border-muted) 50%, transparent);
|
|
3437
3610
|
}
|
|
3438
3611
|
}
|
|
3612
|
+
.border-brand-primary {
|
|
3613
|
+
border-color: var(--color-brand-primary);
|
|
3614
|
+
}
|
|
3615
|
+
.border-brand-primary\/20 {
|
|
3616
|
+
border-color: color-mix(in srgb, #111111 20%, transparent);
|
|
3617
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3618
|
+
border-color: color-mix(in oklab, var(--color-brand-primary) 20%, transparent);
|
|
3619
|
+
}
|
|
3620
|
+
}
|
|
3439
3621
|
.border-current {
|
|
3440
3622
|
border-color: currentcolor;
|
|
3441
3623
|
}
|
|
@@ -3529,6 +3711,9 @@
|
|
|
3529
3711
|
.border-l-border-muted {
|
|
3530
3712
|
border-left-color: var(--color-border-muted);
|
|
3531
3713
|
}
|
|
3714
|
+
.border-l-brand-primary {
|
|
3715
|
+
border-left-color: var(--color-brand-primary);
|
|
3716
|
+
}
|
|
3532
3717
|
.border-l-feedback-error-border {
|
|
3533
3718
|
border-left-color: var(--color-feedback-error-border);
|
|
3534
3719
|
}
|
|
@@ -3661,6 +3846,24 @@
|
|
|
3661
3846
|
.bg-border-muted {
|
|
3662
3847
|
background-color: var(--color-border-muted);
|
|
3663
3848
|
}
|
|
3849
|
+
.bg-brand-light {
|
|
3850
|
+
background-color: var(--color-brand-light);
|
|
3851
|
+
}
|
|
3852
|
+
.bg-brand-primary {
|
|
3853
|
+
background-color: var(--color-brand-primary);
|
|
3854
|
+
}
|
|
3855
|
+
.bg-brand-primary\/10 {
|
|
3856
|
+
background-color: color-mix(in srgb, #111111 10%, transparent);
|
|
3857
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3858
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 10%, transparent);
|
|
3859
|
+
}
|
|
3860
|
+
}
|
|
3861
|
+
.bg-brand-primary\/20 {
|
|
3862
|
+
background-color: color-mix(in srgb, #111111 20%, transparent);
|
|
3863
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
3864
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 20%, transparent);
|
|
3865
|
+
}
|
|
3866
|
+
}
|
|
3664
3867
|
.bg-current {
|
|
3665
3868
|
background-color: currentcolor;
|
|
3666
3869
|
}
|
|
@@ -3751,6 +3954,9 @@
|
|
|
3751
3954
|
.bg-inherit {
|
|
3752
3955
|
background-color: inherit;
|
|
3753
3956
|
}
|
|
3957
|
+
.bg-neutral-black {
|
|
3958
|
+
background-color: var(--color-neutral-black);
|
|
3959
|
+
}
|
|
3754
3960
|
.bg-orange-50 {
|
|
3755
3961
|
background-color: var(--color-orange-50);
|
|
3756
3962
|
}
|
|
@@ -3964,6 +4170,12 @@
|
|
|
3964
4170
|
.fill-background-surface {
|
|
3965
4171
|
fill: var(--color-background-surface);
|
|
3966
4172
|
}
|
|
4173
|
+
.fill-brand-primary {
|
|
4174
|
+
fill: var(--color-brand-primary);
|
|
4175
|
+
}
|
|
4176
|
+
.fill-neutral-black {
|
|
4177
|
+
fill: var(--color-neutral-black);
|
|
4178
|
+
}
|
|
3967
4179
|
.fill-red-500 {
|
|
3968
4180
|
fill: var(--color-red-500);
|
|
3969
4181
|
}
|
|
@@ -4498,6 +4710,12 @@
|
|
|
4498
4710
|
.text-blue-900 {
|
|
4499
4711
|
color: var(--color-blue-900);
|
|
4500
4712
|
}
|
|
4713
|
+
.text-brand-light {
|
|
4714
|
+
color: var(--color-brand-light);
|
|
4715
|
+
}
|
|
4716
|
+
.text-brand-primary {
|
|
4717
|
+
color: var(--color-brand-primary);
|
|
4718
|
+
}
|
|
4501
4719
|
.text-current {
|
|
4502
4720
|
color: currentcolor;
|
|
4503
4721
|
}
|
|
@@ -5101,6 +5319,26 @@
|
|
|
5101
5319
|
}
|
|
5102
5320
|
}
|
|
5103
5321
|
}
|
|
5322
|
+
.group-hover\:bg-brand-primary\/15 {
|
|
5323
|
+
&:is(:where(.group):hover *) {
|
|
5324
|
+
@media (hover: hover) {
|
|
5325
|
+
background-color: color-mix(in srgb, #111111 15%, transparent);
|
|
5326
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5327
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 15%, transparent);
|
|
5328
|
+
}
|
|
5329
|
+
}
|
|
5330
|
+
}
|
|
5331
|
+
}
|
|
5332
|
+
.group-hover\:bg-brand-primary\/90 {
|
|
5333
|
+
&:is(:where(.group):hover *) {
|
|
5334
|
+
@media (hover: hover) {
|
|
5335
|
+
background-color: color-mix(in srgb, #111111 90%, transparent);
|
|
5336
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5337
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 90%, transparent);
|
|
5338
|
+
}
|
|
5339
|
+
}
|
|
5340
|
+
}
|
|
5341
|
+
}
|
|
5104
5342
|
.group-hover\:bg-gray-200 {
|
|
5105
5343
|
&:is(:where(.group):hover *) {
|
|
5106
5344
|
@media (hover: hover) {
|
|
@@ -5108,6 +5346,13 @@
|
|
|
5108
5346
|
}
|
|
5109
5347
|
}
|
|
5110
5348
|
}
|
|
5349
|
+
.group-hover\:text-brand-primary {
|
|
5350
|
+
&:is(:where(.group):hover *) {
|
|
5351
|
+
@media (hover: hover) {
|
|
5352
|
+
color: var(--color-brand-primary);
|
|
5353
|
+
}
|
|
5354
|
+
}
|
|
5355
|
+
}
|
|
5111
5356
|
.group-hover\:text-text-heading {
|
|
5112
5357
|
&:is(:where(.group):hover *) {
|
|
5113
5358
|
@media (hover: hover) {
|
|
@@ -5582,6 +5827,16 @@
|
|
|
5582
5827
|
}
|
|
5583
5828
|
}
|
|
5584
5829
|
}
|
|
5830
|
+
.hover\:bg-brand-primary\/90 {
|
|
5831
|
+
&:hover {
|
|
5832
|
+
@media (hover: hover) {
|
|
5833
|
+
background-color: color-mix(in srgb, #111111 90%, transparent);
|
|
5834
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5835
|
+
background-color: color-mix(in oklab, var(--color-brand-primary) 90%, transparent);
|
|
5836
|
+
}
|
|
5837
|
+
}
|
|
5838
|
+
}
|
|
5839
|
+
}
|
|
5585
5840
|
.hover\:bg-feedback-error-background {
|
|
5586
5841
|
&:hover {
|
|
5587
5842
|
@media (hover: hover) {
|
|
@@ -5719,6 +5974,13 @@
|
|
|
5719
5974
|
}
|
|
5720
5975
|
}
|
|
5721
5976
|
}
|
|
5977
|
+
.hover\:text-brand-primary {
|
|
5978
|
+
&:hover {
|
|
5979
|
+
@media (hover: hover) {
|
|
5980
|
+
color: var(--color-brand-primary);
|
|
5981
|
+
}
|
|
5982
|
+
}
|
|
5983
|
+
}
|
|
5722
5984
|
.hover\:text-text-body {
|
|
5723
5985
|
&:hover {
|
|
5724
5986
|
@media (hover: hover) {
|
|
@@ -5909,6 +6171,11 @@
|
|
|
5909
6171
|
border-width: 0px !important;
|
|
5910
6172
|
}
|
|
5911
6173
|
}
|
|
6174
|
+
.focus-visible\:bg-brand-light {
|
|
6175
|
+
&:focus-visible {
|
|
6176
|
+
background-color: var(--color-brand-light);
|
|
6177
|
+
}
|
|
6178
|
+
}
|
|
5912
6179
|
.focus-visible\:\!ring-0 {
|
|
5913
6180
|
&:focus-visible {
|
|
5914
6181
|
--tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor) !important;
|