@algorithm-shift/design-system 1.0.0 → 1.2.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/index.css ADDED
@@ -0,0 +1,755 @@
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-md {
277
+ border-radius: calc(var(--radius) - 2px);
278
+ }
279
+ .border {
280
+ border-style: var(--tw-border-style);
281
+ border-width: 1px;
282
+ }
283
+ .bg-background {
284
+ background-color: var(--background);
285
+ }
286
+ .bg-destructive {
287
+ background-color: var(--destructive);
288
+ }
289
+ .bg-primary {
290
+ background-color: var(--primary);
291
+ }
292
+ .bg-red-500 {
293
+ background-color: var(--color-red-500);
294
+ }
295
+ .bg-secondary {
296
+ background-color: var(--secondary);
297
+ }
298
+ .px-3 {
299
+ padding-inline: calc(var(--spacing) * 3);
300
+ }
301
+ .px-4 {
302
+ padding-inline: calc(var(--spacing) * 4);
303
+ }
304
+ .px-6 {
305
+ padding-inline: calc(var(--spacing) * 6);
306
+ }
307
+ .py-2 {
308
+ padding-block: calc(var(--spacing) * 2);
309
+ }
310
+ .text-sm {
311
+ font-size: var(--text-sm);
312
+ line-height: var(--tw-leading, var(--text-sm--line-height));
313
+ }
314
+ .font-medium {
315
+ --tw-font-weight: var(--font-weight-medium);
316
+ font-weight: var(--font-weight-medium);
317
+ }
318
+ .whitespace-nowrap {
319
+ white-space: nowrap;
320
+ }
321
+ .text-primary {
322
+ color: var(--primary);
323
+ }
324
+ .text-primary-foreground {
325
+ color: var(--primary-foreground);
326
+ }
327
+ .text-secondary-foreground {
328
+ color: var(--secondary-foreground);
329
+ }
330
+ .text-white {
331
+ color: var(--color-white);
332
+ }
333
+ .underline-offset-4 {
334
+ text-underline-offset: 4px;
335
+ }
336
+ .shadow-xs {
337
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
338
+ box-shadow:
339
+ var(--tw-inset-shadow),
340
+ var(--tw-inset-ring-shadow),
341
+ var(--tw-ring-offset-shadow),
342
+ var(--tw-ring-shadow),
343
+ var(--tw-shadow);
344
+ }
345
+ .outline {
346
+ outline-style: var(--tw-outline-style);
347
+ outline-width: 1px;
348
+ }
349
+ .transition-all {
350
+ transition-property: all;
351
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
352
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
353
+ }
354
+ .outline-none {
355
+ --tw-outline-style: none;
356
+ outline-style: none;
357
+ }
358
+ .hover\:bg-accent {
359
+ &:hover {
360
+ @media (hover: hover) {
361
+ background-color: var(--accent);
362
+ }
363
+ }
364
+ }
365
+ .hover\:bg-destructive\/90 {
366
+ &:hover {
367
+ @media (hover: hover) {
368
+ background-color: var(--destructive);
369
+ @supports (color: color-mix(in lab, red, red)) {
370
+ background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
371
+ }
372
+ }
373
+ }
374
+ }
375
+ .hover\:bg-primary\/90 {
376
+ &:hover {
377
+ @media (hover: hover) {
378
+ background-color: var(--primary);
379
+ @supports (color: color-mix(in lab, red, red)) {
380
+ background-color: color-mix(in oklab, var(--primary) 90%, transparent);
381
+ }
382
+ }
383
+ }
384
+ }
385
+ .hover\:bg-red-600 {
386
+ &:hover {
387
+ @media (hover: hover) {
388
+ background-color: var(--color-red-600);
389
+ }
390
+ }
391
+ }
392
+ .hover\:bg-secondary\/80 {
393
+ &:hover {
394
+ @media (hover: hover) {
395
+ background-color: var(--secondary);
396
+ @supports (color: color-mix(in lab, red, red)) {
397
+ background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
398
+ }
399
+ }
400
+ }
401
+ }
402
+ .hover\:text-accent-foreground {
403
+ &:hover {
404
+ @media (hover: hover) {
405
+ color: var(--accent-foreground);
406
+ }
407
+ }
408
+ }
409
+ .hover\:underline {
410
+ &:hover {
411
+ @media (hover: hover) {
412
+ text-decoration-line: underline;
413
+ }
414
+ }
415
+ }
416
+ .focus-visible\:border-ring {
417
+ &:focus-visible {
418
+ border-color: var(--ring);
419
+ }
420
+ }
421
+ .focus-visible\:ring-\[3px\] {
422
+ &:focus-visible {
423
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
424
+ box-shadow:
425
+ var(--tw-inset-shadow),
426
+ var(--tw-inset-ring-shadow),
427
+ var(--tw-ring-offset-shadow),
428
+ var(--tw-ring-shadow),
429
+ var(--tw-shadow);
430
+ }
431
+ }
432
+ .focus-visible\:ring-destructive\/20 {
433
+ &:focus-visible {
434
+ --tw-ring-color: var(--destructive);
435
+ @supports (color: color-mix(in lab, red, red)) {
436
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
437
+ }
438
+ }
439
+ }
440
+ .focus-visible\:ring-red-200 {
441
+ &:focus-visible {
442
+ --tw-ring-color: var(--color-red-200);
443
+ }
444
+ }
445
+ .focus-visible\:ring-ring\/50 {
446
+ &:focus-visible {
447
+ --tw-ring-color: var(--ring);
448
+ @supports (color: color-mix(in lab, red, red)) {
449
+ --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
450
+ }
451
+ }
452
+ }
453
+ .disabled\:pointer-events-none {
454
+ &:disabled {
455
+ pointer-events: none;
456
+ }
457
+ }
458
+ .disabled\:opacity-50 {
459
+ &:disabled {
460
+ opacity: 50%;
461
+ }
462
+ }
463
+ .has-\[\>svg\]\:px-2\.5 {
464
+ &:has(> svg) {
465
+ padding-inline: calc(var(--spacing) * 2.5);
466
+ }
467
+ }
468
+ .has-\[\>svg\]\:px-3 {
469
+ &:has(> svg) {
470
+ padding-inline: calc(var(--spacing) * 3);
471
+ }
472
+ }
473
+ .has-\[\>svg\]\:px-4 {
474
+ &:has(> svg) {
475
+ padding-inline: calc(var(--spacing) * 4);
476
+ }
477
+ }
478
+ .aria-invalid\:border-destructive {
479
+ &[aria-invalid=true] {
480
+ border-color: var(--destructive);
481
+ }
482
+ }
483
+ .aria-invalid\:ring-destructive\/20 {
484
+ &[aria-invalid=true] {
485
+ --tw-ring-color: var(--destructive);
486
+ @supports (color: color-mix(in lab, red, red)) {
487
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 20%, transparent);
488
+ }
489
+ }
490
+ }
491
+ .dark\:border-input {
492
+ &:is(.dark *) {
493
+ border-color: var(--input);
494
+ }
495
+ }
496
+ .dark\:bg-destructive\/60 {
497
+ &:is(.dark *) {
498
+ background-color: var(--destructive);
499
+ @supports (color: color-mix(in lab, red, red)) {
500
+ background-color: color-mix(in oklab, var(--destructive) 60%, transparent);
501
+ }
502
+ }
503
+ }
504
+ .dark\:bg-input\/30 {
505
+ &:is(.dark *) {
506
+ background-color: var(--input);
507
+ @supports (color: color-mix(in lab, red, red)) {
508
+ background-color: color-mix(in oklab, var(--input) 30%, transparent);
509
+ }
510
+ }
511
+ }
512
+ .dark\:bg-red-700 {
513
+ &:is(.dark *) {
514
+ background-color: var(--color-red-700);
515
+ }
516
+ }
517
+ .dark\:hover\:bg-accent\/50 {
518
+ &:is(.dark *) {
519
+ &:hover {
520
+ @media (hover: hover) {
521
+ background-color: var(--accent);
522
+ @supports (color: color-mix(in lab, red, red)) {
523
+ background-color: color-mix(in oklab, var(--accent) 50%, transparent);
524
+ }
525
+ }
526
+ }
527
+ }
528
+ }
529
+ .dark\:hover\:bg-input\/50 {
530
+ &:is(.dark *) {
531
+ &:hover {
532
+ @media (hover: hover) {
533
+ background-color: var(--input);
534
+ @supports (color: color-mix(in lab, red, red)) {
535
+ background-color: color-mix(in oklab, var(--input) 50%, transparent);
536
+ }
537
+ }
538
+ }
539
+ }
540
+ }
541
+ .dark\:focus-visible\:ring-destructive\/40 {
542
+ &:is(.dark *) {
543
+ &:focus-visible {
544
+ --tw-ring-color: var(--destructive);
545
+ @supports (color: color-mix(in lab, red, red)) {
546
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
547
+ }
548
+ }
549
+ }
550
+ }
551
+ .dark\:focus-visible\:ring-red-400 {
552
+ &:is(.dark *) {
553
+ &:focus-visible {
554
+ --tw-ring-color: var(--color-red-400);
555
+ }
556
+ }
557
+ }
558
+ .dark\:aria-invalid\:ring-destructive\/40 {
559
+ &:is(.dark *) {
560
+ &[aria-invalid=true] {
561
+ --tw-ring-color: var(--destructive);
562
+ @supports (color: color-mix(in lab, red, red)) {
563
+ --tw-ring-color: color-mix(in oklab, var(--destructive) 40%, transparent);
564
+ }
565
+ }
566
+ }
567
+ }
568
+ .\[\&_svg\]\:pointer-events-none {
569
+ & svg {
570
+ pointer-events: none;
571
+ }
572
+ }
573
+ .\[\&_svg\]\:shrink-0 {
574
+ & svg {
575
+ flex-shrink: 0;
576
+ }
577
+ }
578
+ .\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 {
579
+ & svg:not([class*=size-]) {
580
+ width: calc(var(--spacing) * 4);
581
+ height: calc(var(--spacing) * 4);
582
+ }
583
+ }
584
+ }
585
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
586
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
587
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
588
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
589
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
590
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
591
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
592
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
593
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
594
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
595
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
596
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
597
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
598
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
599
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
600
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
601
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
602
+ :root {
603
+ --background: oklch(1 0 0);
604
+ --foreground: oklch(0.145 0 0);
605
+ --card: oklch(1 0 0);
606
+ --card-foreground: oklch(0.145 0 0);
607
+ --popover: oklch(1 0 0);
608
+ --popover-foreground: oklch(0.145 0 0);
609
+ --primary: oklch(0.205 0 0);
610
+ --primary-foreground: oklch(0.985 0 0);
611
+ --secondary: oklch(0.97 0 0);
612
+ --secondary-foreground: oklch(0.205 0 0);
613
+ --muted: oklch(0.97 0 0);
614
+ --muted-foreground: oklch(0.556 0 0);
615
+ --accent: oklch(0.97 0 0);
616
+ --accent-foreground: oklch(0.205 0 0);
617
+ --destructive: oklch(0.577 0.245 27.325);
618
+ --destructive-foreground: oklch(0.577 0.245 27.325);
619
+ --border: oklch(0.922 0 0);
620
+ --input: oklch(0.922 0 0);
621
+ --ring: oklch(0.708 0 0);
622
+ --chart-1: oklch(0.646 0.222 41.116);
623
+ --chart-2: oklch(0.6 0.118 184.704);
624
+ --chart-3: oklch(0.398 0.07 227.392);
625
+ --chart-4: oklch(0.828 0.189 84.429);
626
+ --chart-5: oklch(0.769 0.188 70.08);
627
+ --radius: 0.625rem;
628
+ --sidebar: oklch(0.985 0 0);
629
+ --sidebar-foreground: oklch(0.145 0 0);
630
+ --sidebar-primary: oklch(0.205 0 0);
631
+ --sidebar-primary-foreground: oklch(0.985 0 0);
632
+ --sidebar-accent: oklch(0.97 0 0);
633
+ --sidebar-accent-foreground: oklch(0.205 0 0);
634
+ --sidebar-border: oklch(0.922 0 0);
635
+ --sidebar-ring: oklch(0.708 0 0);
636
+ }
637
+ .dark {
638
+ --background: oklch(0.145 0 0);
639
+ --foreground: oklch(0.985 0 0);
640
+ --card: oklch(0.145 0 0);
641
+ --card-foreground: oklch(0.985 0 0);
642
+ --popover: oklch(0.145 0 0);
643
+ --popover-foreground: oklch(0.985 0 0);
644
+ --primary: oklch(0.985 0 0);
645
+ --primary-foreground: oklch(0.205 0 0);
646
+ --secondary: oklch(0.269 0 0);
647
+ --secondary-foreground: oklch(0.985 0 0);
648
+ --muted: oklch(0.269 0 0);
649
+ --muted-foreground: oklch(0.708 0 0);
650
+ --accent: oklch(0.269 0 0);
651
+ --accent-foreground: oklch(0.985 0 0);
652
+ --destructive: oklch(0.396 0.141 25.723);
653
+ --destructive-foreground: oklch(0.637 0.237 25.331);
654
+ --border: oklch(0.269 0 0);
655
+ --input: oklch(0.269 0 0);
656
+ --ring: oklch(0.439 0 0);
657
+ --chart-1: oklch(0.488 0.243 264.376);
658
+ --chart-2: oklch(0.696 0.17 162.48);
659
+ --chart-3: oklch(0.769 0.188 70.08);
660
+ --chart-4: oklch(0.627 0.265 303.9);
661
+ --chart-5: oklch(0.645 0.246 16.439);
662
+ --sidebar: oklch(0.205 0 0);
663
+ --sidebar-foreground: oklch(0.985 0 0);
664
+ --sidebar-primary: oklch(0.488 0.243 264.376);
665
+ --sidebar-primary-foreground: oklch(0.985 0 0);
666
+ --sidebar-accent: oklch(0.269 0 0);
667
+ --sidebar-accent-foreground: oklch(0.985 0 0);
668
+ --sidebar-border: oklch(0.269 0 0);
669
+ --sidebar-ring: oklch(0.439 0 0);
670
+ }
671
+ @layer base {
672
+ * {
673
+ border-color: var(--border);
674
+ outline-color: var(--ring);
675
+ @supports (color: color-mix(in lab, red, red)) {
676
+ outline-color: color-mix(in oklab, var(--ring) 50%, transparent);
677
+ }
678
+ }
679
+ body {
680
+ background-color: var(--background);
681
+ color: var(--foreground);
682
+ }
683
+ }
684
+ @property --tw-rotate-x { syntax: "*"; inherits: false; }
685
+ @property --tw-rotate-y { syntax: "*"; inherits: false; }
686
+ @property --tw-rotate-z { syntax: "*"; inherits: false; }
687
+ @property --tw-skew-x { syntax: "*"; inherits: false; }
688
+ @property --tw-skew-y { syntax: "*"; inherits: false; }
689
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
690
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
691
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
692
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
693
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
694
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
695
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
696
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
697
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
698
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
699
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
700
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
701
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
702
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
703
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
704
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
705
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
706
+ @layer properties {
707
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
708
+ *,
709
+ ::before,
710
+ ::after,
711
+ ::backdrop {
712
+ --tw-rotate-x: initial;
713
+ --tw-rotate-y: initial;
714
+ --tw-rotate-z: initial;
715
+ --tw-skew-x: initial;
716
+ --tw-skew-y: initial;
717
+ --tw-border-style: solid;
718
+ --tw-font-weight: initial;
719
+ --tw-shadow: 0 0 #0000;
720
+ --tw-shadow-color: initial;
721
+ --tw-shadow-alpha: 100%;
722
+ --tw-inset-shadow: 0 0 #0000;
723
+ --tw-inset-shadow-color: initial;
724
+ --tw-inset-shadow-alpha: 100%;
725
+ --tw-ring-color: initial;
726
+ --tw-ring-shadow: 0 0 #0000;
727
+ --tw-inset-ring-color: initial;
728
+ --tw-inset-ring-shadow: 0 0 #0000;
729
+ --tw-ring-inset: initial;
730
+ --tw-ring-offset-width: 0px;
731
+ --tw-ring-offset-color: #fff;
732
+ --tw-ring-offset-shadow: 0 0 #0000;
733
+ --tw-outline-style: solid;
734
+ --tw-animation-delay: 0s;
735
+ --tw-animation-direction: normal;
736
+ --tw-animation-duration: initial;
737
+ --tw-animation-fill-mode: none;
738
+ --tw-animation-iteration-count: 1;
739
+ --tw-enter-blur: 0;
740
+ --tw-enter-opacity: 1;
741
+ --tw-enter-rotate: 0;
742
+ --tw-enter-scale: 1;
743
+ --tw-enter-translate-x: 0;
744
+ --tw-enter-translate-y: 0;
745
+ --tw-exit-blur: 0;
746
+ --tw-exit-opacity: 1;
747
+ --tw-exit-rotate: 0;
748
+ --tw-exit-scale: 1;
749
+ --tw-exit-translate-x: 0;
750
+ --tw-exit-translate-y: 0;
751
+ }
752
+ }
753
+ }
754
+ /*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
755
+ /*# sourceMappingURL=index.css.map */