@jonelhatwell/arcade-games 1.0.0

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