labellife-design-tool 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +128 -0
  3. package/dist/lib/CanvasEditor.d.ts +8 -0
  4. package/dist/lib/CanvasEditor.d.ts.map +1 -0
  5. package/dist/lib/components/Header.d.ts +17 -0
  6. package/dist/lib/components/Header.d.ts.map +1 -0
  7. package/dist/lib/components/LeftMenu.d.ts +13 -0
  8. package/dist/lib/components/LeftMenu.d.ts.map +1 -0
  9. package/dist/lib/components/TemplateInputModal.d.ts +10 -0
  10. package/dist/lib/components/TemplateInputModal.d.ts.map +1 -0
  11. package/dist/lib/components/header/AppName.d.ts +4 -0
  12. package/dist/lib/components/header/AppName.d.ts.map +1 -0
  13. package/dist/lib/components/header/ExportButton.d.ts +8 -0
  14. package/dist/lib/components/header/ExportButton.d.ts.map +1 -0
  15. package/dist/lib/components/header/HistoryControls.d.ts +10 -0
  16. package/dist/lib/components/header/HistoryControls.d.ts.map +1 -0
  17. package/dist/lib/components/header/ZoomControls.d.ts +10 -0
  18. package/dist/lib/components/header/ZoomControls.d.ts.map +1 -0
  19. package/dist/lib/components/sidebar/RightSidebar.d.ts +16 -0
  20. package/dist/lib/components/sidebar/RightSidebar.d.ts.map +1 -0
  21. package/dist/lib/config.d.ts +11 -0
  22. package/dist/lib/config.d.ts.map +1 -0
  23. package/dist/lib/constants/CanvasPresets.d.ts +6 -0
  24. package/dist/lib/constants/CanvasPresets.d.ts.map +1 -0
  25. package/dist/lib/constants/DefaultColors.d.ts +2 -0
  26. package/dist/lib/constants/DefaultColors.d.ts.map +1 -0
  27. package/dist/lib/constants/FontFamilies.d.ts +2 -0
  28. package/dist/lib/constants/FontFamilies.d.ts.map +1 -0
  29. package/dist/lib/constants/index.d.ts +4 -0
  30. package/dist/lib/constants/index.d.ts.map +1 -0
  31. package/dist/lib/elements/EditableTextElement.d.ts +10 -0
  32. package/dist/lib/elements/EditableTextElement.d.ts.map +1 -0
  33. package/dist/lib/elements/ShapeElement.d.ts +10 -0
  34. package/dist/lib/elements/ShapeElement.d.ts.map +1 -0
  35. package/dist/lib/elements/UrlImageElement.d.ts +10 -0
  36. package/dist/lib/elements/UrlImageElement.d.ts.map +1 -0
  37. package/dist/lib/elements/index.d.ts +4 -0
  38. package/dist/lib/elements/index.d.ts.map +1 -0
  39. package/dist/lib/index.css +1109 -0
  40. package/dist/lib/index.js +4052 -0
  41. package/dist/lib/lib/index.d.ts +11 -0
  42. package/dist/lib/lib/index.d.ts.map +1 -0
  43. package/dist/lib/panels/BackgroundPanel.d.ts +11 -0
  44. package/dist/lib/panels/BackgroundPanel.d.ts.map +1 -0
  45. package/dist/lib/panels/DesignPanel.d.ts +15 -0
  46. package/dist/lib/panels/DesignPanel.d.ts.map +1 -0
  47. package/dist/lib/panels/ElementPanel.d.ts +8 -0
  48. package/dist/lib/panels/ElementPanel.d.ts.map +1 -0
  49. package/dist/lib/panels/ExportPanel.d.ts +10 -0
  50. package/dist/lib/panels/ExportPanel.d.ts.map +1 -0
  51. package/dist/lib/panels/ImagePanel.d.ts +13 -0
  52. package/dist/lib/panels/ImagePanel.d.ts.map +1 -0
  53. package/dist/lib/panels/TextPanel.d.ts +11 -0
  54. package/dist/lib/panels/TextPanel.d.ts.map +1 -0
  55. package/dist/lib/panels/VariablesPanel.d.ts +11 -0
  56. package/dist/lib/panels/VariablesPanel.d.ts.map +1 -0
  57. package/dist/lib/types/CanvasDesign.d.ts +13 -0
  58. package/dist/lib/types/CanvasDesign.d.ts.map +1 -0
  59. package/dist/lib/types/CanvasEditor.d.ts +6 -0
  60. package/dist/lib/types/CanvasEditor.d.ts.map +1 -0
  61. package/dist/lib/types/CanvasElement.d.ts +80 -0
  62. package/dist/lib/types/CanvasElement.d.ts.map +1 -0
  63. package/dist/lib/types/Config.d.ts +19 -0
  64. package/dist/lib/types/Config.d.ts.map +1 -0
  65. package/dist/lib/types/Feature.d.ts +4 -0
  66. package/dist/lib/types/Feature.d.ts.map +1 -0
  67. package/dist/lib/types/MenuElement.d.ts +7 -0
  68. package/dist/lib/types/MenuElement.d.ts.map +1 -0
  69. package/dist/lib/types/Page.d.ts +9 -0
  70. package/dist/lib/types/Page.d.ts.map +1 -0
  71. package/dist/lib/types/Panel.d.ts +17 -0
  72. package/dist/lib/types/Panel.d.ts.map +1 -0
  73. package/dist/lib/types/ShapeType.d.ts +2 -0
  74. package/dist/lib/types/ShapeType.d.ts.map +1 -0
  75. package/dist/lib/types/ToolType.d.ts +3 -0
  76. package/dist/lib/types/ToolType.d.ts.map +1 -0
  77. package/dist/lib/types/UnsplashSearchResult.d.ts +11 -0
  78. package/dist/lib/types/UnsplashSearchResult.d.ts.map +1 -0
  79. package/dist/lib/types/UserInput.d.ts +21 -0
  80. package/dist/lib/types/UserInput.d.ts.map +1 -0
  81. package/dist/lib/types/index.d.ts +12 -0
  82. package/dist/lib/types/index.d.ts.map +1 -0
  83. package/dist/lib/utils/exportImportUtils.d.ts +24 -0
  84. package/dist/lib/utils/exportImportUtils.d.ts.map +1 -0
  85. package/package.json +91 -0
@@ -0,0 +1,1109 @@
1
+ /*! tailwindcss v4.1.17 | MIT License | https://tailwindcss.com */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root, :host {
6
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
7
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-red-300: oklch(80.8% 0.114 19.571);
11
+ --color-red-400: oklch(70.4% 0.191 22.216);
12
+ --color-red-500: oklch(63.7% 0.237 25.331);
13
+ --color-red-600: oklch(57.7% 0.245 27.325);
14
+ --color-red-700: oklch(50.5% 0.213 27.518);
15
+ --color-green-400: oklch(79.2% 0.209 151.711);
16
+ --color-green-500: oklch(72.3% 0.219 149.579);
17
+ --color-blue-400: oklch(70.7% 0.165 254.624);
18
+ --color-blue-500: oklch(62.3% 0.214 259.815);
19
+ --color-blue-600: oklch(54.6% 0.245 262.881);
20
+ --color-blue-700: oklch(48.8% 0.243 264.376);
21
+ --color-gray-300: oklch(87.2% 0.01 258.338);
22
+ --color-gray-400: oklch(70.7% 0.022 261.325);
23
+ --color-gray-500: oklch(55.1% 0.027 264.364);
24
+ --color-gray-600: oklch(44.6% 0.03 256.802);
25
+ --color-gray-700: oklch(37.3% 0.034 259.733);
26
+ --color-gray-800: oklch(27.8% 0.033 256.848);
27
+ --color-gray-900: oklch(21% 0.034 264.665);
28
+ --color-black: #000;
29
+ --color-white: #fff;
30
+ --spacing: 0.25rem;
31
+ --container-xs: 20rem;
32
+ --container-2xl: 42rem;
33
+ --container-4xl: 56rem;
34
+ --text-xs: 0.75rem;
35
+ --text-xs--line-height: calc(1 / 0.75);
36
+ --text-sm: 0.875rem;
37
+ --text-sm--line-height: calc(1.25 / 0.875);
38
+ --text-lg: 1.125rem;
39
+ --text-lg--line-height: calc(1.75 / 1.125);
40
+ --text-xl: 1.25rem;
41
+ --text-xl--line-height: calc(1.75 / 1.25);
42
+ --text-2xl: 1.5rem;
43
+ --text-2xl--line-height: calc(2 / 1.5);
44
+ --font-weight-medium: 500;
45
+ --font-weight-semibold: 600;
46
+ --font-weight-bold: 700;
47
+ --radius-lg: 0.5rem;
48
+ --default-transition-duration: 150ms;
49
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
50
+ --default-font-family: var(--font-sans);
51
+ --default-mono-font-family: var(--font-mono);
52
+ }
53
+ }
54
+ @layer base {
55
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
56
+ box-sizing: border-box;
57
+ margin: 0;
58
+ padding: 0;
59
+ border: 0 solid;
60
+ }
61
+ html, :host {
62
+ line-height: 1.5;
63
+ -webkit-text-size-adjust: 100%;
64
+ tab-size: 4;
65
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
66
+ font-feature-settings: var(--default-font-feature-settings, normal);
67
+ font-variation-settings: var(--default-font-variation-settings, normal);
68
+ -webkit-tap-highlight-color: transparent;
69
+ }
70
+ hr {
71
+ height: 0;
72
+ color: inherit;
73
+ border-top-width: 1px;
74
+ }
75
+ abbr:where([title]) {
76
+ -webkit-text-decoration: underline dotted;
77
+ text-decoration: underline dotted;
78
+ }
79
+ h1, h2, h3, h4, h5, h6 {
80
+ font-size: inherit;
81
+ font-weight: inherit;
82
+ }
83
+ a {
84
+ color: inherit;
85
+ -webkit-text-decoration: inherit;
86
+ text-decoration: inherit;
87
+ }
88
+ b, strong {
89
+ font-weight: bolder;
90
+ }
91
+ code, kbd, samp, pre {
92
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
93
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
94
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
95
+ font-size: 1em;
96
+ }
97
+ small {
98
+ font-size: 80%;
99
+ }
100
+ sub, sup {
101
+ font-size: 75%;
102
+ line-height: 0;
103
+ position: relative;
104
+ vertical-align: baseline;
105
+ }
106
+ sub {
107
+ bottom: -0.25em;
108
+ }
109
+ sup {
110
+ top: -0.5em;
111
+ }
112
+ table {
113
+ text-indent: 0;
114
+ border-color: inherit;
115
+ border-collapse: collapse;
116
+ }
117
+ :-moz-focusring {
118
+ outline: auto;
119
+ }
120
+ progress {
121
+ vertical-align: baseline;
122
+ }
123
+ summary {
124
+ display: list-item;
125
+ }
126
+ ol, ul, menu {
127
+ list-style: none;
128
+ }
129
+ img, svg, video, canvas, audio, iframe, embed, object {
130
+ display: block;
131
+ vertical-align: middle;
132
+ }
133
+ img, video {
134
+ max-width: 100%;
135
+ height: auto;
136
+ }
137
+ button, input, select, optgroup, textarea, ::file-selector-button {
138
+ font: inherit;
139
+ font-feature-settings: inherit;
140
+ font-variation-settings: inherit;
141
+ letter-spacing: inherit;
142
+ color: inherit;
143
+ border-radius: 0;
144
+ background-color: transparent;
145
+ opacity: 1;
146
+ }
147
+ :where(select:is([multiple], [size])) optgroup {
148
+ font-weight: bolder;
149
+ }
150
+ :where(select:is([multiple], [size])) optgroup option {
151
+ padding-inline-start: 20px;
152
+ }
153
+ ::file-selector-button {
154
+ margin-inline-end: 4px;
155
+ }
156
+ ::placeholder {
157
+ opacity: 1;
158
+ }
159
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
160
+ ::placeholder {
161
+ color: currentcolor;
162
+ @supports (color: color-mix(in lab, red, red)) {
163
+ color: color-mix(in oklab, currentcolor 50%, transparent);
164
+ }
165
+ }
166
+ }
167
+ textarea {
168
+ resize: vertical;
169
+ }
170
+ ::-webkit-search-decoration {
171
+ -webkit-appearance: none;
172
+ }
173
+ ::-webkit-date-and-time-value {
174
+ min-height: 1lh;
175
+ text-align: inherit;
176
+ }
177
+ ::-webkit-datetime-edit {
178
+ display: inline-flex;
179
+ }
180
+ ::-webkit-datetime-edit-fields-wrapper {
181
+ padding: 0;
182
+ }
183
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
184
+ padding-block: 0;
185
+ }
186
+ ::-webkit-calendar-picker-indicator {
187
+ line-height: 1;
188
+ }
189
+ :-moz-ui-invalid {
190
+ box-shadow: none;
191
+ }
192
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
193
+ appearance: button;
194
+ }
195
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
196
+ height: auto;
197
+ }
198
+ [hidden]:where(:not([hidden="until-found"])) {
199
+ display: none !important;
200
+ }
201
+ }
202
+ @layer utilities {
203
+ .visible {
204
+ visibility: visible;
205
+ }
206
+ .absolute {
207
+ position: absolute;
208
+ }
209
+ .fixed {
210
+ position: fixed;
211
+ }
212
+ .relative {
213
+ position: relative;
214
+ }
215
+ .static {
216
+ position: static;
217
+ }
218
+ .inset-0 {
219
+ inset: calc(var(--spacing) * 0);
220
+ }
221
+ .bottom-4 {
222
+ bottom: calc(var(--spacing) * 4);
223
+ }
224
+ .left-4 {
225
+ left: calc(var(--spacing) * 4);
226
+ }
227
+ .z-50 {
228
+ z-index: 50;
229
+ }
230
+ .container {
231
+ width: 100%;
232
+ @media (width >= 40rem) {
233
+ max-width: 40rem;
234
+ }
235
+ @media (width >= 48rem) {
236
+ max-width: 48rem;
237
+ }
238
+ @media (width >= 64rem) {
239
+ max-width: 64rem;
240
+ }
241
+ @media (width >= 80rem) {
242
+ max-width: 80rem;
243
+ }
244
+ @media (width >= 96rem) {
245
+ max-width: 96rem;
246
+ }
247
+ }
248
+ .mx-2 {
249
+ margin-inline: calc(var(--spacing) * 2);
250
+ }
251
+ .mx-auto {
252
+ margin-inline: auto;
253
+ }
254
+ .my-2 {
255
+ margin-block: calc(var(--spacing) * 2);
256
+ }
257
+ .mt-1 {
258
+ margin-top: calc(var(--spacing) * 1);
259
+ }
260
+ .mt-2 {
261
+ margin-top: calc(var(--spacing) * 2);
262
+ }
263
+ .mt-6 {
264
+ margin-top: calc(var(--spacing) * 6);
265
+ }
266
+ .mr-2 {
267
+ margin-right: calc(var(--spacing) * 2);
268
+ }
269
+ .mb-2 {
270
+ margin-bottom: calc(var(--spacing) * 2);
271
+ }
272
+ .mb-4 {
273
+ margin-bottom: calc(var(--spacing) * 4);
274
+ }
275
+ .ml-1 {
276
+ margin-left: calc(var(--spacing) * 1);
277
+ }
278
+ .ml-2 {
279
+ margin-left: calc(var(--spacing) * 2);
280
+ }
281
+ .block {
282
+ display: block;
283
+ }
284
+ .contents {
285
+ display: contents;
286
+ }
287
+ .flex {
288
+ display: flex;
289
+ }
290
+ .grid {
291
+ display: grid;
292
+ }
293
+ .hidden {
294
+ display: none;
295
+ }
296
+ .aspect-square {
297
+ aspect-ratio: 1 / 1;
298
+ }
299
+ .h-0 {
300
+ height: calc(var(--spacing) * 0);
301
+ }
302
+ .h-2 {
303
+ height: calc(var(--spacing) * 2);
304
+ }
305
+ .h-3 {
306
+ height: calc(var(--spacing) * 3);
307
+ }
308
+ .h-4 {
309
+ height: calc(var(--spacing) * 4);
310
+ }
311
+ .h-5 {
312
+ height: calc(var(--spacing) * 5);
313
+ }
314
+ .h-6 {
315
+ height: calc(var(--spacing) * 6);
316
+ }
317
+ .h-8 {
318
+ height: calc(var(--spacing) * 8);
319
+ }
320
+ .h-12 {
321
+ height: calc(var(--spacing) * 12);
322
+ }
323
+ .h-full {
324
+ height: 100%;
325
+ }
326
+ .h-screen {
327
+ height: 100vh;
328
+ }
329
+ .max-h-32 {
330
+ max-height: calc(var(--spacing) * 32);
331
+ }
332
+ .max-h-\[90vh\] {
333
+ max-height: 90vh;
334
+ }
335
+ .max-h-full {
336
+ max-height: 100%;
337
+ }
338
+ .w-0 {
339
+ width: calc(var(--spacing) * 0);
340
+ }
341
+ .w-3 {
342
+ width: calc(var(--spacing) * 3);
343
+ }
344
+ .w-4 {
345
+ width: calc(var(--spacing) * 4);
346
+ }
347
+ .w-5 {
348
+ width: calc(var(--spacing) * 5);
349
+ }
350
+ .w-8 {
351
+ width: calc(var(--spacing) * 8);
352
+ }
353
+ .w-12 {
354
+ width: calc(var(--spacing) * 12);
355
+ }
356
+ .w-16 {
357
+ width: calc(var(--spacing) * 16);
358
+ }
359
+ .w-64 {
360
+ width: calc(var(--spacing) * 64);
361
+ }
362
+ .w-80 {
363
+ width: calc(var(--spacing) * 80);
364
+ }
365
+ .w-full {
366
+ width: 100%;
367
+ }
368
+ .max-w-2xl {
369
+ max-width: var(--container-2xl);
370
+ }
371
+ .max-w-4xl {
372
+ max-width: var(--container-4xl);
373
+ }
374
+ .max-w-xs {
375
+ max-width: var(--container-xs);
376
+ }
377
+ .min-w-0 {
378
+ min-width: calc(var(--spacing) * 0);
379
+ }
380
+ .flex-1 {
381
+ flex: 1;
382
+ }
383
+ .rotate-180 {
384
+ rotate: 180deg;
385
+ }
386
+ .transform {
387
+ transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
388
+ }
389
+ .cursor-pointer {
390
+ cursor: pointer;
391
+ }
392
+ .resize {
393
+ resize: both;
394
+ }
395
+ .grid-cols-2 {
396
+ grid-template-columns: repeat(2, minmax(0, 1fr));
397
+ }
398
+ .grid-cols-3 {
399
+ grid-template-columns: repeat(3, minmax(0, 1fr));
400
+ }
401
+ .grid-cols-5 {
402
+ grid-template-columns: repeat(5, minmax(0, 1fr));
403
+ }
404
+ .flex-col {
405
+ flex-direction: column;
406
+ }
407
+ .items-center {
408
+ align-items: center;
409
+ }
410
+ .justify-between {
411
+ justify-content: space-between;
412
+ }
413
+ .justify-center {
414
+ justify-content: center;
415
+ }
416
+ .gap-2 {
417
+ gap: calc(var(--spacing) * 2);
418
+ }
419
+ .gap-3 {
420
+ gap: calc(var(--spacing) * 3);
421
+ }
422
+ .gap-4 {
423
+ gap: calc(var(--spacing) * 4);
424
+ }
425
+ .space-y-2 {
426
+ :where(& > :not(:last-child)) {
427
+ --tw-space-y-reverse: 0;
428
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
429
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
430
+ }
431
+ }
432
+ .space-y-3 {
433
+ :where(& > :not(:last-child)) {
434
+ --tw-space-y-reverse: 0;
435
+ margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
436
+ margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
437
+ }
438
+ }
439
+ .space-y-4 {
440
+ :where(& > :not(:last-child)) {
441
+ --tw-space-y-reverse: 0;
442
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
443
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
444
+ }
445
+ }
446
+ .space-x-1 {
447
+ :where(& > :not(:last-child)) {
448
+ --tw-space-x-reverse: 0;
449
+ margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
450
+ margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
451
+ }
452
+ }
453
+ .space-x-2 {
454
+ :where(& > :not(:last-child)) {
455
+ --tw-space-x-reverse: 0;
456
+ margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
457
+ margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
458
+ }
459
+ }
460
+ .space-x-3 {
461
+ :where(& > :not(:last-child)) {
462
+ --tw-space-x-reverse: 0;
463
+ margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
464
+ margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
465
+ }
466
+ }
467
+ .space-x-4 {
468
+ :where(& > :not(:last-child)) {
469
+ --tw-space-x-reverse: 0;
470
+ margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
471
+ margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
472
+ }
473
+ }
474
+ .truncate {
475
+ overflow: hidden;
476
+ text-overflow: ellipsis;
477
+ white-space: nowrap;
478
+ }
479
+ .overflow-hidden {
480
+ overflow: hidden;
481
+ }
482
+ .overflow-y-auto {
483
+ overflow-y: auto;
484
+ }
485
+ .rounded {
486
+ border-radius: 0.25rem;
487
+ }
488
+ .rounded-full {
489
+ border-radius: calc(infinity * 1px);
490
+ }
491
+ .rounded-lg {
492
+ border-radius: var(--radius-lg);
493
+ }
494
+ .border {
495
+ border-style: var(--tw-border-style);
496
+ border-width: 1px;
497
+ }
498
+ .border-2 {
499
+ border-style: var(--tw-border-style);
500
+ border-width: 2px;
501
+ }
502
+ .border-t {
503
+ border-top-style: var(--tw-border-style);
504
+ border-top-width: 1px;
505
+ }
506
+ .border-r {
507
+ border-right-style: var(--tw-border-style);
508
+ border-right-width: 1px;
509
+ }
510
+ .border-r-\[16px\] {
511
+ border-right-style: var(--tw-border-style);
512
+ border-right-width: 16px;
513
+ }
514
+ .border-b {
515
+ border-bottom-style: var(--tw-border-style);
516
+ border-bottom-width: 1px;
517
+ }
518
+ .border-b-\[28px\] {
519
+ border-bottom-style: var(--tw-border-style);
520
+ border-bottom-width: 28px;
521
+ }
522
+ .border-l {
523
+ border-left-style: var(--tw-border-style);
524
+ border-left-width: 1px;
525
+ }
526
+ .border-l-\[16px\] {
527
+ border-left-style: var(--tw-border-style);
528
+ border-left-width: 16px;
529
+ }
530
+ .border-dashed {
531
+ --tw-border-style: dashed;
532
+ border-style: dashed;
533
+ }
534
+ .border-gray-600 {
535
+ border-color: var(--color-gray-600);
536
+ }
537
+ .border-gray-700 {
538
+ border-color: var(--color-gray-700);
539
+ }
540
+ .border-green-500 {
541
+ border-color: var(--color-green-500);
542
+ }
543
+ .border-red-500 {
544
+ border-color: var(--color-red-500);
545
+ }
546
+ .border-r-transparent {
547
+ border-right-color: transparent;
548
+ }
549
+ .border-b-gray-300 {
550
+ border-bottom-color: var(--color-gray-300);
551
+ }
552
+ .border-l-transparent {
553
+ border-left-color: transparent;
554
+ }
555
+ .bg-black {
556
+ background-color: var(--color-black);
557
+ }
558
+ .bg-blue-600 {
559
+ background-color: var(--color-blue-600);
560
+ }
561
+ .bg-gray-600 {
562
+ background-color: var(--color-gray-600);
563
+ }
564
+ .bg-gray-700 {
565
+ background-color: var(--color-gray-700);
566
+ }
567
+ .bg-gray-700\/50 {
568
+ background-color: color-mix(in srgb, oklch(37.3% 0.034 259.733) 50%, transparent);
569
+ @supports (color: color-mix(in lab, red, red)) {
570
+ background-color: color-mix(in oklab, var(--color-gray-700) 50%, transparent);
571
+ }
572
+ }
573
+ .bg-gray-800 {
574
+ background-color: var(--color-gray-800);
575
+ }
576
+ .bg-gray-900 {
577
+ background-color: var(--color-gray-900);
578
+ }
579
+ .bg-green-500\/10 {
580
+ background-color: color-mix(in srgb, oklch(72.3% 0.219 149.579) 10%, transparent);
581
+ @supports (color: color-mix(in lab, red, red)) {
582
+ background-color: color-mix(in oklab, var(--color-green-500) 10%, transparent);
583
+ }
584
+ }
585
+ .bg-red-600 {
586
+ background-color: var(--color-red-600);
587
+ }
588
+ .bg-red-700 {
589
+ background-color: var(--color-red-700);
590
+ }
591
+ .bg-white {
592
+ background-color: var(--color-white);
593
+ }
594
+ .object-contain {
595
+ object-fit: contain;
596
+ }
597
+ .object-cover {
598
+ object-fit: cover;
599
+ }
600
+ .p-1 {
601
+ padding: calc(var(--spacing) * 1);
602
+ }
603
+ .p-2 {
604
+ padding: calc(var(--spacing) * 2);
605
+ }
606
+ .p-3 {
607
+ padding: calc(var(--spacing) * 3);
608
+ }
609
+ .p-4 {
610
+ padding: calc(var(--spacing) * 4);
611
+ }
612
+ .p-6 {
613
+ padding: calc(var(--spacing) * 6);
614
+ }
615
+ .p-8 {
616
+ padding: calc(var(--spacing) * 8);
617
+ }
618
+ .px-2 {
619
+ padding-inline: calc(var(--spacing) * 2);
620
+ }
621
+ .px-3 {
622
+ padding-inline: calc(var(--spacing) * 3);
623
+ }
624
+ .px-4 {
625
+ padding-inline: calc(var(--spacing) * 4);
626
+ }
627
+ .px-6 {
628
+ padding-inline: calc(var(--spacing) * 6);
629
+ }
630
+ .py-1 {
631
+ padding-block: calc(var(--spacing) * 1);
632
+ }
633
+ .py-2 {
634
+ padding-block: calc(var(--spacing) * 2);
635
+ }
636
+ .py-4 {
637
+ padding-block: calc(var(--spacing) * 4);
638
+ }
639
+ .py-12 {
640
+ padding-block: calc(var(--spacing) * 12);
641
+ }
642
+ .pt-4 {
643
+ padding-top: calc(var(--spacing) * 4);
644
+ }
645
+ .text-center {
646
+ text-align: center;
647
+ }
648
+ .text-right {
649
+ text-align: right;
650
+ }
651
+ .text-2xl {
652
+ font-size: var(--text-2xl);
653
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
654
+ }
655
+ .text-lg {
656
+ font-size: var(--text-lg);
657
+ line-height: var(--tw-leading, var(--text-lg--line-height));
658
+ }
659
+ .text-sm {
660
+ font-size: var(--text-sm);
661
+ line-height: var(--tw-leading, var(--text-sm--line-height));
662
+ }
663
+ .text-xl {
664
+ font-size: var(--text-xl);
665
+ line-height: var(--tw-leading, var(--text-xl--line-height));
666
+ }
667
+ .text-xs {
668
+ font-size: var(--text-xs);
669
+ line-height: var(--tw-leading, var(--text-xs--line-height));
670
+ }
671
+ .font-bold {
672
+ --tw-font-weight: var(--font-weight-bold);
673
+ font-weight: var(--font-weight-bold);
674
+ }
675
+ .font-medium {
676
+ --tw-font-weight: var(--font-weight-medium);
677
+ font-weight: var(--font-weight-medium);
678
+ }
679
+ .font-semibold {
680
+ --tw-font-weight: var(--font-weight-semibold);
681
+ font-weight: var(--font-weight-semibold);
682
+ }
683
+ .text-blue-400 {
684
+ color: var(--color-blue-400);
685
+ }
686
+ .text-gray-300 {
687
+ color: var(--color-gray-300);
688
+ }
689
+ .text-gray-400 {
690
+ color: var(--color-gray-400);
691
+ }
692
+ .text-green-400 {
693
+ color: var(--color-green-400);
694
+ }
695
+ .text-red-400 {
696
+ color: var(--color-red-400);
697
+ }
698
+ .text-white {
699
+ color: var(--color-white);
700
+ }
701
+ .capitalize {
702
+ text-transform: capitalize;
703
+ }
704
+ .lowercase {
705
+ text-transform: lowercase;
706
+ }
707
+ .uppercase {
708
+ text-transform: uppercase;
709
+ }
710
+ .italic {
711
+ font-style: italic;
712
+ }
713
+ .line-through {
714
+ text-decoration-line: line-through;
715
+ }
716
+ .underline {
717
+ text-decoration-line: underline;
718
+ }
719
+ .opacity-0 {
720
+ opacity: 0%;
721
+ }
722
+ .shadow-2xl {
723
+ --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
724
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
725
+ }
726
+ .outline {
727
+ outline-style: var(--tw-outline-style);
728
+ outline-width: 1px;
729
+ }
730
+ .grayscale {
731
+ --tw-grayscale: grayscale(100%);
732
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
733
+ }
734
+ .sepia {
735
+ --tw-sepia: sepia(100%);
736
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
737
+ }
738
+ .filter {
739
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
740
+ }
741
+ .transition-all {
742
+ transition-property: all;
743
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
744
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
745
+ }
746
+ .transition-colors {
747
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
748
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
749
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
750
+ }
751
+ .transition-opacity {
752
+ transition-property: opacity;
753
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
754
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
755
+ }
756
+ .transition-transform {
757
+ transition-property: transform, translate, scale, rotate;
758
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
759
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
760
+ }
761
+ .duration-200 {
762
+ --tw-duration: 200ms;
763
+ transition-duration: 200ms;
764
+ }
765
+ .duration-300 {
766
+ --tw-duration: 300ms;
767
+ transition-duration: 300ms;
768
+ }
769
+ .select-none {
770
+ -webkit-user-select: none;
771
+ user-select: none;
772
+ }
773
+ .group-hover\:scale-110 {
774
+ &:is(:where(.group):hover *) {
775
+ @media (hover: hover) {
776
+ --tw-scale-x: 110%;
777
+ --tw-scale-y: 110%;
778
+ --tw-scale-z: 110%;
779
+ scale: var(--tw-scale-x) var(--tw-scale-y);
780
+ }
781
+ }
782
+ }
783
+ .group-hover\:opacity-100 {
784
+ &:is(:where(.group):hover *) {
785
+ @media (hover: hover) {
786
+ opacity: 100%;
787
+ }
788
+ }
789
+ }
790
+ .hover\:border-gray-500 {
791
+ &:hover {
792
+ @media (hover: hover) {
793
+ border-color: var(--color-gray-500);
794
+ }
795
+ }
796
+ }
797
+ .hover\:bg-blue-700 {
798
+ &:hover {
799
+ @media (hover: hover) {
800
+ background-color: var(--color-blue-700);
801
+ }
802
+ }
803
+ }
804
+ .hover\:bg-gray-500 {
805
+ &:hover {
806
+ @media (hover: hover) {
807
+ background-color: var(--color-gray-500);
808
+ }
809
+ }
810
+ }
811
+ .hover\:bg-gray-600 {
812
+ &:hover {
813
+ @media (hover: hover) {
814
+ background-color: var(--color-gray-600);
815
+ }
816
+ }
817
+ }
818
+ .hover\:bg-gray-700 {
819
+ &:hover {
820
+ @media (hover: hover) {
821
+ background-color: var(--color-gray-700);
822
+ }
823
+ }
824
+ }
825
+ .hover\:bg-red-600 {
826
+ &:hover {
827
+ @media (hover: hover) {
828
+ background-color: var(--color-red-600);
829
+ }
830
+ }
831
+ }
832
+ .hover\:bg-red-700 {
833
+ &:hover {
834
+ @media (hover: hover) {
835
+ background-color: var(--color-red-700);
836
+ }
837
+ }
838
+ }
839
+ .hover\:text-red-300 {
840
+ &:hover {
841
+ @media (hover: hover) {
842
+ color: var(--color-red-300);
843
+ }
844
+ }
845
+ }
846
+ .hover\:text-white {
847
+ &:hover {
848
+ @media (hover: hover) {
849
+ color: var(--color-white);
850
+ }
851
+ }
852
+ }
853
+ .focus\:border-blue-500 {
854
+ &:focus {
855
+ border-color: var(--color-blue-500);
856
+ }
857
+ }
858
+ .focus\:ring-2 {
859
+ &:focus {
860
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
861
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
862
+ }
863
+ }
864
+ .focus\:ring-blue-500 {
865
+ &:focus {
866
+ --tw-ring-color: var(--color-blue-500);
867
+ }
868
+ }
869
+ .focus\:outline-none {
870
+ &:focus {
871
+ --tw-outline-style: none;
872
+ outline-style: none;
873
+ }
874
+ }
875
+ .disabled\:text-gray-600 {
876
+ &:disabled {
877
+ color: var(--color-gray-600);
878
+ }
879
+ }
880
+ }
881
+ @property --tw-rotate-x {
882
+ syntax: "*";
883
+ inherits: false;
884
+ }
885
+ @property --tw-rotate-y {
886
+ syntax: "*";
887
+ inherits: false;
888
+ }
889
+ @property --tw-rotate-z {
890
+ syntax: "*";
891
+ inherits: false;
892
+ }
893
+ @property --tw-skew-x {
894
+ syntax: "*";
895
+ inherits: false;
896
+ }
897
+ @property --tw-skew-y {
898
+ syntax: "*";
899
+ inherits: false;
900
+ }
901
+ @property --tw-space-y-reverse {
902
+ syntax: "*";
903
+ inherits: false;
904
+ initial-value: 0;
905
+ }
906
+ @property --tw-space-x-reverse {
907
+ syntax: "*";
908
+ inherits: false;
909
+ initial-value: 0;
910
+ }
911
+ @property --tw-border-style {
912
+ syntax: "*";
913
+ inherits: false;
914
+ initial-value: solid;
915
+ }
916
+ @property --tw-font-weight {
917
+ syntax: "*";
918
+ inherits: false;
919
+ }
920
+ @property --tw-shadow {
921
+ syntax: "*";
922
+ inherits: false;
923
+ initial-value: 0 0 #0000;
924
+ }
925
+ @property --tw-shadow-color {
926
+ syntax: "*";
927
+ inherits: false;
928
+ }
929
+ @property --tw-shadow-alpha {
930
+ syntax: "<percentage>";
931
+ inherits: false;
932
+ initial-value: 100%;
933
+ }
934
+ @property --tw-inset-shadow {
935
+ syntax: "*";
936
+ inherits: false;
937
+ initial-value: 0 0 #0000;
938
+ }
939
+ @property --tw-inset-shadow-color {
940
+ syntax: "*";
941
+ inherits: false;
942
+ }
943
+ @property --tw-inset-shadow-alpha {
944
+ syntax: "<percentage>";
945
+ inherits: false;
946
+ initial-value: 100%;
947
+ }
948
+ @property --tw-ring-color {
949
+ syntax: "*";
950
+ inherits: false;
951
+ }
952
+ @property --tw-ring-shadow {
953
+ syntax: "*";
954
+ inherits: false;
955
+ initial-value: 0 0 #0000;
956
+ }
957
+ @property --tw-inset-ring-color {
958
+ syntax: "*";
959
+ inherits: false;
960
+ }
961
+ @property --tw-inset-ring-shadow {
962
+ syntax: "*";
963
+ inherits: false;
964
+ initial-value: 0 0 #0000;
965
+ }
966
+ @property --tw-ring-inset {
967
+ syntax: "*";
968
+ inherits: false;
969
+ }
970
+ @property --tw-ring-offset-width {
971
+ syntax: "<length>";
972
+ inherits: false;
973
+ initial-value: 0px;
974
+ }
975
+ @property --tw-ring-offset-color {
976
+ syntax: "*";
977
+ inherits: false;
978
+ initial-value: #fff;
979
+ }
980
+ @property --tw-ring-offset-shadow {
981
+ syntax: "*";
982
+ inherits: false;
983
+ initial-value: 0 0 #0000;
984
+ }
985
+ @property --tw-outline-style {
986
+ syntax: "*";
987
+ inherits: false;
988
+ initial-value: solid;
989
+ }
990
+ @property --tw-blur {
991
+ syntax: "*";
992
+ inherits: false;
993
+ }
994
+ @property --tw-brightness {
995
+ syntax: "*";
996
+ inherits: false;
997
+ }
998
+ @property --tw-contrast {
999
+ syntax: "*";
1000
+ inherits: false;
1001
+ }
1002
+ @property --tw-grayscale {
1003
+ syntax: "*";
1004
+ inherits: false;
1005
+ }
1006
+ @property --tw-hue-rotate {
1007
+ syntax: "*";
1008
+ inherits: false;
1009
+ }
1010
+ @property --tw-invert {
1011
+ syntax: "*";
1012
+ inherits: false;
1013
+ }
1014
+ @property --tw-opacity {
1015
+ syntax: "*";
1016
+ inherits: false;
1017
+ }
1018
+ @property --tw-saturate {
1019
+ syntax: "*";
1020
+ inherits: false;
1021
+ }
1022
+ @property --tw-sepia {
1023
+ syntax: "*";
1024
+ inherits: false;
1025
+ }
1026
+ @property --tw-drop-shadow {
1027
+ syntax: "*";
1028
+ inherits: false;
1029
+ }
1030
+ @property --tw-drop-shadow-color {
1031
+ syntax: "*";
1032
+ inherits: false;
1033
+ }
1034
+ @property --tw-drop-shadow-alpha {
1035
+ syntax: "<percentage>";
1036
+ inherits: false;
1037
+ initial-value: 100%;
1038
+ }
1039
+ @property --tw-drop-shadow-size {
1040
+ syntax: "*";
1041
+ inherits: false;
1042
+ }
1043
+ @property --tw-duration {
1044
+ syntax: "*";
1045
+ inherits: false;
1046
+ }
1047
+ @property --tw-scale-x {
1048
+ syntax: "*";
1049
+ inherits: false;
1050
+ initial-value: 1;
1051
+ }
1052
+ @property --tw-scale-y {
1053
+ syntax: "*";
1054
+ inherits: false;
1055
+ initial-value: 1;
1056
+ }
1057
+ @property --tw-scale-z {
1058
+ syntax: "*";
1059
+ inherits: false;
1060
+ initial-value: 1;
1061
+ }
1062
+ @layer properties {
1063
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
1064
+ *, ::before, ::after, ::backdrop {
1065
+ --tw-rotate-x: initial;
1066
+ --tw-rotate-y: initial;
1067
+ --tw-rotate-z: initial;
1068
+ --tw-skew-x: initial;
1069
+ --tw-skew-y: initial;
1070
+ --tw-space-y-reverse: 0;
1071
+ --tw-space-x-reverse: 0;
1072
+ --tw-border-style: solid;
1073
+ --tw-font-weight: initial;
1074
+ --tw-shadow: 0 0 #0000;
1075
+ --tw-shadow-color: initial;
1076
+ --tw-shadow-alpha: 100%;
1077
+ --tw-inset-shadow: 0 0 #0000;
1078
+ --tw-inset-shadow-color: initial;
1079
+ --tw-inset-shadow-alpha: 100%;
1080
+ --tw-ring-color: initial;
1081
+ --tw-ring-shadow: 0 0 #0000;
1082
+ --tw-inset-ring-color: initial;
1083
+ --tw-inset-ring-shadow: 0 0 #0000;
1084
+ --tw-ring-inset: initial;
1085
+ --tw-ring-offset-width: 0px;
1086
+ --tw-ring-offset-color: #fff;
1087
+ --tw-ring-offset-shadow: 0 0 #0000;
1088
+ --tw-outline-style: solid;
1089
+ --tw-blur: initial;
1090
+ --tw-brightness: initial;
1091
+ --tw-contrast: initial;
1092
+ --tw-grayscale: initial;
1093
+ --tw-hue-rotate: initial;
1094
+ --tw-invert: initial;
1095
+ --tw-opacity: initial;
1096
+ --tw-saturate: initial;
1097
+ --tw-sepia: initial;
1098
+ --tw-drop-shadow: initial;
1099
+ --tw-drop-shadow-color: initial;
1100
+ --tw-drop-shadow-alpha: 100%;
1101
+ --tw-drop-shadow-size: initial;
1102
+ --tw-duration: initial;
1103
+ --tw-scale-x: 1;
1104
+ --tw-scale-y: 1;
1105
+ --tw-scale-z: 1;
1106
+ }
1107
+ }
1108
+ }
1109
+