tyrell-components 1.0.0-TC19 → 1.0.0-TC23
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/css/tyrell-brand.css +913 -0
- package/css/tyrell.css +64 -168
- package/dist/tyrell-brand.css +913 -0
- package/dist/tyrell.css +64 -168
- package/dist/tyrell.js +1 -1
- package/lib/components/tooltip.js +1 -1
- package/lib/styles/button.d.ts +1 -1
- package/lib/styles/button.d.ts.map +1 -1
- package/lib/styles/button.js +1 -1
- package/lib/styles/calendar-month.d.ts +1 -1
- package/lib/styles/calendar-month.js +3 -3
- package/lib/styles/checkbox.d.ts +1 -1
- package/lib/styles/checkbox.d.ts.map +1 -1
- package/lib/styles/custom-scrollbar.d.ts +1 -1
- package/lib/styles/custom-scrollbar.d.ts.map +1 -1
- package/lib/styles/custom-scrollbar.js +8 -8
- package/lib/styles/date-picker.d.ts +1 -1
- package/lib/styles/date-picker.d.ts.map +1 -1
- package/lib/styles/date-picker.js +16 -16
- package/lib/styles/dropdown.d.ts +1 -1
- package/lib/styles/dropdown.d.ts.map +1 -1
- package/lib/styles/dropdown.js +7 -7
- package/lib/styles/input.d.ts +1 -1
- package/lib/styles/input.d.ts.map +1 -1
- package/lib/styles/input.js +16 -16
- package/lib/styles/multiselect.d.ts +1 -1
- package/lib/styles/multiselect.d.ts.map +1 -1
- package/lib/styles/multiselect.js +1 -1
- package/lib/styles/option.d.ts +1 -1
- package/lib/styles/option.js +1 -1
- package/lib/styles/radio.d.ts +1 -1
- package/lib/styles/radio.d.ts.map +1 -1
- package/lib/styles/scroll-container.d.ts +1 -1
- package/lib/styles/scroll-container.d.ts.map +1 -1
- package/lib/styles/scroll-container.js +10 -10
- package/lib/styles/step.d.ts +1 -1
- package/lib/styles/step.d.ts.map +1 -1
- package/lib/styles/switch.d.ts +1 -1
- package/lib/styles/switch.d.ts.map +1 -1
- package/lib/styles/tab.d.ts +1 -1
- package/lib/styles/tab.d.ts.map +1 -1
- package/lib/styles/tag.d.ts +1 -1
- package/lib/styles/tag.d.ts.map +1 -1
- package/lib/styles/tag.js +15 -15
- package/lib/styles/textarea.d.ts +1 -1
- package/lib/styles/textarea.js +1 -1
- package/lib/styles/tooltip.d.ts.map +1 -1
- package/lib/styles/tooltip.js +12 -15
- package/lib/styles/tooltip.js.map +1 -1
- package/lib/styles/wizard.d.ts +12 -7
- package/lib/styles/wizard.d.ts.map +1 -1
- package/lib/styles/wizard.js +46 -74
- package/lib/styles/wizard.js.map +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
package/css/tyrell.css
CHANGED
|
@@ -128,7 +128,7 @@ html {
|
|
|
128
128
|
5-VARIANT COLOR SYSTEM
|
|
129
129
|
Simplified from 7 variants to 5 practical variants:
|
|
130
130
|
-strong = Strong emphasis - active states, strong borders
|
|
131
|
-
-
|
|
131
|
+
-bold = Moderate emphasis - hover states, focus rings
|
|
132
132
|
= Base color - default appearance
|
|
133
133
|
-soft = Reduced emphasis - muted backgrounds, secondary
|
|
134
134
|
-faint = Minimal emphasis - subtle hints, disabled states
|
|
@@ -136,50 +136,47 @@ Simplified from 7 variants to 5 practical variants:
|
|
|
136
136
|
|
|
137
137
|
/* Primary */
|
|
138
138
|
--ty-color-primary-strong: #163793;
|
|
139
|
-
--ty-color-primary-
|
|
139
|
+
--ty-color-primary-bold: #304c9f;
|
|
140
140
|
--ty-color-primary: #466bce;
|
|
141
141
|
--ty-color-primary-soft: #60a5fa;
|
|
142
142
|
--ty-color-primary-faint: #93c5fd;
|
|
143
143
|
|
|
144
144
|
/* Secondary */
|
|
145
145
|
--ty-color-secondary-strong: #7442c2;
|
|
146
|
-
--ty-color-secondary-
|
|
146
|
+
--ty-color-secondary-bold: #8153cf;
|
|
147
147
|
--ty-color-secondary: #9774e7;
|
|
148
148
|
--ty-color-secondary-soft: #a78bfa;
|
|
149
149
|
--ty-color-secondary-faint: #c4b5fd;
|
|
150
150
|
|
|
151
151
|
/* Success */
|
|
152
152
|
--ty-color-success-strong: #177858;
|
|
153
|
-
--ty-color-success-
|
|
153
|
+
--ty-color-success-bold: #3e9779;
|
|
154
154
|
--ty-color-success: #3eaa86;
|
|
155
155
|
--ty-color-success-soft: #64b399;
|
|
156
156
|
--ty-color-success-faint: #7fd4b2;
|
|
157
157
|
|
|
158
158
|
/* Danger */
|
|
159
159
|
--ty-color-danger-strong: #b91c1c;
|
|
160
|
-
--ty-color-danger-
|
|
160
|
+
--ty-color-danger-bold: #dc2626;
|
|
161
161
|
--ty-color-danger: #ef4444;
|
|
162
162
|
--ty-color-danger-soft: #f87171;
|
|
163
163
|
--ty-color-danger-faint: #fca5a5;
|
|
164
164
|
|
|
165
165
|
/* Warning */
|
|
166
166
|
--ty-color-warning-strong: #e86400;
|
|
167
|
-
--ty-color-warning-
|
|
167
|
+
--ty-color-warning-bold: #ee7f00;
|
|
168
168
|
--ty-color-warning: #f59e0b;
|
|
169
169
|
--ty-color-warning-soft: #fbbf24;
|
|
170
170
|
--ty-color-warning-faint: #fcd34d;
|
|
171
171
|
|
|
172
172
|
/* Neutral */
|
|
173
173
|
--ty-color-neutral-strong: #000000;
|
|
174
|
-
--ty-color-neutral-
|
|
174
|
+
--ty-color-neutral-bold: #000000;
|
|
175
175
|
--ty-color-neutral: #111827;
|
|
176
176
|
--ty-color-neutral-soft: #374151;
|
|
177
177
|
--ty-color-neutral-faint: #9ca3af;
|
|
178
178
|
|
|
179
179
|
/* Accent - brand highlights, focus rings, selection states */
|
|
180
|
-
--ty-color-accent-mild: #ff8800; /* darker - hover/active */
|
|
181
|
-
--ty-color-accent: #e67b00; /* base */
|
|
182
|
-
--ty-color-accent-soft: #f59e42; /* lighter - subtle */
|
|
183
180
|
|
|
184
181
|
/* =================================================================
|
|
185
182
|
BACKGROUND COLORS
|
|
@@ -191,7 +188,7 @@ BACKGROUND COLORS
|
|
|
191
188
|
/* Light canvas - app backgrounds */
|
|
192
189
|
--ty-bg: #ffffff;
|
|
193
190
|
/* WHITE - primary content baseline */
|
|
194
|
-
--ty-bg-
|
|
191
|
+
--ty-bg-bold: #f8fafc;
|
|
195
192
|
/* Subtle elevation - cards with light tint */
|
|
196
193
|
--ty-bg-strong: #e2e8f0;
|
|
197
194
|
/* Maximum elevation - clear distinction */
|
|
@@ -201,45 +198,42 @@ BACKGROUND COLORS
|
|
|
201
198
|
|
|
202
199
|
/* Primary backgrounds */
|
|
203
200
|
--ty-bg-primary: #e3eefc;
|
|
204
|
-
--ty-bg-primary-
|
|
201
|
+
--ty-bg-primary-bold: #d5e4f8;
|
|
205
202
|
--ty-bg-primary-soft: #eff6ff;
|
|
206
203
|
|
|
207
204
|
/* Secondary backgrounds */
|
|
208
205
|
--ty-bg-secondary: #e9d5ff;
|
|
209
|
-
--ty-bg-secondary-
|
|
206
|
+
--ty-bg-secondary-bold: #ddd6fe;
|
|
210
207
|
--ty-bg-secondary-soft: #f3e8ff;
|
|
211
208
|
|
|
212
209
|
/* Success backgrounds */
|
|
213
210
|
--ty-bg-success: #d1fae5;
|
|
214
|
-
--ty-bg-success-
|
|
211
|
+
--ty-bg-success-bold: #a7f3d0;
|
|
215
212
|
--ty-bg-success-soft: #ecfdf5;
|
|
216
213
|
|
|
217
214
|
/* Danger backgrounds */
|
|
218
215
|
--ty-bg-danger: #fee2e2;
|
|
219
|
-
--ty-bg-danger-
|
|
216
|
+
--ty-bg-danger-bold: #fecaca;
|
|
220
217
|
--ty-bg-danger-soft: #fef2f2;
|
|
221
218
|
|
|
222
219
|
/* Warning backgrounds */
|
|
223
220
|
--ty-bg-warning: #fef3c7;
|
|
224
|
-
--ty-bg-warning-
|
|
221
|
+
--ty-bg-warning-bold: #fde68a;
|
|
225
222
|
--ty-bg-warning-soft: #fffbeb;
|
|
226
223
|
|
|
227
224
|
/* Neutral backgrounds */
|
|
228
225
|
--ty-bg-neutral: #e0e0e0;
|
|
229
|
-
--ty-bg-neutral-
|
|
226
|
+
--ty-bg-neutral-bold: #cecece;
|
|
230
227
|
--ty-bg-neutral-soft: #ededed;
|
|
231
228
|
|
|
232
229
|
/* Accent backgrounds */
|
|
233
|
-
--ty-bg-accent: #ffedd5; /* light orange tint */
|
|
234
|
-
--ty-bg-accent-mild: #fed7aa; /* slightly stronger */
|
|
235
|
-
--ty-bg-accent-soft: #fff7ed; /* very subtle */
|
|
236
230
|
|
|
237
231
|
/* =================================================================
|
|
238
232
|
BORDER COLORS
|
|
239
233
|
================================================================= */
|
|
240
234
|
|
|
241
235
|
--ty-border: #e5e7eb;
|
|
242
|
-
--ty-border-
|
|
236
|
+
--ty-border-bold: #d1d5db;
|
|
243
237
|
--ty-border-strong: #6b7280;
|
|
244
238
|
--ty-border-soft: #f3f4f6;
|
|
245
239
|
--ty-border-faint: #fafafa;
|
|
@@ -254,9 +248,6 @@ BORDER COLORS
|
|
|
254
248
|
--ty-border-danger: var(--ty-color-danger);
|
|
255
249
|
--ty-border-warning: var(--ty-color-warning);
|
|
256
250
|
--ty-border-neutral: var(--ty-color-neutral);
|
|
257
|
-
--ty-border-accent-mild: var(--ty-color-accent-mild);
|
|
258
|
-
--ty-border-accent: var(--ty-color-accent);
|
|
259
|
-
--ty-border-accent-soft: var(--ty-color-accent-soft);
|
|
260
251
|
|
|
261
252
|
/* =================================================================
|
|
262
253
|
SCROLLBAR
|
|
@@ -314,7 +305,7 @@ TEXT HIERARCHY
|
|
|
314
305
|
|
|
315
306
|
/* Text hierarchy - emphasis based, not semantic */
|
|
316
307
|
--ty-text: #111827;
|
|
317
|
-
--ty-text-
|
|
308
|
+
--ty-text-bold: #000000;
|
|
318
309
|
--ty-text-strong: #000000;
|
|
319
310
|
--ty-text-soft: #374151;
|
|
320
311
|
--ty-text-faint: #9ca3af;
|
|
@@ -373,7 +364,7 @@ COMPONENT TOKENS
|
|
|
373
364
|
|
|
374
365
|
/* Primary */
|
|
375
366
|
--ty-solid-primary: #4076b9;
|
|
376
|
-
--ty-solid-primary-strong: var(--ty-color-primary-
|
|
367
|
+
--ty-solid-primary-strong: var(--ty-color-primary-bold);
|
|
377
368
|
--ty-solid-primary-soft: #7ea7d9;
|
|
378
369
|
--ty-solid-primary-fg: white;
|
|
379
370
|
|
|
@@ -407,9 +398,6 @@ COMPONENT TOKENS
|
|
|
407
398
|
--ty-solid-neutral-soft: #6e6e6e;
|
|
408
399
|
--ty-solid-neutral-fg: white;
|
|
409
400
|
|
|
410
|
-
/* Brand-highlight pseudo-flavor (orange) — kept under ty-accent-* namespace */
|
|
411
|
-
--ty-accent-accent: #cc6d00;
|
|
412
|
-
|
|
413
401
|
/* =================================================================
|
|
414
402
|
DESIGN SYSTEM TOKENS
|
|
415
403
|
================================================================= */
|
|
@@ -585,94 +573,88 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
585
573
|
|
|
586
574
|
/* Primary */
|
|
587
575
|
--ty-color-primary-strong: #9cbde5;
|
|
588
|
-
--ty-color-primary-
|
|
576
|
+
--ty-color-primary-bold: #6c9bd5;
|
|
589
577
|
--ty-color-primary: #4976ae;
|
|
590
578
|
--ty-color-primary-soft: #4b698b;
|
|
591
579
|
--ty-color-primary-faint: #445b77;
|
|
592
580
|
|
|
593
581
|
/* Secondary */
|
|
594
582
|
--ty-color-secondary-strong: #ddd6fe;
|
|
595
|
-
--ty-color-secondary-
|
|
583
|
+
--ty-color-secondary-bold: #c4b5fd;
|
|
596
584
|
--ty-color-secondary: #a78bfa;
|
|
597
585
|
--ty-color-secondary-soft: #8269bc;
|
|
598
586
|
--ty-color-secondary-faint: #76619f;
|
|
599
587
|
|
|
600
588
|
/* Success */
|
|
601
589
|
--ty-color-success-strong: #c2f0df;
|
|
602
|
-
--ty-color-success-
|
|
590
|
+
--ty-color-success-bold: #6ee7b7;
|
|
603
591
|
--ty-color-success: #3aba8b;
|
|
604
592
|
--ty-color-success-soft: #459679;
|
|
605
593
|
--ty-color-success-faint: #1b795c;
|
|
606
594
|
|
|
607
595
|
/* Danger */
|
|
608
596
|
--ty-color-danger-strong: #ffabab;
|
|
609
|
-
--ty-color-danger-
|
|
597
|
+
--ty-color-danger-bold: #e58787;
|
|
610
598
|
--ty-color-danger: #d06f6f;
|
|
611
599
|
--ty-color-danger-soft: #b06666;
|
|
612
600
|
--ty-color-danger-faint: #aa6e6e;
|
|
613
601
|
|
|
614
602
|
/* Warning */
|
|
615
603
|
--ty-color-warning-strong: #fde68a;
|
|
616
|
-
--ty-color-warning-
|
|
604
|
+
--ty-color-warning-bold: #fcd34d;
|
|
617
605
|
--ty-color-warning: #fbbf24;
|
|
618
606
|
--ty-color-warning-soft: #f59e0b;
|
|
619
607
|
--ty-color-warning-faint: #a06726;
|
|
620
608
|
|
|
621
609
|
/* Neutral */
|
|
622
610
|
--ty-color-neutral-strong: #ffffff;
|
|
623
|
-
--ty-color-neutral-
|
|
611
|
+
--ty-color-neutral-bold: #f9fafb;
|
|
624
612
|
--ty-color-neutral: #d6d6d6;
|
|
625
613
|
--ty-color-neutral-soft: #696969;
|
|
626
614
|
--ty-color-neutral-faint: #474747;
|
|
627
615
|
|
|
628
616
|
/* Accent - dark mode (emphasis inverted) */
|
|
629
|
-
--ty-color-accent-mild: #ffb366; /* lighter = more emphasis */
|
|
630
|
-
--ty-color-accent: #e67b00; /* base */
|
|
631
|
-
--ty-color-accent-soft: #ac5f00; /* darker = less emphasis */
|
|
632
617
|
|
|
633
618
|
/* Backgrounds for dark mode */
|
|
634
619
|
--ty-bg-faint: #0f1419;
|
|
635
620
|
--ty-bg-soft: #111827;
|
|
636
621
|
--ty-bg: #1f2937;
|
|
637
|
-
--ty-bg-
|
|
622
|
+
--ty-bg-bold: #374151;
|
|
638
623
|
--ty-bg-strong: #6b7280;
|
|
639
624
|
|
|
640
625
|
/* Focus ring gap */
|
|
641
626
|
--ty-focus-ring-gap: #1f2937;
|
|
642
627
|
|
|
643
628
|
/* Semantic backgrounds - much darker in dark mode */
|
|
644
|
-
--ty-bg-primary-
|
|
629
|
+
--ty-bg-primary-bold: #43517a;
|
|
645
630
|
--ty-bg-primary: #394159;
|
|
646
631
|
--ty-bg-primary-soft: #323a4f;
|
|
647
632
|
|
|
648
|
-
--ty-bg-secondary-
|
|
633
|
+
--ty-bg-secondary-bold: #58368e;
|
|
649
634
|
--ty-bg-secondary: #4a3c65;
|
|
650
635
|
--ty-bg-secondary-soft: #3b3645;
|
|
651
636
|
|
|
652
637
|
--ty-bg-success: #3a4442;
|
|
653
|
-
--ty-bg-success-
|
|
638
|
+
--ty-bg-success-bold: #405752;
|
|
654
639
|
--ty-bg-success-soft: #2f3b38;
|
|
655
640
|
|
|
656
|
-
--ty-bg-danger-
|
|
641
|
+
--ty-bg-danger-bold: #853535;
|
|
657
642
|
--ty-bg-danger: #522828;
|
|
658
643
|
--ty-bg-danger-soft: #483c3c;
|
|
659
644
|
|
|
660
|
-
--ty-bg-warning-
|
|
645
|
+
--ty-bg-warning-bold: #743953;
|
|
661
646
|
--ty-bg-warning: #694555;
|
|
662
647
|
--ty-bg-warning-soft: #45333b;
|
|
663
648
|
|
|
664
|
-
--ty-bg-neutral-
|
|
649
|
+
--ty-bg-neutral-bold: #414141;
|
|
665
650
|
--ty-bg-neutral: #323232;
|
|
666
651
|
--ty-bg-neutral-soft: #242424;
|
|
667
652
|
|
|
668
653
|
/* Accent backgrounds - dark mode */
|
|
669
|
-
--ty-bg-accent: #996432;
|
|
670
|
-
--ty-bg-accent-mild: #da7d25;
|
|
671
|
-
--ty-bg-accent-soft: #5c3d1a;
|
|
672
654
|
|
|
673
655
|
/* Borders for dark mode */
|
|
674
656
|
--ty-border-strong: #8c8c8c;
|
|
675
|
-
--ty-border-
|
|
657
|
+
--ty-border-bold: #666666;
|
|
676
658
|
--ty-border: #535353;
|
|
677
659
|
--ty-border-soft: #1f2937;
|
|
678
660
|
--ty-border-faint: #030712;
|
|
@@ -695,7 +677,7 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
695
677
|
--ty-border: #3e3e3e;
|
|
696
678
|
--ty-floating-border: #494949;
|
|
697
679
|
|
|
698
|
-
--ty-text-
|
|
680
|
+
--ty-text-bold: #f9fafb;
|
|
699
681
|
--ty-text-strong: #ffffff;
|
|
700
682
|
--ty-text: #d6d6d6;
|
|
701
683
|
--ty-text-soft: #7f8590;
|
|
@@ -751,8 +733,6 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
751
733
|
--ty-solid-neutral-soft: #2a2a2a;
|
|
752
734
|
--ty-solid-neutral-fg: white;
|
|
753
735
|
|
|
754
|
-
--ty-accent-accent: #cc6d00;
|
|
755
|
-
|
|
756
736
|
/* Input component tokens - dark mode */
|
|
757
737
|
--ty-input-bg: #1b1b1b;
|
|
758
738
|
--ty-input-color: #f9fafb;
|
|
@@ -767,8 +747,8 @@ Emphasis logic inverts: lighter = more emphasis
|
|
|
767
747
|
--ty-label-color: #d1d5db;
|
|
768
748
|
|
|
769
749
|
/* Modal - dark mode */
|
|
770
|
-
--ty-modal-bg: var(--ty-bg-
|
|
771
|
-
--ty-modal-color: var(--ty-color-neutral-
|
|
750
|
+
--ty-modal-bg: var(--ty-bg-bold);
|
|
751
|
+
--ty-modal-color: var(--ty-color-neutral-bold);
|
|
772
752
|
--ty-modal-border: var(--ty-border);
|
|
773
753
|
--ty-modal-backdrop: rgba(0, 0, 0, 0.7);
|
|
774
754
|
--ty-modal-shadow:
|
|
@@ -796,7 +776,7 @@ Global and semantic text selection colors
|
|
|
796
776
|
|
|
797
777
|
/* Global text selection - uses primary colors by default */
|
|
798
778
|
::selection {
|
|
799
|
-
background-color: var(--ty-selection-bg, var(--ty-bg-primary-
|
|
779
|
+
background-color: var(--ty-selection-bg, var(--ty-bg-primary-bold));
|
|
800
780
|
color: var(--ty-selection-color, var(--ty-text-strong));
|
|
801
781
|
}
|
|
802
782
|
|
|
@@ -1037,7 +1017,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1037
1017
|
}
|
|
1038
1018
|
|
|
1039
1019
|
.ty-bg-primary\+ {
|
|
1040
|
-
background-color: var(--ty-bg-primary-
|
|
1020
|
+
background-color: var(--ty-bg-primary-bold);
|
|
1041
1021
|
}
|
|
1042
1022
|
|
|
1043
1023
|
.ty-bg-primary- {
|
|
@@ -1049,7 +1029,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1049
1029
|
}
|
|
1050
1030
|
|
|
1051
1031
|
.ty-bg-secondary\+ {
|
|
1052
|
-
background-color: var(--ty-bg-secondary-
|
|
1032
|
+
background-color: var(--ty-bg-secondary-bold);
|
|
1053
1033
|
}
|
|
1054
1034
|
|
|
1055
1035
|
.ty-bg-secondary- {
|
|
@@ -1061,7 +1041,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1061
1041
|
}
|
|
1062
1042
|
|
|
1063
1043
|
.ty-bg-success\+ {
|
|
1064
|
-
background-color: var(--ty-bg-success-
|
|
1044
|
+
background-color: var(--ty-bg-success-bold);
|
|
1065
1045
|
}
|
|
1066
1046
|
|
|
1067
1047
|
.ty-bg-success- {
|
|
@@ -1073,7 +1053,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1073
1053
|
}
|
|
1074
1054
|
|
|
1075
1055
|
.ty-bg-danger\+ {
|
|
1076
|
-
background-color: var(--ty-bg-danger-
|
|
1056
|
+
background-color: var(--ty-bg-danger-bold);
|
|
1077
1057
|
}
|
|
1078
1058
|
|
|
1079
1059
|
.ty-bg-danger- {
|
|
@@ -1085,7 +1065,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1085
1065
|
}
|
|
1086
1066
|
|
|
1087
1067
|
.ty-bg-warning\+ {
|
|
1088
|
-
background-color: var(--ty-bg-warning-
|
|
1068
|
+
background-color: var(--ty-bg-warning-bold);
|
|
1089
1069
|
}
|
|
1090
1070
|
|
|
1091
1071
|
.ty-bg-warning- {
|
|
@@ -1097,7 +1077,7 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1097
1077
|
}
|
|
1098
1078
|
|
|
1099
1079
|
.ty-bg-neutral\+ {
|
|
1100
|
-
background-color: var(--ty-bg-neutral-
|
|
1080
|
+
background-color: var(--ty-bg-neutral-bold);
|
|
1101
1081
|
}
|
|
1102
1082
|
|
|
1103
1083
|
.ty-bg-neutral- {
|
|
@@ -1105,18 +1085,6 @@ SEMANTIC BACKGROUND UTILITIES
|
|
|
1105
1085
|
}
|
|
1106
1086
|
|
|
1107
1087
|
/* Accent backgrounds */
|
|
1108
|
-
.ty-bg-accent {
|
|
1109
|
-
background-color: var(--ty-bg-accent);
|
|
1110
|
-
}
|
|
1111
|
-
|
|
1112
|
-
.ty-bg-accent\+ {
|
|
1113
|
-
background-color: var(--ty-bg-accent-mild);
|
|
1114
|
-
}
|
|
1115
|
-
|
|
1116
|
-
.ty-bg-accent- {
|
|
1117
|
-
background-color: var(--ty-bg-accent-soft);
|
|
1118
|
-
}
|
|
1119
|
-
|
|
1120
1088
|
/* =================================================================
|
|
1121
1089
|
TEXT HIERARCHY UTILITIES
|
|
1122
1090
|
================================================================= */
|
|
@@ -1127,7 +1095,7 @@ TEXT HIERARCHY UTILITIES
|
|
|
1127
1095
|
}
|
|
1128
1096
|
|
|
1129
1097
|
.ty-text\+ {
|
|
1130
|
-
color: var(--ty-text-
|
|
1098
|
+
color: var(--ty-text-bold) !important;
|
|
1131
1099
|
}
|
|
1132
1100
|
|
|
1133
1101
|
.ty-text\+\+ {
|
|
@@ -1152,7 +1120,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1152
1120
|
}
|
|
1153
1121
|
|
|
1154
1122
|
.ty-text-primary\+ {
|
|
1155
|
-
color: var(--ty-color-primary-
|
|
1123
|
+
color: var(--ty-color-primary-bold) !important;
|
|
1156
1124
|
}
|
|
1157
1125
|
|
|
1158
1126
|
.ty-text-primary {
|
|
@@ -1173,7 +1141,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1173
1141
|
}
|
|
1174
1142
|
|
|
1175
1143
|
.ty-text-secondary\+ {
|
|
1176
|
-
color: var(--ty-color-secondary-
|
|
1144
|
+
color: var(--ty-color-secondary-bold) !important;
|
|
1177
1145
|
}
|
|
1178
1146
|
|
|
1179
1147
|
.ty-text-secondary {
|
|
@@ -1194,7 +1162,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1194
1162
|
}
|
|
1195
1163
|
|
|
1196
1164
|
.ty-text-success\+ {
|
|
1197
|
-
color: var(--ty-color-success-
|
|
1165
|
+
color: var(--ty-color-success-bold) !important;
|
|
1198
1166
|
}
|
|
1199
1167
|
|
|
1200
1168
|
.ty-text-success {
|
|
@@ -1215,7 +1183,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1215
1183
|
}
|
|
1216
1184
|
|
|
1217
1185
|
.ty-text-danger\+ {
|
|
1218
|
-
color: var(--ty-color-danger-
|
|
1186
|
+
color: var(--ty-color-danger-bold) !important;
|
|
1219
1187
|
}
|
|
1220
1188
|
|
|
1221
1189
|
.ty-text-danger {
|
|
@@ -1236,7 +1204,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1236
1204
|
}
|
|
1237
1205
|
|
|
1238
1206
|
.ty-text-warning\+ {
|
|
1239
|
-
color: var(--ty-color-warning-
|
|
1207
|
+
color: var(--ty-color-warning-bold) !important;
|
|
1240
1208
|
}
|
|
1241
1209
|
|
|
1242
1210
|
.ty-text-warning {
|
|
@@ -1257,7 +1225,7 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1257
1225
|
}
|
|
1258
1226
|
|
|
1259
1227
|
.ty-text-neutral\+ {
|
|
1260
|
-
color: var(--ty-color-neutral-
|
|
1228
|
+
color: var(--ty-color-neutral-bold) !important;
|
|
1261
1229
|
}
|
|
1262
1230
|
|
|
1263
1231
|
.ty-text-neutral {
|
|
@@ -1273,18 +1241,6 @@ SEMANTIC TEXT COLORS - 5-VARIANT SYSTEM
|
|
|
1273
1241
|
}
|
|
1274
1242
|
|
|
1275
1243
|
/* Accent text colors */
|
|
1276
|
-
.ty-text-accent\+ {
|
|
1277
|
-
color: var(--ty-color-accent-mild) !important;
|
|
1278
|
-
}
|
|
1279
|
-
|
|
1280
|
-
.ty-text-accent {
|
|
1281
|
-
color: var(--ty-color-accent) !important;
|
|
1282
|
-
}
|
|
1283
|
-
|
|
1284
|
-
.ty-text-accent- {
|
|
1285
|
-
color: var(--ty-color-accent-soft) !important;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
1244
|
/* =================================================================
|
|
1289
1245
|
BORDER UTILITIES
|
|
1290
1246
|
================================================================= */
|
|
@@ -1295,7 +1251,7 @@ BORDER UTILITIES
|
|
|
1295
1251
|
}
|
|
1296
1252
|
|
|
1297
1253
|
.ty-border\+ {
|
|
1298
|
-
border-color: var(--ty-border-
|
|
1254
|
+
border-color: var(--ty-border-bold) !important;
|
|
1299
1255
|
}
|
|
1300
1256
|
|
|
1301
1257
|
.ty-border\+\+ {
|
|
@@ -1335,18 +1291,6 @@ BORDER UTILITIES
|
|
|
1335
1291
|
border-color: var(--ty-border-neutral);
|
|
1336
1292
|
}
|
|
1337
1293
|
|
|
1338
|
-
.ty-border-accent\+ {
|
|
1339
|
-
border-color: var(--ty-border-accent-mild);
|
|
1340
|
-
}
|
|
1341
|
-
|
|
1342
|
-
.ty-border-accent {
|
|
1343
|
-
border-color: var(--ty-border-accent);
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
.ty-border-accent- {
|
|
1347
|
-
border-color: var(--ty-border-accent-soft);
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
1294
|
/* =================================================================
|
|
1351
1295
|
COMPONENT UTILITIES
|
|
1352
1296
|
================================================================= */
|
|
@@ -1354,7 +1298,7 @@ COMPONENT UTILITIES
|
|
|
1354
1298
|
/* Card/Panel utilities */
|
|
1355
1299
|
.ty-card {
|
|
1356
1300
|
background-color: var(--ty-surface-elevated);
|
|
1357
|
-
color: var(--ty-color-neutral-
|
|
1301
|
+
color: var(--ty-color-neutral-bold);
|
|
1358
1302
|
}
|
|
1359
1303
|
|
|
1360
1304
|
.ty-card-elevated {
|
|
@@ -1401,7 +1345,7 @@ INTERACTIVE STATES
|
|
|
1401
1345
|
}
|
|
1402
1346
|
|
|
1403
1347
|
.hover\:ty-bg-neutral\+:hover {
|
|
1404
|
-
background-color: var(--ty-bg-neutral-
|
|
1348
|
+
background-color: var(--ty-bg-neutral-bold) !important;
|
|
1405
1349
|
}
|
|
1406
1350
|
|
|
1407
1351
|
.hover\:ty-bg-neutral\+\+:hover {
|
|
@@ -1413,7 +1357,7 @@ INTERACTIVE STATES
|
|
|
1413
1357
|
}
|
|
1414
1358
|
|
|
1415
1359
|
.hover\:ty-bg-primary\+:hover {
|
|
1416
|
-
background-color: var(--ty-bg-primary-
|
|
1360
|
+
background-color: var(--ty-bg-primary-bold) !important;
|
|
1417
1361
|
}
|
|
1418
1362
|
|
|
1419
1363
|
.hover\:ty-bg-secondary:hover {
|
|
@@ -1421,7 +1365,7 @@ INTERACTIVE STATES
|
|
|
1421
1365
|
}
|
|
1422
1366
|
|
|
1423
1367
|
.hover\:ty-bg-secondary\+:hover {
|
|
1424
|
-
background-color: var(--ty-bg-secondary-
|
|
1368
|
+
background-color: var(--ty-bg-secondary-bold) !important;
|
|
1425
1369
|
}
|
|
1426
1370
|
|
|
1427
1371
|
.hover\:ty-bg-success:hover {
|
|
@@ -1429,7 +1373,7 @@ INTERACTIVE STATES
|
|
|
1429
1373
|
}
|
|
1430
1374
|
|
|
1431
1375
|
.hover\:ty-bg-success\+:hover {
|
|
1432
|
-
background-color: var(--ty-bg-success-
|
|
1376
|
+
background-color: var(--ty-bg-success-bold) !important;
|
|
1433
1377
|
}
|
|
1434
1378
|
|
|
1435
1379
|
.hover\:ty-bg-danger:hover {
|
|
@@ -1437,32 +1381,20 @@ INTERACTIVE STATES
|
|
|
1437
1381
|
}
|
|
1438
1382
|
|
|
1439
1383
|
.hover\:ty-bg-danger\+:hover {
|
|
1440
|
-
background-color: var(--ty-bg-danger-
|
|
1384
|
+
background-color: var(--ty-bg-danger-bold) !important;
|
|
1441
1385
|
}
|
|
1442
1386
|
|
|
1443
1387
|
.hover\:ty-bg-danger-:hover {
|
|
1444
1388
|
background-color: var(--ty-bg-danger-soft) !important;
|
|
1445
1389
|
}
|
|
1446
1390
|
|
|
1447
|
-
.hover\:ty-bg-accent:hover {
|
|
1448
|
-
background-color: var(--ty-bg-accent) !important;
|
|
1449
|
-
}
|
|
1450
|
-
|
|
1451
|
-
.hover\:ty-bg-accent\+:hover {
|
|
1452
|
-
background-color: var(--ty-bg-accent-mild) !important;
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
.hover\:ty-bg-accent-:hover {
|
|
1456
|
-
background-color: var(--ty-bg-accent-soft) !important;
|
|
1457
|
-
}
|
|
1458
|
-
|
|
1459
1391
|
/* Hover states for text colors */
|
|
1460
1392
|
.hover\:ty-text:hover {
|
|
1461
1393
|
color: var(--ty-text) !important;
|
|
1462
1394
|
}
|
|
1463
1395
|
|
|
1464
1396
|
.hover\:ty-text\+:hover {
|
|
1465
|
-
color: var(--ty-text-
|
|
1397
|
+
color: var(--ty-text-bold) !important;
|
|
1466
1398
|
}
|
|
1467
1399
|
|
|
1468
1400
|
.hover\:ty-text\+\+:hover {
|
|
@@ -1484,7 +1416,7 @@ INTERACTIVE STATES
|
|
|
1484
1416
|
}
|
|
1485
1417
|
|
|
1486
1418
|
.hover\:ty-text-primary\+:hover {
|
|
1487
|
-
color: var(--ty-color-primary-
|
|
1419
|
+
color: var(--ty-color-primary-bold) !important;
|
|
1488
1420
|
}
|
|
1489
1421
|
|
|
1490
1422
|
.hover\:ty-text-primary:hover {
|
|
@@ -1505,7 +1437,7 @@ INTERACTIVE STATES
|
|
|
1505
1437
|
}
|
|
1506
1438
|
|
|
1507
1439
|
.hover\:ty-text-secondary\+:hover {
|
|
1508
|
-
color: var(--ty-color-secondary-
|
|
1440
|
+
color: var(--ty-color-secondary-bold) !important;
|
|
1509
1441
|
}
|
|
1510
1442
|
|
|
1511
1443
|
.hover\:ty-text-secondary:hover {
|
|
@@ -1526,7 +1458,7 @@ INTERACTIVE STATES
|
|
|
1526
1458
|
}
|
|
1527
1459
|
|
|
1528
1460
|
.hover\:ty-text-success\+:hover {
|
|
1529
|
-
color: var(--ty-color-success-
|
|
1461
|
+
color: var(--ty-color-success-bold) !important;
|
|
1530
1462
|
}
|
|
1531
1463
|
|
|
1532
1464
|
.hover\:ty-text-success:hover {
|
|
@@ -1547,7 +1479,7 @@ INTERACTIVE STATES
|
|
|
1547
1479
|
}
|
|
1548
1480
|
|
|
1549
1481
|
.hover\:ty-text-danger\+:hover {
|
|
1550
|
-
color: var(--ty-color-danger-
|
|
1482
|
+
color: var(--ty-color-danger-bold) !important;
|
|
1551
1483
|
}
|
|
1552
1484
|
|
|
1553
1485
|
.hover\:ty-text-danger:hover {
|
|
@@ -1568,7 +1500,7 @@ INTERACTIVE STATES
|
|
|
1568
1500
|
}
|
|
1569
1501
|
|
|
1570
1502
|
.hover\:ty-text-warning\+:hover {
|
|
1571
|
-
color: var(--ty-color-warning-
|
|
1503
|
+
color: var(--ty-color-warning-bold) !important;
|
|
1572
1504
|
}
|
|
1573
1505
|
|
|
1574
1506
|
.hover\:ty-text-warning:hover {
|
|
@@ -1589,7 +1521,7 @@ INTERACTIVE STATES
|
|
|
1589
1521
|
}
|
|
1590
1522
|
|
|
1591
1523
|
.hover\:ty-text-neutral + :hover {
|
|
1592
|
-
color: var(--ty-color-neutral-
|
|
1524
|
+
color: var(--ty-color-neutral-bold) !important;
|
|
1593
1525
|
}
|
|
1594
1526
|
|
|
1595
1527
|
.hover\:ty-text-neutral:hover {
|
|
@@ -1605,18 +1537,6 @@ INTERACTIVE STATES
|
|
|
1605
1537
|
}
|
|
1606
1538
|
|
|
1607
1539
|
/* Accent text hover states */
|
|
1608
|
-
.hover\:ty-text-accent\+:hover {
|
|
1609
|
-
color: var(--ty-color-accent-mild) !important;
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
.hover\:ty-text-accent:hover {
|
|
1613
|
-
color: var(--ty-color-accent) !important;
|
|
1614
|
-
}
|
|
1615
|
-
|
|
1616
|
-
.hover\:ty-text-accent-:hover {
|
|
1617
|
-
color: var(--ty-color-accent-soft) !important;
|
|
1618
|
-
}
|
|
1619
|
-
|
|
1620
1540
|
/* Hover states for borders */
|
|
1621
1541
|
/* Base border hover states */
|
|
1622
1542
|
.hover\:ty-border\+\+:hover {
|
|
@@ -1624,7 +1544,7 @@ INTERACTIVE STATES
|
|
|
1624
1544
|
}
|
|
1625
1545
|
|
|
1626
1546
|
.hover\:ty-border\+:hover {
|
|
1627
|
-
border-color: var(--ty-border-
|
|
1547
|
+
border-color: var(--ty-border-bold) !important;
|
|
1628
1548
|
}
|
|
1629
1549
|
|
|
1630
1550
|
.hover\:ty-border:hover {
|
|
@@ -1664,24 +1584,12 @@ INTERACTIVE STATES
|
|
|
1664
1584
|
border-color: var(--ty-border-neutral) !important;
|
|
1665
1585
|
}
|
|
1666
1586
|
|
|
1667
|
-
.hover\:ty-border-accent\+:hover {
|
|
1668
|
-
border-color: var(--ty-border-accent-mild) !important;
|
|
1669
|
-
}
|
|
1670
|
-
|
|
1671
|
-
.hover\:ty-border-accent:hover {
|
|
1672
|
-
border-color: var(--ty-border-accent) !important;
|
|
1673
|
-
}
|
|
1674
|
-
|
|
1675
|
-
.hover\:ty-border-accent-:hover {
|
|
1676
|
-
border-color: var(--ty-border-accent-soft) !important;
|
|
1677
|
-
}
|
|
1678
|
-
|
|
1679
1587
|
.focus\:ty-border\+\+:focus {
|
|
1680
1588
|
border-color: var(--ty-border-strong) !important;
|
|
1681
1589
|
}
|
|
1682
1590
|
|
|
1683
1591
|
.focus\:ty-border + :focus {
|
|
1684
|
-
border-color: var(--ty-border-
|
|
1592
|
+
border-color: var(--ty-border-bold) !important;
|
|
1685
1593
|
}
|
|
1686
1594
|
|
|
1687
1595
|
.focus\:ty-border:focus {
|
|
@@ -1721,18 +1629,6 @@ INTERACTIVE STATES
|
|
|
1721
1629
|
border-color: var(--ty-border-neutral) !important;
|
|
1722
1630
|
}
|
|
1723
1631
|
|
|
1724
|
-
.focus\:ty-border-accent\+:focus {
|
|
1725
|
-
border-color: var(--ty-border-accent-mild) !important;
|
|
1726
|
-
}
|
|
1727
|
-
|
|
1728
|
-
.focus\:ty-border-accent:focus {
|
|
1729
|
-
border-color: var(--ty-border-accent) !important;
|
|
1730
|
-
}
|
|
1731
|
-
|
|
1732
|
-
.focus\:ty-border-accent-:focus {
|
|
1733
|
-
border-color: var(--ty-border-accent-soft) !important;
|
|
1734
|
-
}
|
|
1735
|
-
|
|
1736
1632
|
/* =================================================================
|
|
1737
1633
|
RESPONSIVE VARIANTS
|
|
1738
1634
|
================================================================= */
|