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