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