@rovula/ui 0.0.4 → 0.0.6

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 (84) hide show
  1. package/dist/cjs/bundle.css +1477 -0
  2. package/dist/cjs/bundle.js +2 -0
  3. package/dist/cjs/bundle.js.map +1 -0
  4. package/dist/cjs/types/components/Button/Button.d.ts +15 -0
  5. package/dist/cjs/types/components/Button/Button.styles.d.ts +7 -0
  6. package/dist/cjs/types/components/Button/Buttons.stories.d.ts +375 -0
  7. package/dist/cjs/types/components/Text/Text.d.ts +12 -0
  8. package/dist/cjs/types/components/Text/Text.stories.d.ts +35 -0
  9. package/dist/cjs/types/components/TextInput/TextInput.d.ts +19 -0
  10. package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +338 -0
  11. package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +26 -0
  12. package/dist/cjs/types/index.d.ts +7 -0
  13. package/dist/components/Button/Button.js +31 -0
  14. package/dist/components/Button/Button.styles.js +90 -0
  15. package/dist/components/Button/Buttons.stories.js +66 -0
  16. package/dist/components/Form/Form.js +106 -0
  17. package/dist/components/Form/Text.js +6 -0
  18. package/dist/components/Form/TextInput.js +6 -0
  19. package/dist/components/Table/Table.js +6 -0
  20. package/dist/components/Tabs/Tabs.js +8 -0
  21. package/dist/components/Text/Text.js +6 -0
  22. package/dist/components/Text/Text.stories.js +73 -0
  23. package/dist/components/TextInput/TextInput.js +61 -0
  24. package/dist/components/TextInput/TextInput.stories.js +39 -0
  25. package/dist/components/TextInput/TextInput.styles.js +155 -0
  26. package/dist/esm/bundle.css +1477 -0
  27. package/dist/esm/bundle.js +2 -0
  28. package/dist/esm/bundle.js.map +1 -0
  29. package/dist/esm/types/components/Button/Button.d.ts +15 -0
  30. package/dist/esm/types/components/Button/Button.styles.d.ts +7 -0
  31. package/dist/esm/types/components/Button/Buttons.stories.d.ts +375 -0
  32. package/dist/esm/types/components/Form/Form.d.ts +12 -0
  33. package/dist/esm/types/components/Form/Text.d.ts +9 -0
  34. package/dist/esm/types/components/Form/TextInput.d.ts +11 -0
  35. package/dist/esm/types/components/Table/Table.d.ts +11 -0
  36. package/dist/esm/types/components/Tabs/Tabs.d.ts +11 -0
  37. package/dist/esm/types/components/Text/Text.d.ts +12 -0
  38. package/dist/esm/types/components/Text/Text.stories.d.ts +35 -0
  39. package/dist/esm/types/components/TextInput/TextInput.d.ts +19 -0
  40. package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +338 -0
  41. package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +26 -0
  42. package/dist/esm/types/index.d.ts +7 -0
  43. package/dist/esm/types/utils/datetime.d.ts +9 -0
  44. package/dist/index.d.ts +67 -0
  45. package/dist/index.js +12 -0
  46. package/dist/src/theme/global.css +1825 -0
  47. package/dist/theme/global.css +149 -0
  48. package/dist/theme/main-preset.js +159 -0
  49. package/dist/theme/plugins/utilities/typography.js +69 -0
  50. package/dist/theme/presets/colors.js +166 -0
  51. package/dist/utils/datetime.js +30 -0
  52. package/package.json +41 -10
  53. package/src/components/Button/Button.styles.ts +98 -0
  54. package/src/components/Button/Button.tsx +48 -18
  55. package/src/components/Button/Buttons.stories.tsx +120 -0
  56. package/src/components/Text/Text.stories.tsx +112 -0
  57. package/src/components/Text/Text.tsx +59 -0
  58. package/src/components/TextInput/TextInput.stories.tsx +44 -0
  59. package/src/components/TextInput/TextInput.styles.ts +177 -0
  60. package/src/components/TextInput/TextInput.tsx +119 -0
  61. package/src/index.ts +21 -0
  62. package/src/stories/Typography.mdx +160 -0
  63. package/src/theme/global.css +149 -0
  64. package/src/theme/main-preset.js +159 -0
  65. package/src/theme/plugins/utilities/typography.js +69 -0
  66. package/src/theme/presets/colors.js +166 -0
  67. package/dist/main.d.ts +0 -7
  68. package/dist/main.js +0 -25
  69. package/dist/src/components/Button/Button.d.ts +0 -12
  70. package/dist/src/components/Button/Button.js +0 -10
  71. package/dist/src/components/Form/Form.js +0 -91
  72. package/dist/src/components/Form/Text.js +0 -10
  73. package/dist/src/components/Form/TextInput.js +0 -10
  74. package/dist/src/components/Table/Table.js +0 -13
  75. package/dist/src/components/Tabs/Tabs.js +0 -33
  76. package/dist/src/style.css +0 -3
  77. package/dist/src/utils/datetime.js +0 -37
  78. package/src/style.css +0 -3
  79. /package/dist/{src → cjs/types}/components/Form/Form.d.ts +0 -0
  80. /package/dist/{src → cjs/types}/components/Form/Text.d.ts +0 -0
  81. /package/dist/{src → cjs/types}/components/Form/TextInput.d.ts +0 -0
  82. /package/dist/{src → cjs/types}/components/Table/Table.d.ts +0 -0
  83. /package/dist/{src → cjs/types}/components/Tabs/Tabs.d.ts +0 -0
  84. /package/dist/{src → cjs/types}/utils/datetime.d.ts +0 -0
@@ -0,0 +1,1825 @@
1
+ /*
2
+ ! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
3
+ */
4
+
5
+ /*
6
+ 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
7
+ 2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
8
+ */
9
+
10
+ *,
11
+ ::before,
12
+ ::after {
13
+ box-sizing: border-box;
14
+ /* 1 */
15
+ border-width: 0;
16
+ /* 2 */
17
+ border-style: solid;
18
+ /* 2 */
19
+ border-color: #e5e7eb;
20
+ /* 2 */
21
+ }
22
+
23
+ ::before,
24
+ ::after {
25
+ --tw-content: '';
26
+ }
27
+
28
+ /*
29
+ 1. Use a consistent sensible line-height in all browsers.
30
+ 2. Prevent adjustments of font size after orientation changes in iOS.
31
+ 3. Use a more readable tab size.
32
+ 4. Use the user's configured `sans` font-family by default.
33
+ 5. Use the user's configured `sans` font-feature-settings by default.
34
+ 6. Use the user's configured `sans` font-variation-settings by default.
35
+ 7. Disable tap highlights on iOS
36
+ */
37
+
38
+ html,
39
+ :host {
40
+ line-height: 1.5;
41
+ /* 1 */
42
+ -webkit-text-size-adjust: 100%;
43
+ /* 2 */
44
+ -moz-tab-size: 4;
45
+ /* 3 */
46
+ -o-tab-size: 4;
47
+ tab-size: 4;
48
+ /* 3 */
49
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
50
+ /* 4 */
51
+ font-feature-settings: normal;
52
+ /* 5 */
53
+ font-variation-settings: normal;
54
+ /* 6 */
55
+ -webkit-tap-highlight-color: transparent;
56
+ /* 7 */
57
+ }
58
+
59
+ /*
60
+ 1. Remove the margin in all browsers.
61
+ 2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
62
+ */
63
+
64
+ body {
65
+ margin: 0;
66
+ /* 1 */
67
+ line-height: inherit;
68
+ /* 2 */
69
+ }
70
+
71
+ /*
72
+ 1. Add the correct height in Firefox.
73
+ 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
74
+ 3. Ensure horizontal rules are visible by default.
75
+ */
76
+
77
+ hr {
78
+ height: 0;
79
+ /* 1 */
80
+ color: inherit;
81
+ /* 2 */
82
+ border-top-width: 1px;
83
+ /* 3 */
84
+ }
85
+
86
+ /*
87
+ Add the correct text decoration in Chrome, Edge, and Safari.
88
+ */
89
+
90
+ abbr:where([title]) {
91
+ -webkit-text-decoration: underline dotted;
92
+ text-decoration: underline dotted;
93
+ }
94
+
95
+ /*
96
+ Remove the default font size and weight for headings.
97
+ */
98
+
99
+ h1,
100
+ h2,
101
+ h3,
102
+ h4,
103
+ h5,
104
+ h6 {
105
+ font-size: inherit;
106
+ font-weight: inherit;
107
+ }
108
+
109
+ /*
110
+ Reset links to optimize for opt-in styling instead of opt-out.
111
+ */
112
+
113
+ a {
114
+ color: inherit;
115
+ text-decoration: inherit;
116
+ }
117
+
118
+ /*
119
+ Add the correct font weight in Edge and Safari.
120
+ */
121
+
122
+ b,
123
+ strong {
124
+ font-weight: bolder;
125
+ }
126
+
127
+ /*
128
+ 1. Use the user's configured `mono` font-family by default.
129
+ 2. Use the user's configured `mono` font-feature-settings by default.
130
+ 3. Use the user's configured `mono` font-variation-settings by default.
131
+ 4. Correct the odd `em` font sizing in all browsers.
132
+ */
133
+
134
+ code,
135
+ kbd,
136
+ samp,
137
+ pre {
138
+ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
139
+ /* 1 */
140
+ font-feature-settings: normal;
141
+ /* 2 */
142
+ font-variation-settings: normal;
143
+ /* 3 */
144
+ font-size: 1em;
145
+ /* 4 */
146
+ }
147
+
148
+ /*
149
+ Add the correct font size in all browsers.
150
+ */
151
+
152
+ small {
153
+ font-size: 80%;
154
+ }
155
+
156
+ /*
157
+ Prevent `sub` and `sup` elements from affecting the line height in all browsers.
158
+ */
159
+
160
+ sub,
161
+ sup {
162
+ font-size: 75%;
163
+ line-height: 0;
164
+ position: relative;
165
+ vertical-align: baseline;
166
+ }
167
+
168
+ sub {
169
+ bottom: -0.25em;
170
+ }
171
+
172
+ sup {
173
+ top: -0.5em;
174
+ }
175
+
176
+ /*
177
+ 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)
178
+ 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)
179
+ 3. Remove gaps between table borders by default.
180
+ */
181
+
182
+ table {
183
+ text-indent: 0;
184
+ /* 1 */
185
+ border-color: inherit;
186
+ /* 2 */
187
+ border-collapse: collapse;
188
+ /* 3 */
189
+ }
190
+
191
+ /*
192
+ 1. Change the font styles in all browsers.
193
+ 2. Remove the margin in Firefox and Safari.
194
+ 3. Remove default padding in all browsers.
195
+ */
196
+
197
+ button,
198
+ input,
199
+ optgroup,
200
+ select,
201
+ textarea {
202
+ font-family: inherit;
203
+ /* 1 */
204
+ font-feature-settings: inherit;
205
+ /* 1 */
206
+ font-variation-settings: inherit;
207
+ /* 1 */
208
+ font-size: 100%;
209
+ /* 1 */
210
+ font-weight: inherit;
211
+ /* 1 */
212
+ line-height: inherit;
213
+ /* 1 */
214
+ letter-spacing: inherit;
215
+ /* 1 */
216
+ color: inherit;
217
+ /* 1 */
218
+ margin: 0;
219
+ /* 2 */
220
+ padding: 0;
221
+ /* 3 */
222
+ }
223
+
224
+ /*
225
+ Remove the inheritance of text transform in Edge and Firefox.
226
+ */
227
+
228
+ button,
229
+ select {
230
+ text-transform: none;
231
+ }
232
+
233
+ /*
234
+ 1. Correct the inability to style clickable types in iOS and Safari.
235
+ 2. Remove default button styles.
236
+ */
237
+
238
+ button,
239
+ input:where([type='button']),
240
+ input:where([type='reset']),
241
+ input:where([type='submit']) {
242
+ -webkit-appearance: button;
243
+ /* 1 */
244
+ background-color: transparent;
245
+ /* 2 */
246
+ background-image: none;
247
+ /* 2 */
248
+ }
249
+
250
+ /*
251
+ Use the modern Firefox focus style for all focusable elements.
252
+ */
253
+
254
+ :-moz-focusring {
255
+ outline: auto;
256
+ }
257
+
258
+ /*
259
+ Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
260
+ */
261
+
262
+ :-moz-ui-invalid {
263
+ box-shadow: none;
264
+ }
265
+
266
+ /*
267
+ Add the correct vertical alignment in Chrome and Firefox.
268
+ */
269
+
270
+ progress {
271
+ vertical-align: baseline;
272
+ }
273
+
274
+ /*
275
+ Correct the cursor style of increment and decrement buttons in Safari.
276
+ */
277
+
278
+ ::-webkit-inner-spin-button,
279
+ ::-webkit-outer-spin-button {
280
+ height: auto;
281
+ }
282
+
283
+ /*
284
+ 1. Correct the odd appearance in Chrome and Safari.
285
+ 2. Correct the outline style in Safari.
286
+ */
287
+
288
+ [type='search'] {
289
+ -webkit-appearance: textfield;
290
+ /* 1 */
291
+ outline-offset: -2px;
292
+ /* 2 */
293
+ }
294
+
295
+ /*
296
+ Remove the inner padding in Chrome and Safari on macOS.
297
+ */
298
+
299
+ ::-webkit-search-decoration {
300
+ -webkit-appearance: none;
301
+ }
302
+
303
+ /*
304
+ 1. Correct the inability to style clickable types in iOS and Safari.
305
+ 2. Change font properties to `inherit` in Safari.
306
+ */
307
+
308
+ ::-webkit-file-upload-button {
309
+ -webkit-appearance: button;
310
+ /* 1 */
311
+ font: inherit;
312
+ /* 2 */
313
+ }
314
+
315
+ /*
316
+ Add the correct display in Chrome and Safari.
317
+ */
318
+
319
+ summary {
320
+ display: list-item;
321
+ }
322
+
323
+ /*
324
+ Removes the default spacing and border for appropriate elements.
325
+ */
326
+
327
+ blockquote,
328
+ dl,
329
+ dd,
330
+ h1,
331
+ h2,
332
+ h3,
333
+ h4,
334
+ h5,
335
+ h6,
336
+ hr,
337
+ figure,
338
+ p,
339
+ pre {
340
+ margin: 0;
341
+ }
342
+
343
+ fieldset {
344
+ margin: 0;
345
+ padding: 0;
346
+ }
347
+
348
+ legend {
349
+ padding: 0;
350
+ }
351
+
352
+ ol,
353
+ ul,
354
+ menu {
355
+ list-style: none;
356
+ margin: 0;
357
+ padding: 0;
358
+ }
359
+
360
+ /*
361
+ Reset default styling for dialogs.
362
+ */
363
+
364
+ dialog {
365
+ padding: 0;
366
+ }
367
+
368
+ /*
369
+ Prevent resizing textareas horizontally by default.
370
+ */
371
+
372
+ textarea {
373
+ resize: vertical;
374
+ }
375
+
376
+ /*
377
+ 1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
378
+ 2. Set the default placeholder color to the user's configured gray 400 color.
379
+ */
380
+
381
+ input::-moz-placeholder, textarea::-moz-placeholder {
382
+ opacity: 1;
383
+ /* 1 */
384
+ color: #9ca3af;
385
+ /* 2 */
386
+ }
387
+
388
+ input::placeholder,
389
+ textarea::placeholder {
390
+ opacity: 1;
391
+ /* 1 */
392
+ color: #9ca3af;
393
+ /* 2 */
394
+ }
395
+
396
+ /*
397
+ Set the default cursor for buttons.
398
+ */
399
+
400
+ button,
401
+ [role="button"] {
402
+ cursor: pointer;
403
+ }
404
+
405
+ /*
406
+ Make sure disabled buttons don't get the pointer cursor.
407
+ */
408
+
409
+ :disabled {
410
+ cursor: default;
411
+ }
412
+
413
+ /*
414
+ 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
415
+ 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
416
+ This can trigger a poorly considered lint error in some tools but is included by design.
417
+ */
418
+
419
+ img,
420
+ svg,
421
+ video,
422
+ canvas,
423
+ audio,
424
+ iframe,
425
+ embed,
426
+ object {
427
+ display: block;
428
+ /* 1 */
429
+ vertical-align: middle;
430
+ /* 2 */
431
+ }
432
+
433
+ /*
434
+ Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
435
+ */
436
+
437
+ img,
438
+ video {
439
+ max-width: 100%;
440
+ height: auto;
441
+ }
442
+
443
+ /* Make elements with the HTML hidden attribute stay hidden by default */
444
+
445
+ [hidden] {
446
+ display: none;
447
+ }
448
+
449
+ :root {
450
+ --white: 255 255 255;
451
+ /* #ffffff */
452
+ --black: 28 28 28;
453
+ /* #1c1c1c */
454
+ --theme-50: 232 242 255;
455
+ /* #E8F2FF -> 232 242 255 */
456
+ --theme-100: 213 230 255;
457
+ /* #D5E6FF -> 213 230 255 */
458
+ --theme-200: 179 207 255;
459
+ /* #B3CFFF -> 179 207 255 */
460
+ --theme-300: 136 174 255;
461
+ /* #85AEFF -> 136 174 255 */
462
+ --theme-400: 86 126 255;
463
+ /* #567EFF -> 86 126 255 */
464
+ --theme-500: 47 78 255;
465
+ /* #2F4EFF -> 47 78 255 */
466
+ --theme-600: 12 26 255;
467
+ /* #0C1AFF -> 12 26 255 */
468
+ --theme-700: 0 12 255;
469
+ /* #000CFF -> 0 12 255 */
470
+ --theme-800: 6 18 205;
471
+ /* #0612CD -> 6 18 205 */
472
+ --theme-900: 16 29 159;
473
+ /* #101D9F -> 16 29 159 */
474
+ --theme-default: var(--theme-100);
475
+ --theme-foreground: var(--white);
476
+ --primary-5: 242 242 246;
477
+ /* #F2F2F6 */
478
+ --primary-10: 230 230 236;
479
+ /* #E6E6EC */
480
+ --primary-20: 204 204 218;
481
+ /* #CCCCDA */
482
+ --primary-30: 179 179 199;
483
+ /* #B3B3C7 */
484
+ --primary-40: 153 153 180;
485
+ /* #9999B4 */
486
+ --primary-50: 128 128 161;
487
+ /* #8080A1 */
488
+ --primary-60: 103 103 143;
489
+ /* #67678F */
490
+ --primary-70: 77 77 124;
491
+ /* #4D4D7C */
492
+ --primary-80: 52 52 105;
493
+ /* #343469 */
494
+ --primary-90: 26 26 87;
495
+ /* #1A1A57 */
496
+ --primary-100: 1 1 68;
497
+ /* #010144 */
498
+ --primary-110: 1 1 61;
499
+ /* #01013D */
500
+ --primary-120: 1 1 54;
501
+ /* #010136 */
502
+ --primary-130: 1 1 48;
503
+ /* #010130 */
504
+ --primary-140: 1 1 41;
505
+ /* #010129 */
506
+ --primary-150: 1 1 34;
507
+ /* #010122 */
508
+ --primary-default: var(--primary-100);
509
+ --primary-foreground: var(--white);
510
+ --secondary-5: 254 254 255;
511
+ /* #FEFEFF */
512
+ --secondary-10: 253 254 255;
513
+ /* #FDFEFF */
514
+ --secondary-20: 251 252 255;
515
+ /* #FBFCFF */
516
+ --secondary-30: 249 251 255;
517
+ /* #F9FBFF */
518
+ --secondary-40: 247 249 255;
519
+ /* #F7F9FF */
520
+ --secondary-50: 245 248 255;
521
+ /* #F5F8FF */
522
+ --secondary-60: 242 247 255;
523
+ /* #F2F7FF */
524
+ --secondary-70: 240 245 255;
525
+ /* #F0F5FF */
526
+ --secondary-80: 238 244 255;
527
+ /* #EEF4FF */
528
+ --secondary-90: 236 242 255;
529
+ /* #ECF2FF */
530
+ --secondary-100: 234 241 255;
531
+ /* #EAF1FF */
532
+ --secondary-110: 211 217 229;
533
+ /* #D3D9E5 */
534
+ --secondary-120: 187 193 204;
535
+ /* #BBC1CC */
536
+ --secondary-130: 164 169 178;
537
+ /* #A4A9B2 */
538
+ --secondary-140: 140 145 153;
539
+ /* #8C9199 */
540
+ --secondary-150: 117 121 128;
541
+ /* #757980 */
542
+ --secondary-default: var(--secondary-100);
543
+ --secondary-foreground: 1 1 68;
544
+ --tertiary-5: 245 246 255;
545
+ /* #F5F6FF */
546
+ --tertiary-10: 234 237 255;
547
+ /* #EAEDFF */
548
+ --tertiary-20: 213 220 255;
549
+ /* #D5DCFF */
550
+ --tertiary-30: 193 202 255;
551
+ /* #C1CAFF */
552
+ --tertiary-40: 172 184 255;
553
+ /* #ACB8FF */
554
+ --tertiary-50: 151 166 255;
555
+ /* #97A6FF */
556
+ --tertiary-60: 132 149 255;
557
+ /* #8295FF */
558
+ --tertiary-70: 109 131 255;
559
+ /* #6D83FF */
560
+ --tertiary-80: 89 113 255;
561
+ /* #5971FF */
562
+ --tertiary-90: 68 96 255;
563
+ /* #4460FF */
564
+ --tertiary-100: 47 78 255;
565
+ /* #2F4EFF */
566
+ --tertiary-110: 42 70 229;
567
+ /* #2A46E5 */
568
+ --tertiary-120: 38 62 204;
569
+ /* #263ECC */
570
+ --tertiary-130: 33 55 178;
571
+ /* #2137B2 */
572
+ --tertiary-140: 28 47 153;
573
+ /* #1C2F99 */
574
+ --tertiary-150: 24 39 128;
575
+ /* #182780 */
576
+ --tertiary-default: var(--tertiary-100);
577
+ --tertiary-foreground: var(--white);
578
+ --grey-5: 250 250 250;
579
+ /* #FAFAFA */
580
+ --grey-10: 245 245 245;
581
+ /* #F5F5F5 */
582
+ --grey-20: 236 236 236;
583
+ /* #ECECEC */
584
+ --grey-30: 226 226 226;
585
+ /* #E2E2E2 */
586
+ --grey-40: 216 216 216;
587
+ /* #D8D8D8 */
588
+ --grey-50: 207 207 207;
589
+ /* #CFCFCF */
590
+ --grey-60: 197 197 197;
591
+ /* #C5C5C5 */
592
+ --grey-70: 187 187 187;
593
+ /* #BBBBBB */
594
+ --grey-80: 177 177 177;
595
+ /* #B1B1B1 */
596
+ --grey-90: 168 168 168;
597
+ /* #A8A8A8 */
598
+ --grey-100: 158 158 158;
599
+ /* #9E9E9E */
600
+ --grey-110: 142 142 142;
601
+ /* #8E8E8E */
602
+ --grey-120: 126 126 126;
603
+ /* #7E7E7E */
604
+ --grey-130: 111 111 111;
605
+ /* #6F6F6F */
606
+ --grey-140: 95 95 95;
607
+ /* #5F5F5F */
608
+ --grey-150: 79 79 79;
609
+ /* #4F4F4F */
610
+ --grey-foreground: 1 1 68;
611
+ --grey2-100: 249 250 251;
612
+ /* #F9FAFB */
613
+ --grey2-200: 244 246 248;
614
+ /* #F4F6F8 */
615
+ --grey2-300: 223 227 232;
616
+ /* #DFE3E8 */
617
+ --grey2-400: 196 205 213;
618
+ /* #C4CDD5 */
619
+ --grey2-500: 145 158 171;
620
+ /* #919EAB */
621
+ --grey2-600: 99 115 129;
622
+ /* #637381 */
623
+ --grey2-700: 69 79 91;
624
+ /* #454F5B */
625
+ --grey2-800: 33 43 54;
626
+ /* #212B36 */
627
+ --grey2-900: 22 28 36;
628
+ /* #161C24 */
629
+ --grey-default: var(--grey-100);
630
+ --grey-foreground: var(--white);
631
+ --info-100: 41 152 255;
632
+ /* #2998FF */
633
+ --info-120: 33 122 204;
634
+ /* #217ACC */
635
+ --info-default: var(--info-100);
636
+ --info-foreground: var(--white);
637
+ --success-100: 84 214 44;
638
+ /* #54D62C */
639
+ --success-120: 67 171 35;
640
+ /* #43AB23 */
641
+ --success-default: var(--success-100);
642
+ --success-foreground: var(--white);
643
+ --warning-100: 255 193 7;
644
+ /* #FFC107 */
645
+ --warning-120: 204 154 6;
646
+ /* #CC9A06 */
647
+ --warning-default: var(--warning-100);
648
+ --warning-foreground: var(--white);
649
+ --error-100: 255 77 53;
650
+ /* #FF4D35 */
651
+ --error-120: 204 62 42;
652
+ /* #CC3E2A */
653
+ --error-default: var(--error-100);
654
+ --error-foreground: var(--white);
655
+ /* Button */
656
+ --btn-rounded-sm: 10px;
657
+ --btn-rounded-md: 12px;
658
+ --btn-rounded-lg: 16px;
659
+ /* Input */
660
+ --input-default-text-color: 164 169 178;
661
+ --input-default-stroke-color: 231 231 231;
662
+ --input-active-text-color: 29 30 39;
663
+ --input-active-stroke-color: 208 208 208;
664
+ --input-disabled-text-color: 196 199 205;
665
+ --input-disabled-stroke-color: 239 239 239;
666
+ --input-disabled-background-color: 247 247 247;
667
+ --input-label-background-color: 249 251 255;
668
+ }
669
+
670
+ *, ::before, ::after {
671
+ --tw-border-spacing-x: 0;
672
+ --tw-border-spacing-y: 0;
673
+ --tw-translate-x: 0;
674
+ --tw-translate-y: 0;
675
+ --tw-rotate: 0;
676
+ --tw-skew-x: 0;
677
+ --tw-skew-y: 0;
678
+ --tw-scale-x: 1;
679
+ --tw-scale-y: 1;
680
+ --tw-pan-x: ;
681
+ --tw-pan-y: ;
682
+ --tw-pinch-zoom: ;
683
+ --tw-scroll-snap-strictness: proximity;
684
+ --tw-gradient-from-position: ;
685
+ --tw-gradient-via-position: ;
686
+ --tw-gradient-to-position: ;
687
+ --tw-ordinal: ;
688
+ --tw-slashed-zero: ;
689
+ --tw-numeric-figure: ;
690
+ --tw-numeric-spacing: ;
691
+ --tw-numeric-fraction: ;
692
+ --tw-ring-inset: ;
693
+ --tw-ring-offset-width: 0px;
694
+ --tw-ring-offset-color: #fff;
695
+ --tw-ring-color: rgb(59 130 246 / 0.5);
696
+ --tw-ring-offset-shadow: 0 0 #0000;
697
+ --tw-ring-shadow: 0 0 #0000;
698
+ --tw-shadow: 0 0 #0000;
699
+ --tw-shadow-colored: 0 0 #0000;
700
+ --tw-blur: ;
701
+ --tw-brightness: ;
702
+ --tw-contrast: ;
703
+ --tw-grayscale: ;
704
+ --tw-hue-rotate: ;
705
+ --tw-invert: ;
706
+ --tw-saturate: ;
707
+ --tw-sepia: ;
708
+ --tw-drop-shadow: ;
709
+ --tw-backdrop-blur: ;
710
+ --tw-backdrop-brightness: ;
711
+ --tw-backdrop-contrast: ;
712
+ --tw-backdrop-grayscale: ;
713
+ --tw-backdrop-hue-rotate: ;
714
+ --tw-backdrop-invert: ;
715
+ --tw-backdrop-opacity: ;
716
+ --tw-backdrop-saturate: ;
717
+ --tw-backdrop-sepia: ;
718
+ --tw-contain-size: ;
719
+ --tw-contain-layout: ;
720
+ --tw-contain-paint: ;
721
+ --tw-contain-style: ;
722
+ }
723
+
724
+ ::backdrop {
725
+ --tw-border-spacing-x: 0;
726
+ --tw-border-spacing-y: 0;
727
+ --tw-translate-x: 0;
728
+ --tw-translate-y: 0;
729
+ --tw-rotate: 0;
730
+ --tw-skew-x: 0;
731
+ --tw-skew-y: 0;
732
+ --tw-scale-x: 1;
733
+ --tw-scale-y: 1;
734
+ --tw-pan-x: ;
735
+ --tw-pan-y: ;
736
+ --tw-pinch-zoom: ;
737
+ --tw-scroll-snap-strictness: proximity;
738
+ --tw-gradient-from-position: ;
739
+ --tw-gradient-via-position: ;
740
+ --tw-gradient-to-position: ;
741
+ --tw-ordinal: ;
742
+ --tw-slashed-zero: ;
743
+ --tw-numeric-figure: ;
744
+ --tw-numeric-spacing: ;
745
+ --tw-numeric-fraction: ;
746
+ --tw-ring-inset: ;
747
+ --tw-ring-offset-width: 0px;
748
+ --tw-ring-offset-color: #fff;
749
+ --tw-ring-color: rgb(59 130 246 / 0.5);
750
+ --tw-ring-offset-shadow: 0 0 #0000;
751
+ --tw-ring-shadow: 0 0 #0000;
752
+ --tw-shadow: 0 0 #0000;
753
+ --tw-shadow-colored: 0 0 #0000;
754
+ --tw-blur: ;
755
+ --tw-brightness: ;
756
+ --tw-contrast: ;
757
+ --tw-grayscale: ;
758
+ --tw-hue-rotate: ;
759
+ --tw-invert: ;
760
+ --tw-saturate: ;
761
+ --tw-sepia: ;
762
+ --tw-drop-shadow: ;
763
+ --tw-backdrop-blur: ;
764
+ --tw-backdrop-brightness: ;
765
+ --tw-backdrop-contrast: ;
766
+ --tw-backdrop-grayscale: ;
767
+ --tw-backdrop-hue-rotate: ;
768
+ --tw-backdrop-invert: ;
769
+ --tw-backdrop-opacity: ;
770
+ --tw-backdrop-saturate: ;
771
+ --tw-backdrop-sepia: ;
772
+ --tw-contain-size: ;
773
+ --tw-contain-layout: ;
774
+ --tw-contain-paint: ;
775
+ --tw-contain-style: ;
776
+ }
777
+
778
+ .pointer-events-none {
779
+ pointer-events: none;
780
+ }
781
+
782
+ .absolute {
783
+ position: absolute;
784
+ }
785
+
786
+ .relative {
787
+ position: relative;
788
+ }
789
+
790
+ .inset-y-0 {
791
+ top: 0px;
792
+ bottom: 0px;
793
+ }
794
+
795
+ .-top-1 {
796
+ top: -0.25rem;
797
+ }
798
+
799
+ .-top-1\.5 {
800
+ top: -0.375rem;
801
+ }
802
+
803
+ .left-3 {
804
+ left: 0.75rem;
805
+ }
806
+
807
+ .left-4 {
808
+ left: 1rem;
809
+ }
810
+
811
+ .right-0 {
812
+ right: 0px;
813
+ }
814
+
815
+ .top-2 {
816
+ top: 0.5rem;
817
+ }
818
+
819
+ .top-4 {
820
+ top: 1rem;
821
+ }
822
+
823
+ .z-50 {
824
+ z-index: 50;
825
+ }
826
+
827
+ .mx-auto {
828
+ margin-left: auto;
829
+ margin-right: auto;
830
+ }
831
+
832
+ .my-auto {
833
+ margin-top: auto;
834
+ margin-bottom: auto;
835
+ }
836
+
837
+ .mr-2 {
838
+ margin-right: 0.5rem;
839
+ }
840
+
841
+ .mr-3 {
842
+ margin-right: 0.75rem;
843
+ }
844
+
845
+ .mr-4 {
846
+ margin-right: 1rem;
847
+ }
848
+
849
+ .mt-1 {
850
+ margin-top: 0.25rem;
851
+ }
852
+
853
+ .mt-\[6px\] {
854
+ margin-top: 6px;
855
+ }
856
+
857
+ .block {
858
+ display: block;
859
+ }
860
+
861
+ .flex {
862
+ display: flex;
863
+ }
864
+
865
+ .inline-flex {
866
+ display: inline-flex;
867
+ }
868
+
869
+ .table {
870
+ display: table;
871
+ }
872
+
873
+ .grid {
874
+ display: grid;
875
+ }
876
+
877
+ .hidden {
878
+ display: none;
879
+ }
880
+
881
+ .size-3 {
882
+ width: 0.75rem;
883
+ height: 0.75rem;
884
+ }
885
+
886
+ .size-4 {
887
+ width: 1rem;
888
+ height: 1rem;
889
+ }
890
+
891
+ .size-5 {
892
+ width: 1.25rem;
893
+ height: 1.25rem;
894
+ }
895
+
896
+ .w-\[200px\] {
897
+ width: 200px;
898
+ }
899
+
900
+ .w-\[400px\] {
901
+ width: 400px;
902
+ }
903
+
904
+ .w-full {
905
+ width: 100%;
906
+ }
907
+
908
+ .max-w-3xl {
909
+ max-width: 48rem;
910
+ }
911
+
912
+ .cursor-pointer {
913
+ cursor: pointer;
914
+ }
915
+
916
+ .select-none {
917
+ -webkit-user-select: none;
918
+ -moz-user-select: none;
919
+ user-select: none;
920
+ }
921
+
922
+ .appearance-none {
923
+ -webkit-appearance: none;
924
+ -moz-appearance: none;
925
+ appearance: none;
926
+ }
927
+
928
+ .grid-cols-\[auto_1fr\] {
929
+ grid-template-columns: auto 1fr;
930
+ }
931
+
932
+ .flex-row {
933
+ flex-direction: row;
934
+ }
935
+
936
+ .flex-col {
937
+ flex-direction: column;
938
+ }
939
+
940
+ .items-center {
941
+ align-items: center;
942
+ }
943
+
944
+ .justify-center {
945
+ justify-content: center;
946
+ }
947
+
948
+ .gap-1 {
949
+ gap: 0.25rem;
950
+ }
951
+
952
+ .gap-2 {
953
+ gap: 0.5rem;
954
+ }
955
+
956
+ .gap-4 {
957
+ gap: 1rem;
958
+ }
959
+
960
+ .gap-x-8 {
961
+ -moz-column-gap: 2rem;
962
+ column-gap: 2rem;
963
+ }
964
+
965
+ .gap-y-4 {
966
+ row-gap: 1rem;
967
+ }
968
+
969
+ .gap-y-6 {
970
+ row-gap: 1.5rem;
971
+ }
972
+
973
+ .overflow-x-auto {
974
+ overflow-x: auto;
975
+ }
976
+
977
+ .whitespace-nowrap {
978
+ white-space: nowrap;
979
+ }
980
+
981
+ .rounded {
982
+ border-radius: 0.25rem;
983
+ }
984
+
985
+ .rounded-\[--btn-rounded-lg\] {
986
+ border-radius: var(--btn-rounded-lg);
987
+ }
988
+
989
+ .rounded-\[--btn-rounded-md\] {
990
+ border-radius: var(--btn-rounded-md);
991
+ }
992
+
993
+ .rounded-\[--btn-rounded-sm\] {
994
+ border-radius: var(--btn-rounded-sm);
995
+ }
996
+
997
+ .rounded-full {
998
+ border-radius: 9999px;
999
+ }
1000
+
1001
+ .rounded-lg {
1002
+ border-radius: 0.5rem;
1003
+ }
1004
+
1005
+ .rounded-none {
1006
+ border-radius: 0px;
1007
+ }
1008
+
1009
+ .rounded-sm {
1010
+ border-radius: 0.125rem;
1011
+ }
1012
+
1013
+ .rounded-xl {
1014
+ border-radius: 0.75rem;
1015
+ }
1016
+
1017
+ .border {
1018
+ border-width: 1px;
1019
+ }
1020
+
1021
+ .border-0 {
1022
+ border-width: 0px;
1023
+ }
1024
+
1025
+ .border-b-2 {
1026
+ border-bottom-width: 2px;
1027
+ }
1028
+
1029
+ .border-error {
1030
+ --tw-border-opacity: 1;
1031
+ border-color: rgb(var(--error-100) / var(--tw-border-opacity));
1032
+ }
1033
+
1034
+ .border-info {
1035
+ --tw-border-opacity: 1;
1036
+ border-color: rgb(var(--info-default) / var(--tw-border-opacity));
1037
+ }
1038
+
1039
+ .border-input-stroke {
1040
+ --tw-border-opacity: 1;
1041
+ border-color: rgb(var(--input-default-stroke-color) / var(--tw-border-opacity));
1042
+ }
1043
+
1044
+ .border-primary {
1045
+ --tw-border-opacity: 1;
1046
+ border-color: rgb(var(--primary-default) / var(--tw-border-opacity));
1047
+ }
1048
+
1049
+ .border-secondary {
1050
+ --tw-border-opacity: 1;
1051
+ border-color: rgb(var(--secondary-default) / var(--tw-border-opacity));
1052
+ }
1053
+
1054
+ .border-success {
1055
+ --tw-border-opacity: 1;
1056
+ border-color: rgb(var(--success-default) / var(--tw-border-opacity));
1057
+ }
1058
+
1059
+ .border-tertiary-120 {
1060
+ --tw-border-opacity: 1;
1061
+ border-color: rgb(var(--tertiary-120) / var(--tw-border-opacity));
1062
+ }
1063
+
1064
+ .border-transparent {
1065
+ border-color: transparent;
1066
+ }
1067
+
1068
+ .border-warning {
1069
+ --tw-border-opacity: 1;
1070
+ border-color: rgb(var(--warning-default) / var(--tw-border-opacity));
1071
+ }
1072
+
1073
+ .bg-error {
1074
+ --tw-bg-opacity: 1;
1075
+ background-color: rgb(var(--error-100) / var(--tw-bg-opacity));
1076
+ }
1077
+
1078
+ .bg-info {
1079
+ --tw-bg-opacity: 1;
1080
+ background-color: rgb(var(--info-default) / var(--tw-bg-opacity));
1081
+ }
1082
+
1083
+ .bg-input-label-background {
1084
+ --tw-bg-opacity: 1;
1085
+ background-color: rgb(var(--input-label-background-color) / var(--tw-bg-opacity));
1086
+ }
1087
+
1088
+ .bg-primary {
1089
+ --tw-bg-opacity: 1;
1090
+ background-color: rgb(var(--primary-default) / var(--tw-bg-opacity));
1091
+ }
1092
+
1093
+ .bg-secondary-100 {
1094
+ --tw-bg-opacity: 1;
1095
+ background-color: rgb(var(--secondary-100) / var(--tw-bg-opacity));
1096
+ }
1097
+
1098
+ .bg-secondary-110 {
1099
+ --tw-bg-opacity: 1;
1100
+ background-color: rgb(var(--secondary-110) / var(--tw-bg-opacity));
1101
+ }
1102
+
1103
+ .bg-success {
1104
+ --tw-bg-opacity: 1;
1105
+ background-color: rgb(var(--success-default) / var(--tw-bg-opacity));
1106
+ }
1107
+
1108
+ .bg-tertiary-120 {
1109
+ --tw-bg-opacity: 1;
1110
+ background-color: rgb(var(--tertiary-120) / var(--tw-bg-opacity));
1111
+ }
1112
+
1113
+ .bg-transparent {
1114
+ background-color: transparent;
1115
+ }
1116
+
1117
+ .bg-warning {
1118
+ --tw-bg-opacity: 1;
1119
+ background-color: rgb(var(--warning-default) / var(--tw-bg-opacity));
1120
+ }
1121
+
1122
+ .fill-error {
1123
+ fill: rgb(var(--error-100) / 1);
1124
+ }
1125
+
1126
+ .fill-input-stroke-active {
1127
+ fill: rgb(var(--input-active-stroke-color) / 1);
1128
+ }
1129
+
1130
+ .p-1 {
1131
+ padding: 0.25rem;
1132
+ }
1133
+
1134
+ .p-2 {
1135
+ padding: 0.5rem;
1136
+ }
1137
+
1138
+ .p-4 {
1139
+ padding: 1rem;
1140
+ }
1141
+
1142
+ .p-5 {
1143
+ padding: 1.25rem;
1144
+ }
1145
+
1146
+ .px-3 {
1147
+ padding-left: 0.75rem;
1148
+ padding-right: 0.75rem;
1149
+ }
1150
+
1151
+ .px-4 {
1152
+ padding-left: 1rem;
1153
+ padding-right: 1rem;
1154
+ }
1155
+
1156
+ .px-6 {
1157
+ padding-left: 1.5rem;
1158
+ padding-right: 1.5rem;
1159
+ }
1160
+
1161
+ .px-\[2px\] {
1162
+ padding-left: 2px;
1163
+ padding-right: 2px;
1164
+ }
1165
+
1166
+ .py-1 {
1167
+ padding-top: 0.25rem;
1168
+ padding-bottom: 0.25rem;
1169
+ }
1170
+
1171
+ .py-2 {
1172
+ padding-top: 0.5rem;
1173
+ padding-bottom: 0.5rem;
1174
+ }
1175
+
1176
+ .py-4 {
1177
+ padding-top: 1rem;
1178
+ padding-bottom: 1rem;
1179
+ }
1180
+
1181
+ .align-middle {
1182
+ vertical-align: middle;
1183
+ }
1184
+
1185
+ .font-sans {
1186
+ font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
1187
+ }
1188
+
1189
+ .text-base {
1190
+ font-size: 1rem;
1191
+ line-height: 1.5rem;
1192
+ }
1193
+
1194
+ .text-body1 {
1195
+ font-size: 16px;
1196
+ line-height: 20px;
1197
+ font-weight: 400;
1198
+ }
1199
+
1200
+ .text-body2 {
1201
+ font-size: 16px;
1202
+ line-height: 20px;
1203
+ font-weight: 500;
1204
+ }
1205
+
1206
+ .text-body3 {
1207
+ font-size: 14px;
1208
+ line-height: 18px;
1209
+ font-weight: 400;
1210
+ }
1211
+
1212
+ .text-body4 {
1213
+ font-size: 14px;
1214
+ line-height: 18px;
1215
+ font-weight: 500;
1216
+ }
1217
+
1218
+ .text-h1 {
1219
+ font-size: 64px;
1220
+ line-height: 80px;
1221
+ font-weight: 700;
1222
+ }
1223
+
1224
+ .text-h2 {
1225
+ font-size: 48px;
1226
+ line-height: 60px;
1227
+ font-weight: 700;
1228
+ }
1229
+
1230
+ .text-h3 {
1231
+ font-size: 32px;
1232
+ line-height: 48px;
1233
+ font-weight: 700;
1234
+ }
1235
+
1236
+ .text-h4 {
1237
+ font-size: 24px;
1238
+ line-height: 32px;
1239
+ font-weight: 700;
1240
+ }
1241
+
1242
+ .text-h5 {
1243
+ font-size: 20px;
1244
+ line-height: 28px;
1245
+ font-weight: 700;
1246
+ }
1247
+
1248
+ .text-h6 {
1249
+ font-size: 18px;
1250
+ line-height: 24px;
1251
+ font-weight: 700;
1252
+ }
1253
+
1254
+ .text-label1 {
1255
+ font-size: 12px;
1256
+ line-height: 12px;
1257
+ font-weight: 400;
1258
+ }
1259
+
1260
+ .text-label2 {
1261
+ font-size: 10px;
1262
+ line-height: 10px;
1263
+ font-weight: 400;
1264
+ }
1265
+
1266
+ .text-sm {
1267
+ font-size: 0.875rem;
1268
+ line-height: 1.25rem;
1269
+ }
1270
+
1271
+ .text-small1 {
1272
+ font-size: 12px;
1273
+ line-height: 14px;
1274
+ font-weight: 400;
1275
+ }
1276
+
1277
+ .text-small2 {
1278
+ font-size: 12px;
1279
+ line-height: 14px;
1280
+ font-weight: 500;
1281
+ }
1282
+
1283
+ .text-small3 {
1284
+ font-size: 10px;
1285
+ line-height: 12px;
1286
+ font-weight: 400;
1287
+ }
1288
+
1289
+ .text-subtitile1 {
1290
+ font-size: 16px;
1291
+ line-height: 24px;
1292
+ font-weight: 400;
1293
+ }
1294
+
1295
+ .text-subtitile2 {
1296
+ font-size: 16px;
1297
+ line-height: 24px;
1298
+ font-weight: 500;
1299
+ }
1300
+
1301
+ .text-subtitile3 {
1302
+ font-size: 16px;
1303
+ line-height: 24px;
1304
+ font-weight: 600;
1305
+ }
1306
+
1307
+ .text-subtitile4 {
1308
+ font-size: 14px;
1309
+ line-height: 22px;
1310
+ font-weight: 400;
1311
+ }
1312
+
1313
+ .text-subtitile5 {
1314
+ font-size: 14px;
1315
+ line-height: 22px;
1316
+ font-weight: 500;
1317
+ }
1318
+
1319
+ .text-subtitile6 {
1320
+ font-size: 14px;
1321
+ line-height: 22px;
1322
+ font-weight: 600;
1323
+ }
1324
+
1325
+ .font-bold {
1326
+ font-weight: 700;
1327
+ }
1328
+
1329
+ .font-medium {
1330
+ font-weight: 500;
1331
+ }
1332
+
1333
+ .capitalize {
1334
+ text-transform: capitalize;
1335
+ }
1336
+
1337
+ .tracking-\[\.02857em\] {
1338
+ letter-spacing: .02857em;
1339
+ }
1340
+
1341
+ .text-black {
1342
+ --tw-text-opacity: 1;
1343
+ color: rgb(0 0 0 / var(--tw-text-opacity));
1344
+ }
1345
+
1346
+ .text-error {
1347
+ --tw-text-opacity: 1;
1348
+ color: rgb(var(--error-100) / var(--tw-text-opacity));
1349
+ }
1350
+
1351
+ .text-error-foreground {
1352
+ --tw-text-opacity: 1;
1353
+ color: rgb(var(--error-foreground) / var(--tw-text-opacity));
1354
+ }
1355
+
1356
+ .text-gray-100 {
1357
+ --tw-text-opacity: 1;
1358
+ color: rgb(243 244 246 / var(--tw-text-opacity));
1359
+ }
1360
+
1361
+ .text-info {
1362
+ --tw-text-opacity: 1;
1363
+ color: rgb(var(--info-default) / var(--tw-text-opacity));
1364
+ }
1365
+
1366
+ .text-info-foreground {
1367
+ --tw-text-opacity: 1;
1368
+ color: rgb(var(--info-foreground) / var(--tw-text-opacity));
1369
+ }
1370
+
1371
+ .text-input-text {
1372
+ --tw-text-opacity: 1;
1373
+ color: rgb(var(--input-default-text-color) / var(--tw-text-opacity));
1374
+ }
1375
+
1376
+ .text-input-text-disabled {
1377
+ --tw-text-opacity: 1;
1378
+ color: rgb(var(--input-disabled-text-color) / var(--tw-text-opacity));
1379
+ }
1380
+
1381
+ .text-primary {
1382
+ --tw-text-opacity: 1;
1383
+ color: rgb(var(--primary-default) / var(--tw-text-opacity));
1384
+ }
1385
+
1386
+ .text-primary-foreground {
1387
+ --tw-text-opacity: 1;
1388
+ color: rgb(var(--primary-foreground) / var(--tw-text-opacity));
1389
+ }
1390
+
1391
+ .text-secondary-130 {
1392
+ --tw-text-opacity: 1;
1393
+ color: rgb(var(--secondary-130) / var(--tw-text-opacity));
1394
+ }
1395
+
1396
+ .text-secondary-foreground {
1397
+ --tw-text-opacity: 1;
1398
+ color: rgb(var(--secondary-foreground) / var(--tw-text-opacity));
1399
+ }
1400
+
1401
+ .text-success {
1402
+ --tw-text-opacity: 1;
1403
+ color: rgb(var(--success-default) / var(--tw-text-opacity));
1404
+ }
1405
+
1406
+ .text-success-foreground {
1407
+ --tw-text-opacity: 1;
1408
+ color: rgb(var(--success-foreground) / var(--tw-text-opacity));
1409
+ }
1410
+
1411
+ .text-tertiary-120 {
1412
+ --tw-text-opacity: 1;
1413
+ color: rgb(var(--tertiary-120) / var(--tw-text-opacity));
1414
+ }
1415
+
1416
+ .text-tertiary-foreground {
1417
+ --tw-text-opacity: 1;
1418
+ color: rgb(var(--tertiary-foreground) / var(--tw-text-opacity));
1419
+ }
1420
+
1421
+ .text-warning {
1422
+ --tw-text-opacity: 1;
1423
+ color: rgb(var(--warning-default) / var(--tw-text-opacity));
1424
+ }
1425
+
1426
+ .text-warning-foreground {
1427
+ --tw-text-opacity: 1;
1428
+ color: rgb(var(--warning-foreground) / var(--tw-text-opacity));
1429
+ }
1430
+
1431
+ .text-white {
1432
+ --tw-text-opacity: 1;
1433
+ color: rgb(255 255 255 / var(--tw-text-opacity));
1434
+ }
1435
+
1436
+ .underline {
1437
+ text-decoration-line: underline;
1438
+ }
1439
+
1440
+ .no-underline {
1441
+ text-decoration-line: none;
1442
+ }
1443
+
1444
+ .underline-offset-4 {
1445
+ text-underline-offset: 4px;
1446
+ }
1447
+
1448
+ .outline-none {
1449
+ outline: 2px solid transparent;
1450
+ outline-offset: 2px;
1451
+ }
1452
+
1453
+ .outline {
1454
+ outline-style: solid;
1455
+ }
1456
+
1457
+ .ring-1 {
1458
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1459
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1460
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1461
+ }
1462
+
1463
+ .ring-inset {
1464
+ --tw-ring-inset: inset;
1465
+ }
1466
+
1467
+ .ring-error {
1468
+ --tw-ring-opacity: 1;
1469
+ --tw-ring-color: rgb(var(--error-100) / var(--tw-ring-opacity));
1470
+ }
1471
+
1472
+ .ring-input-stroke {
1473
+ --tw-ring-opacity: 1;
1474
+ --tw-ring-color: rgb(var(--input-default-stroke-color) / var(--tw-ring-opacity));
1475
+ }
1476
+
1477
+ .ring-input-stroke-disabled {
1478
+ --tw-ring-opacity: 1;
1479
+ --tw-ring-color: rgb(var(--input-disabled-stroke-color) / var(--tw-ring-opacity));
1480
+ }
1481
+
1482
+ .transition-all {
1483
+ transition-property: all;
1484
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1485
+ transition-duration: 150ms;
1486
+ }
1487
+
1488
+ .transition-colors {
1489
+ transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
1490
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1491
+ transition-duration: 150ms;
1492
+ }
1493
+
1494
+ .duration-300 {
1495
+ transition-duration: 300ms;
1496
+ }
1497
+
1498
+ .ease-in-out {
1499
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
1500
+ }
1501
+
1502
+ .typography-h1 {
1503
+ font-size: 64px;
1504
+ line-height: 80px;
1505
+ font-weight: 700;
1506
+ }
1507
+
1508
+ .typography-h2 {
1509
+ font-size: 48px;
1510
+ line-height: 60px;
1511
+ font-weight: 700;
1512
+ }
1513
+
1514
+ .typography-h3 {
1515
+ font-size: 32px;
1516
+ line-height: 48px;
1517
+ font-weight: 700;
1518
+ }
1519
+
1520
+ .typography-h4 {
1521
+ font-size: 24px;
1522
+ line-height: 32px;
1523
+ font-weight: 700;
1524
+ }
1525
+
1526
+ .typography-h5 {
1527
+ font-size: 20px;
1528
+ line-height: 28px;
1529
+ font-weight: 700;
1530
+ }
1531
+
1532
+ .typography-h6 {
1533
+ font-size: 18px;
1534
+ line-height: 24px;
1535
+ font-weight: 700;
1536
+ }
1537
+
1538
+ .typography-subtitile1 {
1539
+ font-size: 16px;
1540
+ line-height: 24px;
1541
+ font-weight: 400;
1542
+ }
1543
+
1544
+ .typography-subtitile2 {
1545
+ font-size: 16px;
1546
+ line-height: 24px;
1547
+ font-weight: 500;
1548
+ }
1549
+
1550
+ .typography-subtitile3 {
1551
+ font-size: 16px;
1552
+ line-height: 24px;
1553
+ font-weight: 600;
1554
+ }
1555
+
1556
+ .typography-subtitile4 {
1557
+ font-size: 14px;
1558
+ line-height: 22px;
1559
+ font-weight: 400;
1560
+ }
1561
+
1562
+ .typography-subtitile5 {
1563
+ font-size: 14px;
1564
+ line-height: 22px;
1565
+ font-weight: 500;
1566
+ }
1567
+
1568
+ .typography-subtitile6 {
1569
+ font-size: 14px;
1570
+ line-height: 22px;
1571
+ font-weight: 600;
1572
+ }
1573
+
1574
+ .typography-body1 {
1575
+ font-size: 16px;
1576
+ line-height: 20px;
1577
+ font-weight: 400;
1578
+ }
1579
+
1580
+ .typography-body2 {
1581
+ font-size: 16px;
1582
+ line-height: 20px;
1583
+ font-weight: 500;
1584
+ }
1585
+
1586
+ .typography-body3 {
1587
+ font-size: 14px;
1588
+ line-height: 18px;
1589
+ font-weight: 400;
1590
+ }
1591
+
1592
+ .typography-body4 {
1593
+ font-size: 14px;
1594
+ line-height: 18px;
1595
+ font-weight: 500;
1596
+ }
1597
+
1598
+ .typography-small1 {
1599
+ font-size: 12px;
1600
+ line-height: 14px;
1601
+ font-weight: 400;
1602
+ }
1603
+
1604
+ .typography-small2 {
1605
+ font-size: 12px;
1606
+ line-height: 14px;
1607
+ font-weight: 500;
1608
+ }
1609
+
1610
+ .typography-small3 {
1611
+ font-size: 10px;
1612
+ line-height: 12px;
1613
+ font-weight: 400;
1614
+ }
1615
+
1616
+ .typography-label1 {
1617
+ font-size: 12px;
1618
+ line-height: 12px;
1619
+ font-weight: 400;
1620
+ }
1621
+
1622
+ .typography-label2 {
1623
+ font-size: 10px;
1624
+ line-height: 10px;
1625
+ font-weight: 400;
1626
+ }
1627
+
1628
+ .placeholder\:text-input-text-disabled::-moz-placeholder {
1629
+ --tw-text-opacity: 1;
1630
+ color: rgb(var(--input-disabled-text-color) / var(--tw-text-opacity));
1631
+ }
1632
+
1633
+ .placeholder\:text-input-text-disabled::placeholder {
1634
+ --tw-text-opacity: 1;
1635
+ color: rgb(var(--input-disabled-text-color) / var(--tw-text-opacity));
1636
+ }
1637
+
1638
+ .placeholder\:text-transparent::-moz-placeholder {
1639
+ color: transparent;
1640
+ }
1641
+
1642
+ .placeholder\:text-transparent::placeholder {
1643
+ color: transparent;
1644
+ }
1645
+
1646
+ .hover\:border-error-120:hover {
1647
+ --tw-border-opacity: 1;
1648
+ border-color: rgb(var(--error-120) / var(--tw-border-opacity));
1649
+ }
1650
+
1651
+ .hover\:border-input-stroke-active:hover {
1652
+ --tw-border-opacity: 1;
1653
+ border-color: rgb(var(--input-active-stroke-color) / var(--tw-border-opacity));
1654
+ }
1655
+
1656
+ .hover\:border-warning-100:hover {
1657
+ --tw-border-opacity: 1;
1658
+ border-color: rgb(var(--warning-100) / var(--tw-border-opacity));
1659
+ }
1660
+
1661
+ .hover\:bg-error-120:hover {
1662
+ --tw-bg-opacity: 1;
1663
+ background-color: rgb(var(--error-120) / var(--tw-bg-opacity));
1664
+ }
1665
+
1666
+ .hover\:bg-info-100:hover {
1667
+ --tw-bg-opacity: 1;
1668
+ background-color: rgb(var(--info-100)) / var(--tw-bg-opacity));
1669
+ }
1670
+
1671
+ .hover\:bg-primary-80:hover {
1672
+ --tw-bg-opacity: 1;
1673
+ background-color: rgb(var(--primary-80) / var(--tw-bg-opacity));
1674
+ }
1675
+
1676
+ .hover\:bg-secondary-120:hover {
1677
+ --tw-bg-opacity: 1;
1678
+ background-color: rgb(var(--secondary-120) / var(--tw-bg-opacity));
1679
+ }
1680
+
1681
+ .hover\:bg-success-120:hover {
1682
+ --tw-bg-opacity: 1;
1683
+ background-color: rgb(var(--success-120)) / var(--tw-bg-opacity));
1684
+ }
1685
+
1686
+ .hover\:bg-tertiary-100:hover {
1687
+ --tw-bg-opacity: 1;
1688
+ background-color: rgb(var(--tertiary-100) / var(--tw-bg-opacity));
1689
+ }
1690
+
1691
+ .hover\:bg-transparent:hover {
1692
+ background-color: transparent;
1693
+ }
1694
+
1695
+ .hover\:bg-warning-100:hover {
1696
+ --tw-bg-opacity: 1;
1697
+ background-color: rgb(var(--warning-100) / var(--tw-bg-opacity));
1698
+ }
1699
+
1700
+ .hover\:bg-opacity-20:hover {
1701
+ --tw-bg-opacity: 0.2;
1702
+ }
1703
+
1704
+ .hover\:bg-opacity-90:hover {
1705
+ --tw-bg-opacity: 0.9;
1706
+ }
1707
+
1708
+ .hover\:fill-input-text:hover {
1709
+ fill: rgb(var(--input-default-text-color) / 1);
1710
+ }
1711
+
1712
+ .hover\:text-opacity-80:hover {
1713
+ --tw-text-opacity: 0.8;
1714
+ }
1715
+
1716
+ .focus\:border-input-stroke:focus {
1717
+ --tw-border-opacity: 1;
1718
+ border-color: rgb(var(--input-default-stroke-color) / var(--tw-border-opacity));
1719
+ }
1720
+
1721
+ .focus\:pe-10:focus {
1722
+ padding-inline-end: 2.5rem;
1723
+ }
1724
+
1725
+ .focus\:pe-6:focus {
1726
+ padding-inline-end: 1.5rem;
1727
+ }
1728
+
1729
+ .focus\:pe-8:focus {
1730
+ padding-inline-end: 2rem;
1731
+ }
1732
+
1733
+ .focus\:ring-2:focus {
1734
+ --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1735
+ --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1736
+ box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1737
+ }
1738
+
1739
+ .focus\:ring-inset:focus {
1740
+ --tw-ring-inset: inset;
1741
+ }
1742
+
1743
+ .active\:scale-\[98\%\]:active {
1744
+ --tw-scale-x: 98%;
1745
+ --tw-scale-y: 98%;
1746
+ 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));
1747
+ }
1748
+
1749
+ .peer:focus ~ .peer-focus\:-top-1 {
1750
+ top: -0.25rem;
1751
+ }
1752
+
1753
+ .peer:focus ~ .peer-focus\:-top-1\.5 {
1754
+ top: -0.375rem;
1755
+ }
1756
+
1757
+ .peer:focus ~ .peer-focus\:flex {
1758
+ display: flex;
1759
+ }
1760
+
1761
+ .peer:focus ~ .peer-focus\:bg-input-label-background {
1762
+ --tw-bg-opacity: 1;
1763
+ background-color: rgb(var(--input-label-background-color) / var(--tw-bg-opacity));
1764
+ }
1765
+
1766
+ .peer:focus ~ .peer-focus\:text-input-text-active {
1767
+ --tw-text-opacity: 1;
1768
+ color: rgb(var(--input-active-text-color) / var(--tw-text-opacity));
1769
+ }
1770
+
1771
+ .peer:focus ~ .peer-focus\:typography-label1 {
1772
+ font-size: 12px;
1773
+ line-height: 12px;
1774
+ font-weight: 400;
1775
+ }
1776
+
1777
+ .peer:focus ~ .peer-focus\:typography-label2 {
1778
+ font-size: 10px;
1779
+ line-height: 10px;
1780
+ font-weight: 400;
1781
+ }
1782
+
1783
+ .peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:-top-1\.5 {
1784
+ top: -0.375rem;
1785
+ }
1786
+
1787
+ .peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:-top-1\.5 {
1788
+ top: -0.375rem;
1789
+ }
1790
+
1791
+ .peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:typography-label1 {
1792
+ font-size: 12px;
1793
+ line-height: 12px;
1794
+ font-weight: 400;
1795
+ }
1796
+
1797
+ .peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:typography-label1 {
1798
+ font-size: 12px;
1799
+ line-height: 12px;
1800
+ font-weight: 400;
1801
+ }
1802
+
1803
+ .peer:not(:-moz-placeholder-shown) ~ .peer-\[\:not\(\:-moz-placeholder-shown\)\]\:typography-label2 {
1804
+ font-size: 10px;
1805
+ line-height: 10px;
1806
+ font-weight: 400;
1807
+ }
1808
+
1809
+ .peer:not(:placeholder-shown) ~ .peer-\[\:not\(\:placeholder-shown\)\]\:typography-label2 {
1810
+ font-size: 10px;
1811
+ line-height: 10px;
1812
+ font-weight: 400;
1813
+ }
1814
+
1815
+ .aria-disabled\:pointer-events-none[aria-disabled="true"] {
1816
+ pointer-events: none;
1817
+ }
1818
+
1819
+ .aria-disabled\:cursor-not-allowed[aria-disabled="true"] {
1820
+ cursor: not-allowed;
1821
+ }
1822
+
1823
+ .aria-disabled\:opacity-50[aria-disabled="true"] {
1824
+ opacity: 0.5;
1825
+ }