@namehash/namehash-ui 1.8.1 → 1.10.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.
@@ -0,0 +1,1603 @@
1
+ /* src/styles.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --nhui-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
+ --nhui-font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --nhui-color-blue-600: oklch(54.6% 0.245 262.881);
25
+ --nhui-color-gray-50: oklch(98.5% 0.002 247.839);
26
+ --nhui-color-gray-200: oklch(92.8% 0.006 264.531);
27
+ --nhui-color-gray-400: oklch(70.7% 0.022 261.325);
28
+ --nhui-color-gray-500: oklch(55.1% 0.027 264.364);
29
+ --nhui-color-gray-700: oklch(37.3% 0.034 259.733);
30
+ --nhui-color-neutral-300: oklch(87% 0 0);
31
+ --nhui-color-black: #000;
32
+ --nhui-color-white: #fff;
33
+ --nhui-spacing: 0.25rem;
34
+ --nhui-text-xs: 0.75rem;
35
+ --nhui-text-xs--line-height: calc(1 / 0.75);
36
+ --nhui-text-sm: 0.875rem;
37
+ --nhui-text-sm--line-height: calc(1.25 / 0.875);
38
+ --nhui-text-base: 1rem;
39
+ --nhui-text-base--line-height: calc(1.5 / 1);
40
+ --nhui-text-lg: 1.125rem;
41
+ --nhui-text-lg--line-height: calc(1.75 / 1.125);
42
+ --nhui-font-weight-light: 300;
43
+ --nhui-font-weight-normal: 400;
44
+ --nhui-font-weight-medium: 500;
45
+ --nhui-font-weight-semibold: 600;
46
+ --nhui-leading-normal: 1.5;
47
+ --nhui-radius-2xl: 1rem;
48
+ --nhui-animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
49
+ --nhui-default-transition-duration: 150ms;
50
+ --nhui-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
51
+ --nhui-default-font-family: var(--nhui-font-sans);
52
+ --nhui-default-mono-font-family: var(--nhui-font-mono);
53
+ }
54
+ }
55
+ @layer base {
56
+ *,
57
+ ::after,
58
+ ::before,
59
+ ::backdrop,
60
+ ::file-selector-button {
61
+ box-sizing: border-box;
62
+ margin: 0;
63
+ padding: 0;
64
+ border: 0 solid;
65
+ }
66
+ html,
67
+ :host {
68
+ line-height: 1.5;
69
+ -webkit-text-size-adjust: 100%;
70
+ tab-size: 4;
71
+ font-family: var(--nhui-default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
72
+ font-feature-settings: var(--nhui-default-font-feature-settings, normal);
73
+ font-variation-settings: var(--nhui-default-font-variation-settings, normal);
74
+ -webkit-tap-highlight-color: transparent;
75
+ }
76
+ hr {
77
+ height: 0;
78
+ color: inherit;
79
+ border-top-width: 1px;
80
+ }
81
+ abbr:where([title]) {
82
+ -webkit-text-decoration: underline dotted;
83
+ text-decoration: underline dotted;
84
+ }
85
+ h1,
86
+ h2,
87
+ h3,
88
+ h4,
89
+ h5,
90
+ h6 {
91
+ font-size: inherit;
92
+ font-weight: inherit;
93
+ }
94
+ a {
95
+ color: inherit;
96
+ -webkit-text-decoration: inherit;
97
+ text-decoration: inherit;
98
+ }
99
+ b,
100
+ strong {
101
+ font-weight: bolder;
102
+ }
103
+ code,
104
+ kbd,
105
+ samp,
106
+ pre {
107
+ font-family: var(--nhui-default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
108
+ font-feature-settings: var(--nhui-default-mono-font-feature-settings, normal);
109
+ font-variation-settings: var(--nhui-default-mono-font-variation-settings, normal);
110
+ font-size: 1em;
111
+ }
112
+ small {
113
+ font-size: 80%;
114
+ }
115
+ sub,
116
+ sup {
117
+ font-size: 75%;
118
+ line-height: 0;
119
+ position: relative;
120
+ vertical-align: baseline;
121
+ }
122
+ sub {
123
+ bottom: -0.25em;
124
+ }
125
+ sup {
126
+ top: -0.5em;
127
+ }
128
+ table {
129
+ text-indent: 0;
130
+ border-color: inherit;
131
+ border-collapse: collapse;
132
+ }
133
+ :-moz-focusring {
134
+ outline: auto;
135
+ }
136
+ progress {
137
+ vertical-align: baseline;
138
+ }
139
+ summary {
140
+ display: list-item;
141
+ }
142
+ ol,
143
+ ul,
144
+ menu {
145
+ list-style: none;
146
+ }
147
+ img,
148
+ svg,
149
+ video,
150
+ canvas,
151
+ audio,
152
+ iframe,
153
+ embed,
154
+ object {
155
+ display: block;
156
+ vertical-align: middle;
157
+ }
158
+ img,
159
+ video {
160
+ max-width: 100%;
161
+ height: auto;
162
+ }
163
+ button,
164
+ input,
165
+ select,
166
+ optgroup,
167
+ textarea,
168
+ ::file-selector-button {
169
+ font: inherit;
170
+ font-feature-settings: inherit;
171
+ font-variation-settings: inherit;
172
+ letter-spacing: inherit;
173
+ color: inherit;
174
+ border-radius: 0;
175
+ background-color: transparent;
176
+ opacity: 1;
177
+ }
178
+ :where(select:is([multiple], [size])) optgroup {
179
+ font-weight: bolder;
180
+ }
181
+ :where(select:is([multiple], [size])) optgroup option {
182
+ padding-inline-start: 20px;
183
+ }
184
+ ::file-selector-button {
185
+ margin-inline-end: 4px;
186
+ }
187
+ ::placeholder {
188
+ opacity: 1;
189
+ }
190
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
191
+ ::placeholder {
192
+ color: currentcolor;
193
+ @supports (color: color-mix(in lab, red, red)) {
194
+ color: color-mix(in oklab, currentcolor 50%, transparent);
195
+ }
196
+ }
197
+ }
198
+ textarea {
199
+ resize: vertical;
200
+ }
201
+ ::-webkit-search-decoration {
202
+ -webkit-appearance: none;
203
+ }
204
+ ::-webkit-date-and-time-value {
205
+ min-height: 1lh;
206
+ text-align: inherit;
207
+ }
208
+ ::-webkit-datetime-edit {
209
+ display: inline-flex;
210
+ }
211
+ ::-webkit-datetime-edit-fields-wrapper {
212
+ padding: 0;
213
+ }
214
+ ::-webkit-datetime-edit,
215
+ ::-webkit-datetime-edit-year-field,
216
+ ::-webkit-datetime-edit-month-field,
217
+ ::-webkit-datetime-edit-day-field,
218
+ ::-webkit-datetime-edit-hour-field,
219
+ ::-webkit-datetime-edit-minute-field,
220
+ ::-webkit-datetime-edit-second-field,
221
+ ::-webkit-datetime-edit-millisecond-field,
222
+ ::-webkit-datetime-edit-meridiem-field {
223
+ padding-block: 0;
224
+ }
225
+ ::-webkit-calendar-picker-indicator {
226
+ line-height: 1;
227
+ }
228
+ :-moz-ui-invalid {
229
+ box-shadow: none;
230
+ }
231
+ button,
232
+ input:where([type=button], [type=reset], [type=submit]),
233
+ ::file-selector-button {
234
+ appearance: button;
235
+ }
236
+ ::-webkit-inner-spin-button,
237
+ ::-webkit-outer-spin-button {
238
+ height: auto;
239
+ }
240
+ [hidden]:where(:not([hidden=until-found])) {
241
+ display: none !important;
242
+ }
243
+ }
244
+ @layer utilities {
245
+ .nhui\:relative {
246
+ position: relative;
247
+ }
248
+ .nhui\:z-10 {
249
+ z-index: 10;
250
+ }
251
+ .nhui\:z-50 {
252
+ z-index: 50;
253
+ }
254
+ .nhui\:mx-1 {
255
+ margin-inline: calc(var(--nhui-spacing) * 1);
256
+ }
257
+ .nhui\:my-2 {
258
+ margin-block: calc(var(--nhui-spacing) * 2);
259
+ }
260
+ .nhui\:mt-\[4px\] {
261
+ margin-top: 4px;
262
+ }
263
+ .nhui\:mb-2 {
264
+ margin-bottom: calc(var(--nhui-spacing) * 2);
265
+ }
266
+ .nhui\:mb-\[3px\] {
267
+ margin-bottom: 3px;
268
+ }
269
+ .nhui\:box-border {
270
+ box-sizing: border-box;
271
+ }
272
+ .nhui\:block {
273
+ display: block;
274
+ }
275
+ .nhui\:flex {
276
+ display: flex;
277
+ }
278
+ .nhui\:hidden {
279
+ display: none;
280
+ }
281
+ .nhui\:inline-flex {
282
+ display: inline-flex;
283
+ }
284
+ .nhui\:aspect-square {
285
+ aspect-ratio: 1 / 1;
286
+ }
287
+ .nhui\:size-2\.5 {
288
+ width: calc(var(--nhui-spacing) * 2.5);
289
+ height: calc(var(--nhui-spacing) * 2.5);
290
+ }
291
+ .nhui\:size-8 {
292
+ width: calc(var(--nhui-spacing) * 8);
293
+ height: calc(var(--nhui-spacing) * 8);
294
+ }
295
+ .nhui\:size-9 {
296
+ width: calc(var(--nhui-spacing) * 9);
297
+ height: calc(var(--nhui-spacing) * 9);
298
+ }
299
+ .nhui\:size-10 {
300
+ width: calc(var(--nhui-spacing) * 10);
301
+ height: calc(var(--nhui-spacing) * 10);
302
+ }
303
+ .nhui\:size-full {
304
+ width: 100%;
305
+ height: 100%;
306
+ }
307
+ .nhui\:h-4 {
308
+ height: calc(var(--nhui-spacing) * 4);
309
+ }
310
+ .nhui\:h-5 {
311
+ height: calc(var(--nhui-spacing) * 5);
312
+ }
313
+ .nhui\:h-6 {
314
+ height: calc(var(--nhui-spacing) * 6);
315
+ }
316
+ .nhui\:h-8 {
317
+ height: calc(var(--nhui-spacing) * 8);
318
+ }
319
+ .nhui\:h-9 {
320
+ height: calc(var(--nhui-spacing) * 9);
321
+ }
322
+ .nhui\:h-10 {
323
+ height: calc(var(--nhui-spacing) * 10);
324
+ }
325
+ .nhui\:h-\[14px\] {
326
+ height: 14px;
327
+ }
328
+ .nhui\:h-\[21px\] {
329
+ height: 21px;
330
+ }
331
+ .nhui\:h-fit {
332
+ height: fit-content;
333
+ }
334
+ .nhui\:h-full {
335
+ height: 100%;
336
+ }
337
+ .nhui\:min-h-\[80px\] {
338
+ min-height: 80px;
339
+ }
340
+ .nhui\:w-1\/4 {
341
+ width: calc(1/4 * 100%);
342
+ }
343
+ .nhui\:w-1\/5 {
344
+ width: calc(1/5 * 100%);
345
+ }
346
+ .nhui\:w-4 {
347
+ width: calc(var(--nhui-spacing) * 4);
348
+ }
349
+ .nhui\:w-5 {
350
+ width: calc(var(--nhui-spacing) * 5);
351
+ }
352
+ .nhui\:w-6 {
353
+ width: calc(var(--nhui-spacing) * 6);
354
+ }
355
+ .nhui\:w-10 {
356
+ width: calc(var(--nhui-spacing) * 10);
357
+ }
358
+ .nhui\:w-\[10\%\] {
359
+ width: 10%;
360
+ }
361
+ .nhui\:w-\[15\%\] {
362
+ width: 15%;
363
+ }
364
+ .nhui\:w-\[100px\] {
365
+ width: 100px;
366
+ }
367
+ .nhui\:w-\[228px\] {
368
+ width: 228px;
369
+ }
370
+ .nhui\:w-fit {
371
+ width: fit-content;
372
+ }
373
+ .nhui\:w-full {
374
+ width: 100%;
375
+ }
376
+ .nhui\:max-w-\[339px\] {
377
+ max-width: 339px;
378
+ }
379
+ .nhui\:max-w-\[1216px\] {
380
+ max-width: 1216px;
381
+ }
382
+ .nhui\:min-w-\[110px\] {
383
+ min-width: 110px;
384
+ }
385
+ .nhui\:min-w-\[162px\] {
386
+ min-width: 162px;
387
+ }
388
+ .nhui\:shrink-0 {
389
+ flex-shrink: 0;
390
+ }
391
+ .nhui\:origin-\(--radix-tooltip-content-transform-origin\) {
392
+ transform-origin: var(--radix-tooltip-content-transform-origin);
393
+ }
394
+ .nhui\:translate-y-\[calc\(-50\%_-_2px\)\] {
395
+ --tw-translate-y: calc(-50% - 2px);
396
+ translate: var(--tw-translate-x) var(--tw-translate-y);
397
+ }
398
+ .nhui\:rotate-45 {
399
+ rotate: 45deg;
400
+ }
401
+ .nhui\:animate-in {
402
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
403
+ }
404
+ .nhui\:animate-pulse {
405
+ animation: var(--nhui-animate-pulse);
406
+ }
407
+ .nhui\:cursor-pointer {
408
+ cursor: pointer;
409
+ }
410
+ .nhui\:cursor-text {
411
+ cursor: text;
412
+ }
413
+ .nhui\:flex-col {
414
+ flex-direction: column;
415
+ }
416
+ .nhui\:flex-row {
417
+ flex-direction: row;
418
+ }
419
+ .nhui\:flex-nowrap {
420
+ flex-wrap: nowrap;
421
+ }
422
+ .nhui\:flex-wrap {
423
+ flex-wrap: wrap;
424
+ }
425
+ .nhui\:items-center {
426
+ align-items: center;
427
+ }
428
+ .nhui\:items-start {
429
+ align-items: flex-start;
430
+ }
431
+ .nhui\:justify-between {
432
+ justify-content: space-between;
433
+ }
434
+ .nhui\:justify-center {
435
+ justify-content: center;
436
+ }
437
+ .nhui\:justify-start {
438
+ justify-content: flex-start;
439
+ }
440
+ .nhui\:gap-0 {
441
+ gap: calc(var(--nhui-spacing) * 0);
442
+ }
443
+ .nhui\:gap-1\.5 {
444
+ gap: calc(var(--nhui-spacing) * 1.5);
445
+ }
446
+ .nhui\:gap-2 {
447
+ gap: calc(var(--nhui-spacing) * 2);
448
+ }
449
+ .nhui\:gap-3 {
450
+ gap: calc(var(--nhui-spacing) * 3);
451
+ }
452
+ .nhui\:gap-4 {
453
+ gap: calc(var(--nhui-spacing) * 4);
454
+ }
455
+ .nhui\:gap-5 {
456
+ gap: calc(var(--nhui-spacing) * 5);
457
+ }
458
+ .nhui\:gap-10 {
459
+ gap: calc(var(--nhui-spacing) * 10);
460
+ }
461
+ .nhui\:space-x-1 {
462
+ :where(& > :not(:last-child)) {
463
+ --tw-space-x-reverse: 0;
464
+ margin-inline-start: calc(calc(var(--nhui-spacing) * 1) * var(--tw-space-x-reverse));
465
+ margin-inline-end: calc(calc(var(--nhui-spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
466
+ }
467
+ }
468
+ .nhui\:overflow-hidden {
469
+ overflow: hidden;
470
+ }
471
+ .nhui\:overflow-x-auto {
472
+ overflow-x: auto;
473
+ }
474
+ .nhui\:rounded-2xl {
475
+ border-radius: var(--nhui-radius-2xl);
476
+ }
477
+ .nhui\:rounded-\[2px\] {
478
+ border-radius: 2px;
479
+ }
480
+ .nhui\:rounded-full {
481
+ border-radius: calc(infinity * 1px);
482
+ }
483
+ .nhui\:rounded-md {
484
+ border-radius: calc(var(--nhui-radius) - 2px);
485
+ }
486
+ .nhui\:rounded-sm {
487
+ border-radius: calc(var(--nhui-radius) - 4px);
488
+ }
489
+ .nhui\:border {
490
+ border-style: var(--tw-border-style);
491
+ border-width: 1px;
492
+ }
493
+ .nhui\:border-t {
494
+ border-top-style: var(--tw-border-style);
495
+ border-top-width: 1px;
496
+ }
497
+ .nhui\:border-\[\#DBDBDB\] {
498
+ border-color: #DBDBDB;
499
+ }
500
+ .nhui\:border-black {
501
+ border-color: var(--nhui-color-black);
502
+ }
503
+ .nhui\:border-gray-200 {
504
+ border-color: var(--nhui-color-gray-200);
505
+ }
506
+ .nhui\:border-transparent {
507
+ border-color: transparent;
508
+ }
509
+ .nhui\:bg-\[\#171717\] {
510
+ background-color: #171717;
511
+ }
512
+ .nhui\:bg-accent {
513
+ background-color: var(--nhui-accent);
514
+ }
515
+ .nhui\:bg-background {
516
+ background-color: var(--nhui-background);
517
+ }
518
+ .nhui\:bg-black {
519
+ background-color: var(--nhui-color-black);
520
+ }
521
+ .nhui\:bg-destructive {
522
+ background-color: var(--nhui-destructive);
523
+ }
524
+ .nhui\:bg-foreground {
525
+ background-color: var(--nhui-foreground);
526
+ }
527
+ .nhui\:bg-gray-50 {
528
+ background-color: var(--nhui-color-gray-50);
529
+ }
530
+ .nhui\:bg-gray-200 {
531
+ background-color: var(--nhui-color-gray-200);
532
+ }
533
+ .nhui\:bg-muted {
534
+ background-color: var(--nhui-muted);
535
+ }
536
+ .nhui\:bg-primary {
537
+ background-color: var(--nhui-primary);
538
+ }
539
+ .nhui\:bg-secondary {
540
+ background-color: var(--nhui-secondary);
541
+ }
542
+ .nhui\:bg-white {
543
+ background-color: var(--nhui-color-white);
544
+ }
545
+ .nhui\:fill-black {
546
+ fill: var(--nhui-color-black);
547
+ }
548
+ .nhui\:fill-foreground {
549
+ fill: var(--nhui-foreground);
550
+ }
551
+ .nhui\:fill-neutral-300 {
552
+ fill: var(--nhui-color-neutral-300);
553
+ }
554
+ .nhui\:p-4 {
555
+ padding: calc(var(--nhui-spacing) * 4);
556
+ }
557
+ .nhui\:px-2 {
558
+ padding-inline: calc(var(--nhui-spacing) * 2);
559
+ }
560
+ .nhui\:px-3 {
561
+ padding-inline: calc(var(--nhui-spacing) * 3);
562
+ }
563
+ .nhui\:px-4 {
564
+ padding-inline: calc(var(--nhui-spacing) * 4);
565
+ }
566
+ .nhui\:px-5 {
567
+ padding-inline: calc(var(--nhui-spacing) * 5);
568
+ }
569
+ .nhui\:px-6 {
570
+ padding-inline: calc(var(--nhui-spacing) * 6);
571
+ }
572
+ .nhui\:py-1 {
573
+ padding-block: calc(var(--nhui-spacing) * 1);
574
+ }
575
+ .nhui\:py-1\.5 {
576
+ padding-block: calc(var(--nhui-spacing) * 1.5);
577
+ }
578
+ .nhui\:py-2 {
579
+ padding-block: calc(var(--nhui-spacing) * 2);
580
+ }
581
+ .nhui\:py-3 {
582
+ padding-block: calc(var(--nhui-spacing) * 3);
583
+ }
584
+ .nhui\:pt-5 {
585
+ padding-top: calc(var(--nhui-spacing) * 5);
586
+ }
587
+ .nhui\:pt-8 {
588
+ padding-top: calc(var(--nhui-spacing) * 8);
589
+ }
590
+ .nhui\:pr-5 {
591
+ padding-right: calc(var(--nhui-spacing) * 5);
592
+ }
593
+ .nhui\:pb-5 {
594
+ padding-bottom: calc(var(--nhui-spacing) * 5);
595
+ }
596
+ .nhui\:text-left {
597
+ text-align: left;
598
+ }
599
+ .nhui\:text-base {
600
+ font-size: var(--nhui-text-base);
601
+ line-height: var(--tw-leading, var(--nhui-text-base--line-height));
602
+ }
603
+ .nhui\:text-lg {
604
+ font-size: var(--nhui-text-lg);
605
+ line-height: var(--tw-leading, var(--nhui-text-lg--line-height));
606
+ }
607
+ .nhui\:text-sm {
608
+ font-size: var(--nhui-text-sm);
609
+ line-height: var(--tw-leading, var(--nhui-text-sm--line-height));
610
+ }
611
+ .nhui\:text-xs {
612
+ font-size: var(--nhui-text-xs);
613
+ line-height: var(--tw-leading, var(--nhui-text-xs--line-height));
614
+ }
615
+ .nhui\:leading-5 {
616
+ --tw-leading: calc(var(--nhui-spacing) * 5);
617
+ line-height: calc(var(--nhui-spacing) * 5);
618
+ }
619
+ .nhui\:leading-6 {
620
+ --tw-leading: calc(var(--nhui-spacing) * 6);
621
+ line-height: calc(var(--nhui-spacing) * 6);
622
+ }
623
+ .nhui\:leading-normal {
624
+ --tw-leading: var(--nhui-leading-normal);
625
+ line-height: var(--nhui-leading-normal);
626
+ }
627
+ .nhui\:font-light {
628
+ --tw-font-weight: var(--nhui-font-weight-light);
629
+ font-weight: var(--nhui-font-weight-light);
630
+ }
631
+ .nhui\:font-medium {
632
+ --tw-font-weight: var(--nhui-font-weight-medium);
633
+ font-weight: var(--nhui-font-weight-medium);
634
+ }
635
+ .nhui\:font-normal {
636
+ --tw-font-weight: var(--nhui-font-weight-normal);
637
+ font-weight: var(--nhui-font-weight-normal);
638
+ }
639
+ .nhui\:font-semibold {
640
+ --tw-font-weight: var(--nhui-font-weight-semibold);
641
+ font-weight: var(--nhui-font-weight-semibold);
642
+ }
643
+ .nhui\:text-balance {
644
+ text-wrap: balance;
645
+ }
646
+ .nhui\:whitespace-nowrap {
647
+ white-space: nowrap;
648
+ }
649
+ .nhui\:\!text-black {
650
+ color: var(--nhui-color-black) !important;
651
+ }
652
+ .nhui\:text-\[\#9CA3AF\] {
653
+ color: #9CA3AF;
654
+ }
655
+ .nhui\:text-\[\#AFAFAF\] {
656
+ color: #AFAFAF;
657
+ }
658
+ .nhui\:text-\[\#EF4444\] {
659
+ color: #EF4444;
660
+ }
661
+ .nhui\:text-background {
662
+ color: var(--nhui-background);
663
+ }
664
+ .nhui\:text-black {
665
+ color: var(--nhui-color-black);
666
+ }
667
+ .nhui\:text-blue-600 {
668
+ color: var(--nhui-color-blue-600);
669
+ }
670
+ .nhui\:text-current {
671
+ color: currentcolor;
672
+ }
673
+ .nhui\:text-gray-400 {
674
+ color: var(--nhui-color-gray-400);
675
+ }
676
+ .nhui\:text-gray-500 {
677
+ color: var(--nhui-color-gray-500);
678
+ }
679
+ .nhui\:text-muted-foreground {
680
+ color: var(--nhui-muted-foreground);
681
+ }
682
+ .nhui\:text-primary {
683
+ color: var(--nhui-primary);
684
+ }
685
+ .nhui\:text-primary-foreground {
686
+ color: var(--nhui-primary-foreground);
687
+ }
688
+ .nhui\:text-secondary-foreground {
689
+ color: var(--nhui-secondary-foreground);
690
+ }
691
+ .nhui\:text-white {
692
+ color: var(--nhui-color-white);
693
+ }
694
+ .nhui\:not-italic {
695
+ font-style: normal;
696
+ }
697
+ .nhui\:no-underline {
698
+ text-decoration-line: none;
699
+ }
700
+ .nhui\:underline {
701
+ text-decoration-line: underline;
702
+ }
703
+ .nhui\:decoration-current {
704
+ text-decoration-color: currentcolor;
705
+ }
706
+ .nhui\:decoration-transparent {
707
+ text-decoration-color: transparent;
708
+ }
709
+ .nhui\:underline-offset-4 {
710
+ text-underline-offset: 4px;
711
+ }
712
+ .nhui\:underline-offset-\[4px\] {
713
+ text-underline-offset: 4px;
714
+ }
715
+ .nhui\:shadow-\[0_1px_2px_0_rgba\(0\,0\,0\,0\.05\)\] {
716
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgba(0,0,0,0.05));
717
+ box-shadow:
718
+ var(--tw-inset-shadow),
719
+ var(--tw-inset-ring-shadow),
720
+ var(--tw-ring-offset-shadow),
721
+ var(--tw-ring-shadow),
722
+ var(--tw-shadow);
723
+ }
724
+ .nhui\:shadow-md {
725
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
726
+ box-shadow:
727
+ var(--tw-inset-shadow),
728
+ var(--tw-inset-ring-shadow),
729
+ var(--tw-ring-offset-shadow),
730
+ var(--tw-ring-shadow),
731
+ var(--tw-shadow);
732
+ }
733
+ .nhui\:shadow-xs {
734
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
735
+ box-shadow:
736
+ var(--tw-inset-shadow),
737
+ var(--tw-inset-ring-shadow),
738
+ var(--tw-ring-offset-shadow),
739
+ var(--tw-ring-shadow),
740
+ var(--tw-shadow);
741
+ }
742
+ .nhui\:outline-hidden {
743
+ --tw-outline-style: none;
744
+ outline-style: none;
745
+ @media (forced-colors: active) {
746
+ outline: 2px solid transparent;
747
+ outline-offset: 2px;
748
+ }
749
+ }
750
+ .nhui\:transition {
751
+ transition-property:
752
+ color,
753
+ background-color,
754
+ border-color,
755
+ outline-color,
756
+ text-decoration-color,
757
+ fill,
758
+ stroke,
759
+ --tw-gradient-from,
760
+ --tw-gradient-via,
761
+ --tw-gradient-to,
762
+ opacity,
763
+ box-shadow,
764
+ transform,
765
+ translate,
766
+ scale,
767
+ rotate,
768
+ filter,
769
+ -webkit-backdrop-filter,
770
+ backdrop-filter,
771
+ display,
772
+ content-visibility,
773
+ overlay,
774
+ pointer-events;
775
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
776
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
777
+ }
778
+ .nhui\:transition-all {
779
+ transition-property: all;
780
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
781
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
782
+ }
783
+ .nhui\:transition-colors {
784
+ transition-property:
785
+ color,
786
+ background-color,
787
+ border-color,
788
+ outline-color,
789
+ text-decoration-color,
790
+ fill,
791
+ stroke,
792
+ --tw-gradient-from,
793
+ --tw-gradient-via,
794
+ --tw-gradient-to;
795
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
796
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
797
+ }
798
+ .nhui\:transition-opacity {
799
+ transition-property: opacity;
800
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
801
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
802
+ }
803
+ .nhui\:duration-0 {
804
+ --tw-duration: 0ms;
805
+ transition-duration: 0ms;
806
+ }
807
+ .nhui\:duration-200 {
808
+ --tw-duration: 200ms;
809
+ transition-duration: 200ms;
810
+ }
811
+ .nhui\:duration-300 {
812
+ --tw-duration: 300ms;
813
+ transition-duration: 300ms;
814
+ }
815
+ .nhui\:animate-in {
816
+ animation-name: enter;
817
+ animation-duration: 150ms;
818
+ --tw-enter-opacity: initial;
819
+ --tw-enter-scale: initial;
820
+ --tw-enter-rotate: initial;
821
+ --tw-enter-translate-x: initial;
822
+ --tw-enter-translate-y: initial;
823
+ }
824
+ .nhui\:fade-in-0 {
825
+ --tw-enter-opacity: calc(0/100);
826
+ --tw-enter-opacity: 0;
827
+ }
828
+ .nhui\:outline-none {
829
+ --tw-outline-style: none;
830
+ outline-style: none;
831
+ }
832
+ .nhui\:zoom-in-95 {
833
+ --tw-enter-scale: calc(95*1%);
834
+ --tw-enter-scale: .95;
835
+ }
836
+ .nhui\:duration-0 {
837
+ animation-duration: 0s;
838
+ }
839
+ .nhui\:duration-200 {
840
+ animation-duration: 200ms;
841
+ }
842
+ .nhui\:duration-300 {
843
+ animation-duration: 300ms;
844
+ }
845
+ .nhui\:fade-in-0 {
846
+ --tw-enter-opacity: 0;
847
+ }
848
+ .nhui\:zoom-in-95 {
849
+ --tw-enter-scale: .95;
850
+ }
851
+ .nhui\:hover\:bg-\[\#272727\] {
852
+ &:hover {
853
+ @media (hover: hover) {
854
+ background-color: #272727;
855
+ }
856
+ }
857
+ }
858
+ .nhui\:hover\:bg-accent {
859
+ &:hover {
860
+ @media (hover: hover) {
861
+ background-color: var(--nhui-accent);
862
+ }
863
+ }
864
+ }
865
+ .nhui\:hover\:bg-black\/5 {
866
+ &:hover {
867
+ @media (hover: hover) {
868
+ background-color: var(--nhui-color-black);
869
+ @supports (color: color-mix(in lab, red, red)) {
870
+ background-color: color-mix(in oklab, var(--nhui-color-black) 5%, transparent);
871
+ }
872
+ }
873
+ }
874
+ }
875
+ .nhui\:hover\:bg-destructive\/90 {
876
+ &:hover {
877
+ @media (hover: hover) {
878
+ background-color: var(--nhui-destructive);
879
+ @supports (color: color-mix(in lab, red, red)) {
880
+ background-color: color-mix(in oklab, var(--nhui-destructive) 90%, transparent);
881
+ }
882
+ }
883
+ }
884
+ }
885
+ .nhui\:hover\:bg-gray-50 {
886
+ &:hover {
887
+ @media (hover: hover) {
888
+ background-color: var(--nhui-color-gray-50);
889
+ }
890
+ }
891
+ }
892
+ .nhui\:hover\:bg-primary\/90 {
893
+ &:hover {
894
+ @media (hover: hover) {
895
+ background-color: var(--nhui-primary);
896
+ @supports (color: color-mix(in lab, red, red)) {
897
+ background-color: color-mix(in oklab, var(--nhui-primary) 90%, transparent);
898
+ }
899
+ }
900
+ }
901
+ }
902
+ .nhui\:hover\:bg-secondary\/80 {
903
+ &:hover {
904
+ @media (hover: hover) {
905
+ background-color: var(--nhui-secondary);
906
+ @supports (color: color-mix(in lab, red, red)) {
907
+ background-color: color-mix(in oklab, var(--nhui-secondary) 80%, transparent);
908
+ }
909
+ }
910
+ }
911
+ }
912
+ .nhui\:hover\:text-accent-foreground {
913
+ &:hover {
914
+ @media (hover: hover) {
915
+ color: var(--nhui-accent-foreground);
916
+ }
917
+ }
918
+ }
919
+ .nhui\:hover\:text-black {
920
+ &:hover {
921
+ @media (hover: hover) {
922
+ color: var(--nhui-color-black);
923
+ }
924
+ }
925
+ }
926
+ .nhui\:hover\:text-gray-700 {
927
+ &:hover {
928
+ @media (hover: hover) {
929
+ color: var(--nhui-color-gray-700);
930
+ }
931
+ }
932
+ }
933
+ .nhui\:hover\:underline {
934
+ &:hover {
935
+ @media (hover: hover) {
936
+ text-decoration-line: underline;
937
+ }
938
+ }
939
+ }
940
+ .nhui\:hover\:decoration-current {
941
+ &:hover {
942
+ @media (hover: hover) {
943
+ text-decoration-color: currentcolor;
944
+ }
945
+ }
946
+ }
947
+ .nhui\:hover\:underline-offset-\[2px\] {
948
+ &:hover {
949
+ @media (hover: hover) {
950
+ text-underline-offset: 2px;
951
+ }
952
+ }
953
+ }
954
+ .nhui\:hover\:underline-offset-\[25\%\] {
955
+ &:hover {
956
+ @media (hover: hover) {
957
+ text-underline-offset: 25%;
958
+ }
959
+ }
960
+ }
961
+ .nhui\:focus-visible\:border-ring {
962
+ &:focus-visible {
963
+ border-color: var(--nhui-ring);
964
+ }
965
+ }
966
+ .nhui\:focus-visible\:ring-\[3px\] {
967
+ &:focus-visible {
968
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
969
+ box-shadow:
970
+ var(--tw-inset-shadow),
971
+ var(--tw-inset-ring-shadow),
972
+ var(--tw-ring-offset-shadow),
973
+ var(--tw-ring-shadow),
974
+ var(--tw-shadow);
975
+ }
976
+ }
977
+ .nhui\:focus-visible\:ring-destructive\/20 {
978
+ &:focus-visible {
979
+ --tw-ring-color: var(--nhui-destructive);
980
+ @supports (color: color-mix(in lab, red, red)) {
981
+ --tw-ring-color: color-mix(in oklab, var(--nhui-destructive) 20%, transparent);
982
+ }
983
+ }
984
+ }
985
+ .nhui\:focus-visible\:ring-ring\/50 {
986
+ &:focus-visible {
987
+ --tw-ring-color: var(--nhui-ring);
988
+ @supports (color: color-mix(in lab, red, red)) {
989
+ --tw-ring-color: color-mix(in oklab, var(--nhui-ring) 50%, transparent);
990
+ }
991
+ }
992
+ }
993
+ .nhui\:disabled\:pointer-events-none {
994
+ &:disabled {
995
+ pointer-events: none;
996
+ }
997
+ }
998
+ .nhui\:disabled\:opacity-50 {
999
+ &:disabled {
1000
+ opacity: 50%;
1001
+ }
1002
+ }
1003
+ .nhui\:has-\[\>svg\]\:px-2\.5 {
1004
+ &:has(> svg) {
1005
+ padding-inline: calc(var(--nhui-spacing) * 2.5);
1006
+ }
1007
+ }
1008
+ .nhui\:has-\[\>svg\]\:px-3 {
1009
+ &:has(> svg) {
1010
+ padding-inline: calc(var(--nhui-spacing) * 3);
1011
+ }
1012
+ }
1013
+ .nhui\:has-\[\>svg\]\:px-4 {
1014
+ &:has(> svg) {
1015
+ padding-inline: calc(var(--nhui-spacing) * 4);
1016
+ }
1017
+ }
1018
+ .nhui\:aria-invalid\:border-destructive {
1019
+ &[aria-invalid=true] {
1020
+ border-color: var(--nhui-destructive);
1021
+ }
1022
+ }
1023
+ .nhui\:aria-invalid\:ring-destructive\/20 {
1024
+ &[aria-invalid=true] {
1025
+ --tw-ring-color: var(--nhui-destructive);
1026
+ @supports (color: color-mix(in lab, red, red)) {
1027
+ --tw-ring-color: color-mix(in oklab, var(--nhui-destructive) 20%, transparent);
1028
+ }
1029
+ }
1030
+ }
1031
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-1 {
1032
+ &[data-side=bottom] {
1033
+ --tw-enter-translate-y: -.;
1034
+ }
1035
+ }
1036
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-1 {
1037
+ &[data-side=bottom] {
1038
+ --tw-enter-translate-y: calc(1*var(--spacing)*-1);
1039
+ }
1040
+ }
1041
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-2 {
1042
+ &[data-side=bottom] {
1043
+ --tw-enter-translate-y: -2;
1044
+ }
1045
+ }
1046
+ .nhui\:data-\[side\=bottom\]\:slide-in-from-top-2 {
1047
+ &[data-side=bottom] {
1048
+ --tw-enter-translate-y: calc(2*var(--spacing)*-1);
1049
+ }
1050
+ }
1051
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-1 {
1052
+ &[data-side=left] {
1053
+ --tw-enter-translate-x: .;
1054
+ }
1055
+ }
1056
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-1 {
1057
+ &[data-side=left] {
1058
+ --tw-enter-translate-x: calc(1*var(--spacing));
1059
+ }
1060
+ }
1061
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-2 {
1062
+ &[data-side=left] {
1063
+ --tw-enter-translate-x: 2;
1064
+ }
1065
+ }
1066
+ .nhui\:data-\[side\=left\]\:slide-in-from-right-2 {
1067
+ &[data-side=left] {
1068
+ --tw-enter-translate-x: calc(2*var(--spacing));
1069
+ }
1070
+ }
1071
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-1 {
1072
+ &[data-side=right] {
1073
+ --tw-enter-translate-x: -.;
1074
+ }
1075
+ }
1076
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-1 {
1077
+ &[data-side=right] {
1078
+ --tw-enter-translate-x: calc(1*var(--spacing)*-1);
1079
+ }
1080
+ }
1081
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-2 {
1082
+ &[data-side=right] {
1083
+ --tw-enter-translate-x: -2;
1084
+ }
1085
+ }
1086
+ .nhui\:data-\[side\=right\]\:slide-in-from-left-2 {
1087
+ &[data-side=right] {
1088
+ --tw-enter-translate-x: calc(2*var(--spacing)*-1);
1089
+ }
1090
+ }
1091
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-1 {
1092
+ &[data-side=top] {
1093
+ --tw-enter-translate-y: .;
1094
+ }
1095
+ }
1096
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-1 {
1097
+ &[data-side=top] {
1098
+ --tw-enter-translate-y: calc(1*var(--spacing));
1099
+ }
1100
+ }
1101
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-2 {
1102
+ &[data-side=top] {
1103
+ --tw-enter-translate-y: 2;
1104
+ }
1105
+ }
1106
+ .nhui\:data-\[side\=top\]\:slide-in-from-bottom-2 {
1107
+ &[data-side=top] {
1108
+ --tw-enter-translate-y: calc(2*var(--spacing));
1109
+ }
1110
+ }
1111
+ .nhui\:data-\[state\=closed\]\:animate-out {
1112
+ &[data-state=closed] {
1113
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1114
+ }
1115
+ }
1116
+ .nhui\:data-\[state\=closed\]\:duration-200 {
1117
+ &[data-state=closed] {
1118
+ --tw-duration: 200ms;
1119
+ transition-duration: 200ms;
1120
+ }
1121
+ }
1122
+ .nhui\:data-\[state\=closed\]\:animate-out {
1123
+ &[data-state=closed] {
1124
+ animation-name: exit;
1125
+ animation-duration: 150ms;
1126
+ --tw-exit-opacity: initial;
1127
+ --tw-exit-scale: initial;
1128
+ --tw-exit-rotate: initial;
1129
+ --tw-exit-translate-x: initial;
1130
+ --tw-exit-translate-y: initial;
1131
+ }
1132
+ }
1133
+ .nhui\:data-\[state\=closed\]\:fade-out-0 {
1134
+ &[data-state=closed] {
1135
+ --tw-exit-opacity: calc(0/100);
1136
+ --tw-exit-opacity: 0;
1137
+ }
1138
+ }
1139
+ .nhui\:data-\[state\=closed\]\:zoom-out-95 {
1140
+ &[data-state=closed] {
1141
+ --tw-exit-scale: calc(95*1%);
1142
+ --tw-exit-scale: .95;
1143
+ }
1144
+ }
1145
+ .nhui\:data-\[state\=closed\]\:duration-200 {
1146
+ &[data-state=closed] {
1147
+ animation-duration: 200ms;
1148
+ }
1149
+ }
1150
+ .nhui\:data-\[state\=closed\]\:fade-out-0 {
1151
+ &[data-state=closed] {
1152
+ --tw-exit-opacity: 0;
1153
+ }
1154
+ }
1155
+ .nhui\:data-\[state\=closed\]\:zoom-out-95 {
1156
+ &[data-state=closed] {
1157
+ --tw-exit-scale: .95;
1158
+ }
1159
+ }
1160
+ .nhui\:data-\[state\=delayed-open\]\:animate-in {
1161
+ &[data-state=delayed-open] {
1162
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1163
+ }
1164
+ }
1165
+ .nhui\:data-\[state\=delayed-open\]\:animate-in {
1166
+ &[data-state=delayed-open] {
1167
+ animation-name: enter;
1168
+ animation-duration: 150ms;
1169
+ --tw-enter-opacity: initial;
1170
+ --tw-enter-scale: initial;
1171
+ --tw-enter-rotate: initial;
1172
+ --tw-enter-translate-x: initial;
1173
+ --tw-enter-translate-y: initial;
1174
+ }
1175
+ }
1176
+ .nhui\:data-\[state\=delayed-open\]\:fade-in-0 {
1177
+ &[data-state=delayed-open] {
1178
+ --tw-enter-opacity: calc(0/100);
1179
+ --tw-enter-opacity: 0;
1180
+ }
1181
+ }
1182
+ .nhui\:data-\[state\=delayed-open\]\:fade-in-0 {
1183
+ &[data-state=delayed-open] {
1184
+ --tw-enter-opacity: 0;
1185
+ }
1186
+ }
1187
+ .nhui\:max-sm\:w-full {
1188
+ @media (width < 40rem) {
1189
+ width: 100%;
1190
+ }
1191
+ }
1192
+ .nhui\:max-sm\:max-w-3\/4 {
1193
+ @media (width < 40rem) {
1194
+ max-width: calc(3/4 * 100%);
1195
+ }
1196
+ }
1197
+ .nhui\:max-sm\:justify-end {
1198
+ @media (width < 40rem) {
1199
+ justify-content: flex-end;
1200
+ }
1201
+ }
1202
+ .nhui\:max-sm\:self-stretch {
1203
+ @media (width < 40rem) {
1204
+ align-self: stretch;
1205
+ }
1206
+ }
1207
+ .nhui\:min-\[1220px\]\:max-w-\[140px\] {
1208
+ @media (width >= 1220px) {
1209
+ max-width: 140px;
1210
+ }
1211
+ }
1212
+ .nhui\:sm\:w-2\/3 {
1213
+ @media (width >= 40rem) {
1214
+ width: calc(2/3 * 100%);
1215
+ }
1216
+ }
1217
+ .nhui\:sm\:w-3\/4 {
1218
+ @media (width >= 40rem) {
1219
+ width: calc(3/4 * 100%);
1220
+ }
1221
+ }
1222
+ .nhui\:sm\:w-3\/5 {
1223
+ @media (width >= 40rem) {
1224
+ width: calc(3/5 * 100%);
1225
+ }
1226
+ }
1227
+ .nhui\:sm\:w-4\/5 {
1228
+ @media (width >= 40rem) {
1229
+ width: calc(4/5 * 100%);
1230
+ }
1231
+ }
1232
+ .nhui\:sm\:w-full {
1233
+ @media (width >= 40rem) {
1234
+ width: 100%;
1235
+ }
1236
+ }
1237
+ .nhui\:sm\:min-w-\[110px\] {
1238
+ @media (width >= 40rem) {
1239
+ min-width: 110px;
1240
+ }
1241
+ }
1242
+ .nhui\:sm\:flex-col {
1243
+ @media (width >= 40rem) {
1244
+ flex-direction: column;
1245
+ }
1246
+ }
1247
+ .nhui\:sm\:flex-row {
1248
+ @media (width >= 40rem) {
1249
+ flex-direction: row;
1250
+ }
1251
+ }
1252
+ .nhui\:sm\:items-center {
1253
+ @media (width >= 40rem) {
1254
+ align-items: center;
1255
+ }
1256
+ }
1257
+ .nhui\:sm\:justify-between {
1258
+ @media (width >= 40rem) {
1259
+ justify-content: space-between;
1260
+ }
1261
+ }
1262
+ .nhui\:sm\:justify-center {
1263
+ @media (width >= 40rem) {
1264
+ justify-content: center;
1265
+ }
1266
+ }
1267
+ .nhui\:sm\:gap-y-5 {
1268
+ @media (width >= 40rem) {
1269
+ row-gap: calc(var(--nhui-spacing) * 5);
1270
+ }
1271
+ }
1272
+ .nhui\:sm\:p-6 {
1273
+ @media (width >= 40rem) {
1274
+ padding: calc(var(--nhui-spacing) * 6);
1275
+ }
1276
+ }
1277
+ .nhui\:sm\:underline-offset-\[4px\] {
1278
+ @media (width >= 40rem) {
1279
+ text-underline-offset: 4px;
1280
+ }
1281
+ }
1282
+ .nhui\:sm\:transition-all {
1283
+ @media (width >= 40rem) {
1284
+ transition-property: all;
1285
+ transition-timing-function: var(--tw-ease, var(--nhui-default-transition-timing-function));
1286
+ transition-duration: var(--tw-duration, var(--nhui-default-transition-duration));
1287
+ }
1288
+ }
1289
+ .nhui\:sm\:duration-200 {
1290
+ @media (width >= 40rem) {
1291
+ --tw-duration: 200ms;
1292
+ transition-duration: 200ms;
1293
+ }
1294
+ }
1295
+ .nhui\:sm\:duration-200 {
1296
+ @media (width >= 40rem) {
1297
+ animation-duration: 200ms;
1298
+ }
1299
+ }
1300
+ .nhui\:sm\:hover\:underline-offset-\[2px\] {
1301
+ @media (width >= 40rem) {
1302
+ &:hover {
1303
+ @media (hover: hover) {
1304
+ text-underline-offset: 2px;
1305
+ }
1306
+ }
1307
+ }
1308
+ }
1309
+ .nhui\:sm\:max-\[1220px\]\:max-w-\[110px\] {
1310
+ @media (width >= 40rem) {
1311
+ @media (width < 1220px) {
1312
+ max-width: 110px;
1313
+ }
1314
+ }
1315
+ }
1316
+ .nhui\:lg\:flex-row {
1317
+ @media (width >= 64rem) {
1318
+ flex-direction: row;
1319
+ }
1320
+ }
1321
+ .nhui\:lg\:justify-between {
1322
+ @media (width >= 64rem) {
1323
+ justify-content: space-between;
1324
+ }
1325
+ }
1326
+ .nhui\:lg\:border-t {
1327
+ @media (width >= 64rem) {
1328
+ border-top-style: var(--tw-border-style);
1329
+ border-top-width: 1px;
1330
+ }
1331
+ }
1332
+ .nhui\:lg\:border-gray-200 {
1333
+ @media (width >= 64rem) {
1334
+ border-color: var(--nhui-color-gray-200);
1335
+ }
1336
+ }
1337
+ .nhui\:lg\:px-\[50px\] {
1338
+ @media (width >= 64rem) {
1339
+ padding-inline: 50px;
1340
+ }
1341
+ }
1342
+ .nhui\:dark\:border-input {
1343
+ &:is(.dark *) {
1344
+ border-color: var(--nhui-input);
1345
+ }
1346
+ }
1347
+ .nhui\:dark\:bg-destructive\/60 {
1348
+ &:is(.dark *) {
1349
+ background-color: var(--nhui-destructive);
1350
+ @supports (color: color-mix(in lab, red, red)) {
1351
+ background-color: color-mix(in oklab, var(--nhui-destructive) 60%, transparent);
1352
+ }
1353
+ }
1354
+ }
1355
+ .nhui\:dark\:bg-input\/30 {
1356
+ &:is(.dark *) {
1357
+ background-color: var(--nhui-input);
1358
+ @supports (color: color-mix(in lab, red, red)) {
1359
+ background-color: color-mix(in oklab, var(--nhui-input) 30%, transparent);
1360
+ }
1361
+ }
1362
+ }
1363
+ .nhui\:dark\:hover\:bg-accent\/50 {
1364
+ &:is(.dark *) {
1365
+ &:hover {
1366
+ @media (hover: hover) {
1367
+ background-color: var(--nhui-accent);
1368
+ @supports (color: color-mix(in lab, red, red)) {
1369
+ background-color: color-mix(in oklab, var(--nhui-accent) 50%, transparent);
1370
+ }
1371
+ }
1372
+ }
1373
+ }
1374
+ }
1375
+ .nhui\:dark\:hover\:bg-input\/50 {
1376
+ &:is(.dark *) {
1377
+ &:hover {
1378
+ @media (hover: hover) {
1379
+ background-color: var(--nhui-input);
1380
+ @supports (color: color-mix(in lab, red, red)) {
1381
+ background-color: color-mix(in oklab, var(--nhui-input) 50%, transparent);
1382
+ }
1383
+ }
1384
+ }
1385
+ }
1386
+ }
1387
+ .nhui\:dark\:focus-visible\:ring-destructive\/40 {
1388
+ &:is(.dark *) {
1389
+ &:focus-visible {
1390
+ --tw-ring-color: var(--nhui-destructive);
1391
+ @supports (color: color-mix(in lab, red, red)) {
1392
+ --tw-ring-color: color-mix(in oklab, var(--nhui-destructive) 40%, transparent);
1393
+ }
1394
+ }
1395
+ }
1396
+ }
1397
+ .nhui\:dark\:aria-invalid\:ring-destructive\/40 {
1398
+ &:is(.dark *) {
1399
+ &[aria-invalid=true] {
1400
+ --tw-ring-color: var(--nhui-destructive);
1401
+ @supports (color: color-mix(in lab, red, red)) {
1402
+ --tw-ring-color: color-mix(in oklab, var(--nhui-destructive) 40%, transparent);
1403
+ }
1404
+ }
1405
+ }
1406
+ }
1407
+ .nhui\:\[\&_svg\]\:pointer-events-none {
1408
+ & svg {
1409
+ pointer-events: none;
1410
+ }
1411
+ }
1412
+ .nhui\:\[\&_svg\]\:shrink-0 {
1413
+ & svg {
1414
+ flex-shrink: 0;
1415
+ }
1416
+ }
1417
+ .nhui\:\[\&_svg\:not\(\[class\*\=size-\]\)\]\:size-4 {
1418
+ & svg:not([class*=size-]) {
1419
+ width: calc(var(--nhui-spacing) * 4);
1420
+ height: calc(var(--nhui-spacing) * 4);
1421
+ }
1422
+ }
1423
+ }
1424
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
1425
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
1426
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
1427
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
1428
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
1429
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
1430
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1431
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1432
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
1433
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1434
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1435
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
1436
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1437
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1438
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
1439
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1440
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1441
+ :root {
1442
+ --nhui-background: oklch(1 0 0);
1443
+ --nhui-foreground: oklch(0.145 0 0);
1444
+ --nhui-card: oklch(1 0 0);
1445
+ --nhui-card-foreground: oklch(0.145 0 0);
1446
+ --nhui-popover: oklch(1 0 0);
1447
+ --nhui-popover-foreground: oklch(0.145 0 0);
1448
+ --nhui-primary: oklch(0.205 0 0);
1449
+ --nhui-primary-foreground: oklch(0.985 0 0);
1450
+ --nhui-secondary: oklch(0.97 0 0);
1451
+ --nhui-secondary-foreground: oklch(0.205 0 0);
1452
+ --nhui-muted: oklch(0.97 0 0);
1453
+ --nhui-muted-foreground: oklch(0.556 0 0);
1454
+ --nhui-accent: oklch(0.97 0 0);
1455
+ --nhui-accent-foreground: oklch(0.205 0 0);
1456
+ --nhui-destructive: oklch(0.577 0.245 27.325);
1457
+ --nhui-destructive-foreground: oklch(0.577 0.245 27.325);
1458
+ --nhui-border: oklch(0.922 0 0);
1459
+ --nhui-input: oklch(0.922 0 0);
1460
+ --nhui-ring: oklch(0.708 0 0);
1461
+ --nhui-chart-1: oklch(0.646 0.222 41.116);
1462
+ --nhui-chart-2: oklch(0.6 0.118 184.704);
1463
+ --nhui-chart-3: oklch(0.398 0.07 227.392);
1464
+ --nhui-chart-4: oklch(0.828 0.189 84.429);
1465
+ --nhui-chart-5: oklch(0.769 0.188 70.08);
1466
+ --nhui-radius: 0.625rem;
1467
+ --nhui-sidebar: oklch(0.985 0 0);
1468
+ --nhui-sidebar-foreground: oklch(0.145 0 0);
1469
+ --nhui-sidebar-primary: oklch(0.205 0 0);
1470
+ --nhui-sidebar-primary-foreground: oklch(0.985 0 0);
1471
+ --nhui-sidebar-accent: oklch(0.97 0 0);
1472
+ --nhui-sidebar-accent-foreground: oklch(0.205 0 0);
1473
+ --nhui-sidebar-border: oklch(0.922 0 0);
1474
+ --nhui-sidebar-ring: oklch(0.708 0 0);
1475
+ }
1476
+ @layer base {
1477
+ * {
1478
+ border-color: var(--nhui-border);
1479
+ outline-color: var(--nhui-ring);
1480
+ @supports (color: color-mix(in lab, red, red)) {
1481
+ outline-color: color-mix(in oklab, var(--nhui-ring) 50%, transparent);
1482
+ }
1483
+ }
1484
+ body {
1485
+ background-color: var(--nhui-background);
1486
+ color: var(--nhui-foreground);
1487
+ }
1488
+ }
1489
+ @keyframes enter {
1490
+ from {
1491
+ opacity: var(--tw-enter-opacity, 1);
1492
+ transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
1493
+ }
1494
+ }
1495
+ @keyframes exit {
1496
+ to {
1497
+ opacity: var(--tw-exit-opacity, 1);
1498
+ transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
1499
+ }
1500
+ }
1501
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1502
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1503
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
1504
+ @property --tw-space-x-reverse { syntax: "*"; inherits: false; initial-value: 0; }
1505
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
1506
+ @property --tw-leading { syntax: "*"; inherits: false; }
1507
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
1508
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1509
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
1510
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1511
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1512
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
1513
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
1514
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
1515
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1516
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
1517
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1518
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
1519
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
1520
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
1521
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1522
+ @property --tw-duration { syntax: "*"; inherits: false; }
1523
+ @keyframes pulse {
1524
+ 50% {
1525
+ opacity: 0.5;
1526
+ }
1527
+ }
1528
+ @keyframes enter {
1529
+ from {
1530
+ opacity: var(--tw-enter-opacity,1);
1531
+ transform: translate3d(var(--tw-enter-translate-x,0), var(--tw-enter-translate-y,0), 0)scale3d(var(--tw-enter-scale,1), var(--tw-enter-scale,1), var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
1532
+ filter: blur(var(--tw-enter-blur,0));
1533
+ }
1534
+ }
1535
+ @keyframes exit {
1536
+ to {
1537
+ opacity: var(--tw-exit-opacity,1);
1538
+ transform: translate3d(var(--tw-exit-translate-x,0), var(--tw-exit-translate-y,0), 0)scale3d(var(--tw-exit-scale,1), var(--tw-exit-scale,1), var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
1539
+ filter: blur(var(--tw-exit-blur,0));
1540
+ }
1541
+ }
1542
+ @keyframes enter {
1543
+ from {
1544
+ opacity: var(--tw-enter-opacity, 1);
1545
+ transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
1546
+ }
1547
+ }
1548
+ @keyframes exit {
1549
+ to {
1550
+ opacity: var(--tw-exit-opacity, 1);
1551
+ transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
1552
+ }
1553
+ }
1554
+ @layer properties {
1555
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1556
+ *,
1557
+ ::before,
1558
+ ::after,
1559
+ ::backdrop {
1560
+ --tw-translate-x: 0;
1561
+ --tw-translate-y: 0;
1562
+ --tw-translate-z: 0;
1563
+ --tw-space-x-reverse: 0;
1564
+ --tw-border-style: solid;
1565
+ --tw-leading: initial;
1566
+ --tw-font-weight: initial;
1567
+ --tw-shadow: 0 0 #0000;
1568
+ --tw-shadow-color: initial;
1569
+ --tw-shadow-alpha: 100%;
1570
+ --tw-inset-shadow: 0 0 #0000;
1571
+ --tw-inset-shadow-color: initial;
1572
+ --tw-inset-shadow-alpha: 100%;
1573
+ --tw-ring-color: initial;
1574
+ --tw-ring-shadow: 0 0 #0000;
1575
+ --tw-inset-ring-color: initial;
1576
+ --tw-inset-ring-shadow: 0 0 #0000;
1577
+ --tw-ring-inset: initial;
1578
+ --tw-ring-offset-width: 0px;
1579
+ --tw-ring-offset-color: #fff;
1580
+ --tw-ring-offset-shadow: 0 0 #0000;
1581
+ --tw-duration: initial;
1582
+ --tw-animation-delay: 0s;
1583
+ --tw-animation-direction: normal;
1584
+ --tw-animation-duration: initial;
1585
+ --tw-animation-fill-mode: none;
1586
+ --tw-animation-iteration-count: 1;
1587
+ --tw-enter-blur: 0;
1588
+ --tw-enter-opacity: 1;
1589
+ --tw-enter-rotate: 0;
1590
+ --tw-enter-scale: 1;
1591
+ --tw-enter-translate-x: 0;
1592
+ --tw-enter-translate-y: 0;
1593
+ --tw-exit-blur: 0;
1594
+ --tw-exit-opacity: 1;
1595
+ --tw-exit-rotate: 0;
1596
+ --tw-exit-scale: 1;
1597
+ --tw-exit-translate-x: 0;
1598
+ --tw-exit-translate-y: 0;
1599
+ }
1600
+ }
1601
+ }
1602
+ /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
1603
+ /*# sourceMappingURL=index.css.map */