@algorithm-shift/design-system 1.2.0 → 1.2.2

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/index.css ADDED
@@ -0,0 +1,768 @@
1
+ /* src/global.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --color-red-200: oklch(88.5% 0.062 18.334);
25
+ --color-red-400: oklch(70.4% 0.191 22.216);
26
+ --color-red-500: oklch(63.7% 0.237 25.331);
27
+ --color-red-600: oklch(57.7% 0.245 27.325);
28
+ --color-red-700: oklch(50.5% 0.213 27.518);
29
+ --color-white: #fff;
30
+ --spacing: 0.25rem;
31
+ --text-sm: 0.875rem;
32
+ --text-sm--line-height: calc(1.25 / 0.875);
33
+ --font-weight-medium: 500;
34
+ --default-transition-duration: 150ms;
35
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
36
+ --default-font-family: var(--font-sans);
37
+ --default-mono-font-family: var(--font-mono);
38
+ }
39
+ }
40
+ @layer base {
41
+ *,
42
+ ::after,
43
+ ::before,
44
+ ::backdrop,
45
+ ::file-selector-button {
46
+ box-sizing: border-box;
47
+ margin: 0;
48
+ padding: 0;
49
+ border: 0 solid;
50
+ }
51
+ html,
52
+ :host {
53
+ line-height: 1.5;
54
+ -webkit-text-size-adjust: 100%;
55
+ tab-size: 4;
56
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
57
+ font-feature-settings: var(--default-font-feature-settings, normal);
58
+ font-variation-settings: var(--default-font-variation-settings, normal);
59
+ -webkit-tap-highlight-color: transparent;
60
+ }
61
+ hr {
62
+ height: 0;
63
+ color: inherit;
64
+ border-top-width: 1px;
65
+ }
66
+ abbr:where([title]) {
67
+ -webkit-text-decoration: underline dotted;
68
+ text-decoration: underline dotted;
69
+ }
70
+ h1,
71
+ h2,
72
+ h3,
73
+ h4,
74
+ h5,
75
+ h6 {
76
+ font-size: inherit;
77
+ font-weight: inherit;
78
+ }
79
+ a {
80
+ color: inherit;
81
+ -webkit-text-decoration: inherit;
82
+ text-decoration: inherit;
83
+ }
84
+ b,
85
+ strong {
86
+ font-weight: bolder;
87
+ }
88
+ code,
89
+ kbd,
90
+ samp,
91
+ pre {
92
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
93
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
94
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
95
+ font-size: 1em;
96
+ }
97
+ small {
98
+ font-size: 80%;
99
+ }
100
+ sub,
101
+ sup {
102
+ font-size: 75%;
103
+ line-height: 0;
104
+ position: relative;
105
+ vertical-align: baseline;
106
+ }
107
+ sub {
108
+ bottom: -0.25em;
109
+ }
110
+ sup {
111
+ top: -0.5em;
112
+ }
113
+ table {
114
+ text-indent: 0;
115
+ border-color: inherit;
116
+ border-collapse: collapse;
117
+ }
118
+ :-moz-focusring {
119
+ outline: auto;
120
+ }
121
+ progress {
122
+ vertical-align: baseline;
123
+ }
124
+ summary {
125
+ display: list-item;
126
+ }
127
+ ol,
128
+ ul,
129
+ menu {
130
+ list-style: none;
131
+ }
132
+ img,
133
+ svg,
134
+ video,
135
+ canvas,
136
+ audio,
137
+ iframe,
138
+ embed,
139
+ object {
140
+ display: block;
141
+ vertical-align: middle;
142
+ }
143
+ img,
144
+ video {
145
+ max-width: 100%;
146
+ height: auto;
147
+ }
148
+ button,
149
+ input,
150
+ select,
151
+ optgroup,
152
+ textarea,
153
+ ::file-selector-button {
154
+ font: inherit;
155
+ font-feature-settings: inherit;
156
+ font-variation-settings: inherit;
157
+ letter-spacing: inherit;
158
+ color: inherit;
159
+ border-radius: 0;
160
+ background-color: transparent;
161
+ opacity: 1;
162
+ }
163
+ :where(select:is([multiple], [size])) optgroup {
164
+ font-weight: bolder;
165
+ }
166
+ :where(select:is([multiple], [size])) optgroup option {
167
+ padding-inline-start: 20px;
168
+ }
169
+ ::file-selector-button {
170
+ margin-inline-end: 4px;
171
+ }
172
+ ::placeholder {
173
+ opacity: 1;
174
+ }
175
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
176
+ ::placeholder {
177
+ color: currentcolor;
178
+ @supports (color: color-mix(in lab, red, red)) {
179
+ color: color-mix(in oklab, currentcolor 50%, transparent);
180
+ }
181
+ }
182
+ }
183
+ textarea {
184
+ resize: vertical;
185
+ }
186
+ ::-webkit-search-decoration {
187
+ -webkit-appearance: none;
188
+ }
189
+ ::-webkit-date-and-time-value {
190
+ min-height: 1lh;
191
+ text-align: inherit;
192
+ }
193
+ ::-webkit-datetime-edit {
194
+ display: inline-flex;
195
+ }
196
+ ::-webkit-datetime-edit-fields-wrapper {
197
+ padding: 0;
198
+ }
199
+ ::-webkit-datetime-edit,
200
+ ::-webkit-datetime-edit-year-field,
201
+ ::-webkit-datetime-edit-month-field,
202
+ ::-webkit-datetime-edit-day-field,
203
+ ::-webkit-datetime-edit-hour-field,
204
+ ::-webkit-datetime-edit-minute-field,
205
+ ::-webkit-datetime-edit-second-field,
206
+ ::-webkit-datetime-edit-millisecond-field,
207
+ ::-webkit-datetime-edit-meridiem-field {
208
+ padding-block: 0;
209
+ }
210
+ ::-webkit-calendar-picker-indicator {
211
+ line-height: 1;
212
+ }
213
+ :-moz-ui-invalid {
214
+ box-shadow: none;
215
+ }
216
+ button,
217
+ input:where([type=button], [type=reset], [type=submit]),
218
+ ::file-selector-button {
219
+ appearance: button;
220
+ }
221
+ ::-webkit-inner-spin-button,
222
+ ::-webkit-outer-spin-button {
223
+ height: auto;
224
+ }
225
+ [hidden]:where(:not([hidden=until-found])) {
226
+ display: none !important;
227
+ }
228
+ }
229
+ @layer utilities {
230
+ .static {
231
+ position: static;
232
+ }
233
+ .contents {
234
+ display: contents;
235
+ }
236
+ .flex {
237
+ display: flex;
238
+ }
239
+ .inline-block {
240
+ display: inline-block;
241
+ }
242
+ .inline-flex {
243
+ display: inline-flex;
244
+ }
245
+ .size-9 {
246
+ width: calc(var(--spacing) * 9);
247
+ height: calc(var(--spacing) * 9);
248
+ }
249
+ .h-8 {
250
+ height: calc(var(--spacing) * 8);
251
+ }
252
+ .h-9 {
253
+ height: calc(var(--spacing) * 9);
254
+ }
255
+ .h-10 {
256
+ height: calc(var(--spacing) * 10);
257
+ }
258
+ .shrink-0 {
259
+ flex-shrink: 0;
260
+ }
261
+ .transform {
262
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
263
+ }
264
+ .items-center {
265
+ align-items: center;
266
+ }
267
+ .justify-center {
268
+ justify-content: center;
269
+ }
270
+ .gap-1\.5 {
271
+ gap: calc(var(--spacing) * 1.5);
272
+ }
273
+ .gap-2 {
274
+ gap: calc(var(--spacing) * 2);
275
+ }
276
+ .rounded {
277
+ border-radius: 0.25rem;
278
+ }
279
+ .rounded-md {
280
+ border-radius: calc(var(--radius) - 2px);
281
+ }
282
+ .border {
283
+ border-style: var(--tw-border-style);
284
+ border-width: 1px;
285
+ }
286
+ .bg-background {
287
+ background-color: var(--background);
288
+ }
289
+ .bg-destructive {
290
+ background-color: var(--destructive);
291
+ }
292
+ .bg-primary {
293
+ background-color: var(--primary);
294
+ }
295
+ .bg-red-500 {
296
+ background-color: var(--color-red-500);
297
+ }
298
+ .bg-secondary {
299
+ background-color: var(--secondary);
300
+ }
301
+ .px-3 {
302
+ padding-inline: calc(var(--spacing) * 3);
303
+ }
304
+ .px-4 {
305
+ padding-inline: calc(var(--spacing) * 4);
306
+ }
307
+ .px-6 {
308
+ padding-inline: calc(var(--spacing) * 6);
309
+ }
310
+ .py-2 {
311
+ padding-block: calc(var(--spacing) * 2);
312
+ }
313
+ .text-sm {
314
+ font-size: var(--text-sm);
315
+ line-height: var(--tw-leading, var(--text-sm--line-height));
316
+ }
317
+ .font-medium {
318
+ --tw-font-weight: var(--font-weight-medium);
319
+ font-weight: var(--font-weight-medium);
320
+ }
321
+ .whitespace-nowrap {
322
+ white-space: nowrap;
323
+ }
324
+ .text-primary {
325
+ color: var(--primary);
326
+ }
327
+ .text-primary-foreground {
328
+ color: var(--primary-foreground);
329
+ }
330
+ .text-secondary-foreground {
331
+ color: var(--secondary-foreground);
332
+ }
333
+ .text-white {
334
+ color: var(--color-white);
335
+ }
336
+ .underline-offset-4 {
337
+ text-underline-offset: 4px;
338
+ }
339
+ .shadow-xs {
340
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
341
+ box-shadow:
342
+ var(--tw-inset-shadow),
343
+ var(--tw-inset-ring-shadow),
344
+ var(--tw-ring-offset-shadow),
345
+ var(--tw-ring-shadow),
346
+ var(--tw-shadow);
347
+ }
348
+ .outline {
349
+ outline-style: var(--tw-outline-style);
350
+ outline-width: 1px;
351
+ }
352
+ .transition-all {
353
+ transition-property: all;
354
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
355
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
356
+ }
357
+ .outline-none {
358
+ --tw-outline-style: none;
359
+ outline-style: none;
360
+ }
361
+ .hover\:bg-accent {
362
+ &:hover {
363
+ @media (hover: hover) {
364
+ background-color: var(--accent);
365
+ }
366
+ }
367
+ }
368
+ .hover\:bg-destructive\/90 {
369
+ &:hover {
370
+ @media (hover: hover) {
371
+ background-color: var(--destructive);
372
+ @supports (color: color-mix(in lab, red, red)) {
373
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
374
+ }
375
+ }
376
+ }
377
+ }
378
+ .hover\:bg-primary\/90 {
379
+ &:hover {
380
+ @media (hover: hover) {
381
+ background-color: var(--primary);
382
+ @supports (color: color-mix(in lab, red, red)) {
383
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
384
+ }
385
+ }
386
+ }
387
+ }
388
+ .hover\:bg-red-600 {
389
+ &:hover {
390
+ @media (hover: hover) {
391
+ background-color: var(--color-red-600);
392
+ }
393
+ }
394
+ }
395
+ .hover\:bg-secondary\/80 {
396
+ &:hover {
397
+ @media (hover: hover) {
398
+ background-color: var(--secondary);
399
+ @supports (color: color-mix(in lab, red, red)) {
400
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
401
+ }
402
+ }
403
+ }
404
+ }
405
+ .hover\:bg-secondary\/90 {
406
+ &:hover {
407
+ @media (hover: hover) {
408
+ background-color: var(--secondary);
409
+ @supports (color: color-mix(in lab, red, red)) {
410
+ background-color: color-mix(in oklab, var(--secondary) 90%, transparent);
411
+ }
412
+ }
413
+ }
414
+ }
415
+ .hover\:text-accent-foreground {
416
+ &:hover {
417
+ @media (hover: hover) {
418
+ color: var(--accent-foreground);
419
+ }
420
+ }
421
+ }
422
+ .hover\:underline {
423
+ &:hover {
424
+ @media (hover: hover) {
425
+ text-decoration-line: underline;
426
+ }
427
+ }
428
+ }
429
+ .focus-visible\:border-ring {
430
+ &:focus-visible {
431
+ border-color: var(--ring);
432
+ }
433
+ }
434
+ .focus-visible\:ring-\[3px\] {
435
+ &:focus-visible {
436
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
437
+ box-shadow:
438
+ var(--tw-inset-shadow),
439
+ var(--tw-inset-ring-shadow),
440
+ var(--tw-ring-offset-shadow),
441
+ var(--tw-ring-shadow),
442
+ var(--tw-shadow);
443
+ }
444
+ }
445
+ .focus-visible\:ring-destructive\/20 {
446
+ &:focus-visible {
447
+ --tw-ring-color: var(--destructive);
448
+ @supports (color: color-mix(in lab, red, red)) {
449
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
450
+ }
451
+ }
452
+ }
453
+ .focus-visible\:ring-red-200 {
454
+ &:focus-visible {
455
+ --tw-ring-color: var(--color-red-200);
456
+ }
457
+ }
458
+ .focus-visible\:ring-ring\/50 {
459
+ &:focus-visible {
460
+ --tw-ring-color: var(--ring);
461
+ @supports (color: color-mix(in lab, red, red)) {
462
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
463
+ }
464
+ }
465
+ }
466
+ .disabled\:pointer-events-none {
467
+ &:disabled {
468
+ pointer-events: none;
469
+ }
470
+ }
471
+ .disabled\:opacity-50 {
472
+ &:disabled {
473
+ opacity: 50%;
474
+ }
475
+ }
476
+ .has-\[\>svg\]\:px-2\.5 {
477
+ &:has(> svg) {
478
+ padding-inline: calc(var(--spacing) * 2.5);
479
+ }
480
+ }
481
+ .has-\[\>svg\]\:px-3 {
482
+ &:has(> svg) {
483
+ padding-inline: calc(var(--spacing) * 3);
484
+ }
485
+ }
486
+ .has-\[\>svg\]\:px-4 {
487
+ &:has(> svg) {
488
+ padding-inline: calc(var(--spacing) * 4);
489
+ }
490
+ }
491
+ .aria-invalid\:border-destructive {
492
+ &[aria-invalid=true] {
493
+ border-color: var(--destructive);
494
+ }
495
+ }
496
+ .aria-invalid\:ring-destructive\/20 {
497
+ &[aria-invalid=true] {
498
+ --tw-ring-color: var(--destructive);
499
+ @supports (color: color-mix(in lab, red, red)) {
500
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
501
+ }
502
+ }
503
+ }
504
+ .dark\:border-input {
505
+ &:is(.dark *) {
506
+ border-color: var(--input);
507
+ }
508
+ }
509
+ .dark\:bg-destructive\/60 {
510
+ &:is(.dark *) {
511
+ background-color: var(--destructive);
512
+ @supports (color: color-mix(in lab, red, red)) {
513
+ background-color: color-mix(in oklab, var(--destructive) 60%, transparent);
514
+ }
515
+ }
516
+ }
517
+ .dark\:bg-input\/30 {
518
+ &:is(.dark *) {
519
+ background-color: var(--input);
520
+ @supports (color: color-mix(in lab, red, red)) {
521
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
522
+ }
523
+ }
524
+ }
525
+ .dark\:bg-red-700 {
526
+ &:is(.dark *) {
527
+ background-color: var(--color-red-700);
528
+ }
529
+ }
530
+ .dark\:hover\:bg-accent\/50 {
531
+ &:is(.dark *) {
532
+ &:hover {
533
+ @media (hover: hover) {
534
+ background-color: var(--accent);
535
+ @supports (color: color-mix(in lab, red, red)) {
536
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
537
+ }
538
+ }
539
+ }
540
+ }
541
+ }
542
+ .dark\:hover\:bg-input\/50 {
543
+ &:is(.dark *) {
544
+ &:hover {
545
+ @media (hover: hover) {
546
+ background-color: var(--input);
547
+ @supports (color: color-mix(in lab, red, red)) {
548
+ background-color: color-mix(in oklab, var(--input) 50%, transparent);
549
+ }
550
+ }
551
+ }
552
+ }
553
+ }
554
+ .dark\:focus-visible\:ring-destructive\/40 {
555
+ &:is(.dark *) {
556
+ &:focus-visible {
557
+ --tw-ring-color: var(--destructive);
558
+ @supports (color: color-mix(in lab, red, red)) {
559
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
560
+ }
561
+ }
562
+ }
563
+ }
564
+ .dark\:focus-visible\:ring-red-400 {
565
+ &:is(.dark *) {
566
+ &:focus-visible {
567
+ --tw-ring-color: var(--color-red-400);
568
+ }
569
+ }
570
+ }
571
+ .dark\:aria-invalid\:ring-destructive\/40 {
572
+ &:is(.dark *) {
573
+ &[aria-invalid=true] {
574
+ --tw-ring-color: var(--destructive);
575
+ @supports (color: color-mix(in lab, red, red)) {
576
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
577
+ }
578
+ }
579
+ }
580
+ }
581
+ .\[\&_svg\]\:pointer-events-none {
582
+ & svg {
583
+ pointer-events: none;
584
+ }
585
+ }
586
+ .\[\&_svg\]\:shrink-0 {
587
+ & svg {
588
+ flex-shrink: 0;
589
+ }
590
+ }
591
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
592
+ & svg:not([class*=size-]) {
593
+ width: calc(var(--spacing) * 4);
594
+ height: calc(var(--spacing) * 4);
595
+ }
596
+ }
597
+ }
598
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
599
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
600
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
601
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
602
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
603
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
604
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
605
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
606
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
607
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
608
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
609
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
610
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
611
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
612
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
613
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
614
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
615
+ :root {
616
+ --background: oklch(1 0 0);
617
+ --foreground: oklch(0.145 0 0);
618
+ --card: oklch(1 0 0);
619
+ --card-foreground: oklch(0.145 0 0);
620
+ --popover: oklch(1 0 0);
621
+ --popover-foreground: oklch(0.145 0 0);
622
+ --primary: oklch(0.205 0 0);
623
+ --primary-foreground: oklch(0.985 0 0);
624
+ --secondary: oklch(0.97 0 0);
625
+ --secondary-foreground: oklch(0.205 0 0);
626
+ --muted: oklch(0.97 0 0);
627
+ --muted-foreground: oklch(0.556 0 0);
628
+ --accent: oklch(0.97 0 0);
629
+ --accent-foreground: oklch(0.205 0 0);
630
+ --destructive: oklch(0.577 0.245 27.325);
631
+ --destructive-foreground: oklch(0.577 0.245 27.325);
632
+ --border: oklch(0.922 0 0);
633
+ --input: oklch(0.922 0 0);
634
+ --ring: oklch(0.708 0 0);
635
+ --chart-1: oklch(0.646 0.222 41.116);
636
+ --chart-2: oklch(0.6 0.118 184.704);
637
+ --chart-3: oklch(0.398 0.07 227.392);
638
+ --chart-4: oklch(0.828 0.189 84.429);
639
+ --chart-5: oklch(0.769 0.188 70.08);
640
+ --radius: 0.625rem;
641
+ --sidebar: oklch(0.985 0 0);
642
+ --sidebar-foreground: oklch(0.145 0 0);
643
+ --sidebar-primary: oklch(0.205 0 0);
644
+ --sidebar-primary-foreground: oklch(0.985 0 0);
645
+ --sidebar-accent: oklch(0.97 0 0);
646
+ --sidebar-accent-foreground: oklch(0.205 0 0);
647
+ --sidebar-border: oklch(0.922 0 0);
648
+ --sidebar-ring: oklch(0.708 0 0);
649
+ }
650
+ .dark {
651
+ --background: oklch(0.145 0 0);
652
+ --foreground: oklch(0.985 0 0);
653
+ --card: oklch(0.145 0 0);
654
+ --card-foreground: oklch(0.985 0 0);
655
+ --popover: oklch(0.145 0 0);
656
+ --popover-foreground: oklch(0.985 0 0);
657
+ --primary: oklch(0.985 0 0);
658
+ --primary-foreground: oklch(0.205 0 0);
659
+ --secondary: oklch(0.269 0 0);
660
+ --secondary-foreground: oklch(0.985 0 0);
661
+ --muted: oklch(0.269 0 0);
662
+ --muted-foreground: oklch(0.708 0 0);
663
+ --accent: oklch(0.269 0 0);
664
+ --accent-foreground: oklch(0.985 0 0);
665
+ --destructive: oklch(0.396 0.141 25.723);
666
+ --destructive-foreground: oklch(0.637 0.237 25.331);
667
+ --border: oklch(0.269 0 0);
668
+ --input: oklch(0.269 0 0);
669
+ --ring: oklch(0.439 0 0);
670
+ --chart-1: oklch(0.488 0.243 264.376);
671
+ --chart-2: oklch(0.696 0.17 162.48);
672
+ --chart-3: oklch(0.769 0.188 70.08);
673
+ --chart-4: oklch(0.627 0.265 303.9);
674
+ --chart-5: oklch(0.645 0.246 16.439);
675
+ --sidebar: oklch(0.205 0 0);
676
+ --sidebar-foreground: oklch(0.985 0 0);
677
+ --sidebar-primary: oklch(0.488 0.243 264.376);
678
+ --sidebar-primary-foreground: oklch(0.985 0 0);
679
+ --sidebar-accent: oklch(0.269 0 0);
680
+ --sidebar-accent-foreground: oklch(0.985 0 0);
681
+ --sidebar-border: oklch(0.269 0 0);
682
+ --sidebar-ring: oklch(0.439 0 0);
683
+ }
684
+ @layer base {
685
+ * {
686
+ border-color: var(--border);
687
+ outline-color: var(--ring);
688
+ @supports (color: color-mix(in lab, red, red)) {
689
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
690
+ }
691
+ }
692
+ body {
693
+ background-color: var(--background);
694
+ color: var(--foreground);
695
+ }
696
+ }
697
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
698
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
699
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
700
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
701
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
702
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
703
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
704
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
705
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
706
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
707
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
708
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
709
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
710
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
711
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
712
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
713
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
714
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
715
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
716
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
717
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
718
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
719
+ @layer properties {
720
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
721
+ *,
722
+ ::before,
723
+ ::after,
724
+ ::backdrop {
725
+ --tw-rotate-x: initial;
726
+ --tw-rotate-y: initial;
727
+ --tw-rotate-z: initial;
728
+ --tw-skew-x: initial;
729
+ --tw-skew-y: initial;
730
+ --tw-border-style: solid;
731
+ --tw-font-weight: initial;
732
+ --tw-shadow: 0 0 #0000;
733
+ --tw-shadow-color: initial;
734
+ --tw-shadow-alpha: 100%;
735
+ --tw-inset-shadow: 0 0 #0000;
736
+ --tw-inset-shadow-color: initial;
737
+ --tw-inset-shadow-alpha: 100%;
738
+ --tw-ring-color: initial;
739
+ --tw-ring-shadow: 0 0 #0000;
740
+ --tw-inset-ring-color: initial;
741
+ --tw-inset-ring-shadow: 0 0 #0000;
742
+ --tw-ring-inset: initial;
743
+ --tw-ring-offset-width: 0px;
744
+ --tw-ring-offset-color: #fff;
745
+ --tw-ring-offset-shadow: 0 0 #0000;
746
+ --tw-outline-style: solid;
747
+ --tw-animation-delay: 0s;
748
+ --tw-animation-direction: normal;
749
+ --tw-animation-duration: initial;
750
+ --tw-animation-fill-mode: none;
751
+ --tw-animation-iteration-count: 1;
752
+ --tw-enter-blur: 0;
753
+ --tw-enter-opacity: 1;
754
+ --tw-enter-rotate: 0;
755
+ --tw-enter-scale: 1;
756
+ --tw-enter-translate-x: 0;
757
+ --tw-enter-translate-y: 0;
758
+ --tw-exit-blur: 0;
759
+ --tw-exit-opacity: 1;
760
+ --tw-exit-rotate: 0;
761
+ --tw-exit-scale: 1;
762
+ --tw-exit-translate-x: 0;
763
+ --tw-exit-translate-y: 0;
764
+ }
765
+ }
766
+ }
767
+ /*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
768
+ /*# sourceMappingURL=index.css.map */