@evercam/ui 0.0.0-alpha

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4015 @@
1
+ function N(e, i, n, h, o, u, r, y) {
2
+ var a = typeof e == "function" ? e.options : e;
3
+ i && (a.render = i, a.staticRenderFns = n, a._compiled = !0), h && (a.functional = !0), u && (a._scopeId = "data-v-" + u);
4
+ var t;
5
+ if (r ? (t = function(f) {
6
+ f = f || // cached call
7
+ this.$vnode && this.$vnode.ssrContext || // stateful
8
+ this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext, !f && typeof __VUE_SSR_CONTEXT__ != "undefined" && (f = __VUE_SSR_CONTEXT__), o && o.call(this, f), f && f._registeredComponents && f._registeredComponents.add(r);
9
+ }, a._ssrRegister = t) : o && (t = y ? function() {
10
+ o.call(
11
+ this,
12
+ (a.functional ? this.parent : this).$root.$options.shadowRoot
13
+ );
14
+ } : o), t)
15
+ if (a.functional) {
16
+ a._injectStyles = t;
17
+ var d = a.render;
18
+ a.render = function(w, g) {
19
+ return t.call(g), d(w, g);
20
+ };
21
+ } else {
22
+ var m = a.beforeCreate;
23
+ a.beforeCreate = m ? [].concat(m, t) : [t];
24
+ }
25
+ return {
26
+ exports: e,
27
+ options: a
28
+ };
29
+ }
30
+ const we = {
31
+ name: "EBadge",
32
+ props: {
33
+ text: {
34
+ type: String,
35
+ default: ""
36
+ },
37
+ color: {
38
+ type: String,
39
+ default: ""
40
+ },
41
+ size: {
42
+ type: String,
43
+ default: ""
44
+ }
45
+ },
46
+ data() {
47
+ return {
48
+ colors: {
49
+ error: "e-bg-rose-500 e-text-white",
50
+ info: "e-bg-cyan-500 e-text-white",
51
+ warning: "e-bg-amber-500 e-text-white",
52
+ primary: "e-bg-sky-500 e-text-white",
53
+ default: "e-bg-slate-300 e-text-white",
54
+ success: "e-bg-lime-500 e-text-white"
55
+ },
56
+ sizes: {
57
+ dot: "e-w-2 h-2",
58
+ xs: "e-w-3 h-3",
59
+ sm: "e-w-4 h-4",
60
+ md: "e-w-5 h-5",
61
+ lg: "e-min-w-[2rem] e-max-w-[4rem] e-px-1 e-h-6 e-text-sm e-font-medium",
62
+ xl: "e-min-w-[3rem] e-max-w-[5rem] e-px-1 e-h-8 e-text-base e-font-medium"
63
+ }
64
+ };
65
+ },
66
+ computed: {
67
+ badgeClasses() {
68
+ const e = this.colors[this.color] || this.colors.default, i = this.sizes[this.size] || this.sizes.md;
69
+ return [
70
+ "e-flex e-items-center e-justify-center e-rounded-full",
71
+ e,
72
+ i
73
+ ];
74
+ },
75
+ showText() {
76
+ return ["lg", "xl"].includes(this.size);
77
+ }
78
+ }
79
+ };
80
+ var Ce = function() {
81
+ var i = this, n = i._self._c;
82
+ return n("span", { staticClass: "e-badge", class: i.badgeClasses }, [i.showText ? n("span", [i._v(i._s(i.text))]) : i._e()]);
83
+ }, Se = [], Oe = /* @__PURE__ */ N(
84
+ we,
85
+ Ce,
86
+ Se,
87
+ !1,
88
+ null,
89
+ null,
90
+ null,
91
+ null
92
+ );
93
+ const te = Oe.exports, ke = {
94
+ name: "EAvatar",
95
+ components: {
96
+ Badge: te
97
+ },
98
+ props: {
99
+ size: {
100
+ type: String,
101
+ default: ""
102
+ },
103
+ showBadge: {
104
+ type: Boolean,
105
+ default: !1
106
+ },
107
+ badgeColor: {
108
+ type: String,
109
+ default: "error"
110
+ },
111
+ badgeText: {
112
+ type: String,
113
+ default: ""
114
+ },
115
+ badgeSize: {
116
+ type: String,
117
+ default: ""
118
+ },
119
+ image: {
120
+ type: String,
121
+ default: ""
122
+ }
123
+ },
124
+ data() {
125
+ return {
126
+ sizes: {
127
+ xs: "e-w-8 e-h-8 e-text-xs",
128
+ sm: "e-w-10 e-h-10 e-text-sm",
129
+ md: "e-w-14 e-h-14 e-text-base",
130
+ lg: "e-w-20 e-h-20 e-text-2xl",
131
+ xl: "e-w-28 e-h-28 e-text-3xl",
132
+ "2xl": "e-w-36 e-h-36 e-text-5xl"
133
+ }
134
+ };
135
+ },
136
+ computed: {
137
+ avatarClasses() {
138
+ return [
139
+ "e-flex e-items-center e-justify-center e-rounded-full e-bg-purple-500 e-text-white e-font-medium",
140
+ this.sizes[this.size] || this.sizes.xs
141
+ ];
142
+ }
143
+ }
144
+ };
145
+ var Ae = function() {
146
+ var i = this, n = i._self._c;
147
+ return n("div", { staticClass: "e-avatar e-relative", class: i.avatarClasses }, [i._t("default", function() {
148
+ return [i.image ? n("img", { staticClass: "e-avatar__image e-w-full e-h-full e-object-cover e-rounded-full", attrs: { src: i.image } }) : i._e()];
149
+ }), i.showBadge ? n("div", { staticClass: "e-avatar__badge e-absolute e-top-0 e-right-0" }, [i._t("badge", function() {
150
+ return [n("Badge", { attrs: { text: i.badgeText, color: i.badgeColor, size: i.badgeSize } })];
151
+ })], 2) : i._e()], 2);
152
+ }, ze = [], Pe = /* @__PURE__ */ N(
153
+ ke,
154
+ Ae,
155
+ ze,
156
+ !1,
157
+ null,
158
+ null,
159
+ null,
160
+ null
161
+ );
162
+ const Ee = Pe.exports, $e = {
163
+ name: "EIcon",
164
+ props: {
165
+ icon: {
166
+ type: String,
167
+ default: ""
168
+ },
169
+ color: {
170
+ type: String,
171
+ default: ""
172
+ },
173
+ size: {
174
+ type: String,
175
+ default: ""
176
+ }
177
+ },
178
+ computed: {
179
+ sizes() {
180
+ let e = {
181
+ xs: "e-text-xs",
182
+ sm: "e-text-sm",
183
+ md: "e-text-base",
184
+ lg: "e-text-lg"
185
+ }, i = [...Array(9).keys()].reduce((n, h) => {
186
+ const o = `${h + 1 === 1 ? "" : h + 1}xl`;
187
+ return { ...n, [o]: `e-text-${o}` };
188
+ }, {});
189
+ return { ...e, ...i };
190
+ },
191
+ iconClasses() {
192
+ var h, o;
193
+ const e = this.sizes[this.size] || this.sizes.sm, i = `${((o = (h = this.icon) == null ? void 0 : h.split(" ")) == null ? void 0 : o.length) > 1 ? this.icon : `fa fa-${this.icon}`}`;
194
+ return [
195
+ "e-inline-flex e-items-center e-justify-center e-rounded-full",
196
+ `${this.color}`,
197
+ i,
198
+ e
199
+ ];
200
+ }
201
+ }
202
+ };
203
+ var Te = function() {
204
+ var i = this, n = i._self._c;
205
+ return n("div", { staticClass: "e-icon" }, [n("i", { class: i.iconClasses })]);
206
+ }, De = [], je = /* @__PURE__ */ N(
207
+ $e,
208
+ Te,
209
+ De,
210
+ !1,
211
+ null,
212
+ null,
213
+ null,
214
+ null
215
+ );
216
+ const Fe = je.exports;
217
+ function Me(e) {
218
+ return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
219
+ }
220
+ var re = {}, ne = {}, Y = {};
221
+ (function(e) {
222
+ Object.defineProperty(e, "__esModule", {
223
+ value: !0
224
+ }), Object.defineProperty(e, "default", {
225
+ enumerable: !0,
226
+ get: function() {
227
+ return i;
228
+ }
229
+ });
230
+ function i(n) {
231
+ if (n = `${n}`, n === "0")
232
+ return "0";
233
+ if (/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(n))
234
+ return n.replace(/^[+-]?/, (o) => o === "-" ? "" : "-");
235
+ let h = [
236
+ "var",
237
+ "calc",
238
+ "min",
239
+ "max",
240
+ "clamp"
241
+ ];
242
+ for (const o of h)
243
+ if (n.includes(`${o}(`))
244
+ return `calc(${n} * -1)`;
245
+ }
246
+ })(Y);
247
+ var ie = {};
248
+ (function(e) {
249
+ Object.defineProperty(e, "__esModule", {
250
+ value: !0
251
+ }), Object.defineProperty(e, "default", {
252
+ enumerable: !0,
253
+ get: function() {
254
+ return i;
255
+ }
256
+ });
257
+ const i = [
258
+ "preflight",
259
+ "container",
260
+ "accessibility",
261
+ "pointerEvents",
262
+ "visibility",
263
+ "position",
264
+ "inset",
265
+ "isolation",
266
+ "zIndex",
267
+ "order",
268
+ "gridColumn",
269
+ "gridColumnStart",
270
+ "gridColumnEnd",
271
+ "gridRow",
272
+ "gridRowStart",
273
+ "gridRowEnd",
274
+ "float",
275
+ "clear",
276
+ "margin",
277
+ "boxSizing",
278
+ "lineClamp",
279
+ "display",
280
+ "aspectRatio",
281
+ "height",
282
+ "maxHeight",
283
+ "minHeight",
284
+ "width",
285
+ "minWidth",
286
+ "maxWidth",
287
+ "flex",
288
+ "flexShrink",
289
+ "flexGrow",
290
+ "flexBasis",
291
+ "tableLayout",
292
+ "captionSide",
293
+ "borderCollapse",
294
+ "borderSpacing",
295
+ "transformOrigin",
296
+ "translate",
297
+ "rotate",
298
+ "skew",
299
+ "scale",
300
+ "transform",
301
+ "animation",
302
+ "cursor",
303
+ "touchAction",
304
+ "userSelect",
305
+ "resize",
306
+ "scrollSnapType",
307
+ "scrollSnapAlign",
308
+ "scrollSnapStop",
309
+ "scrollMargin",
310
+ "scrollPadding",
311
+ "listStylePosition",
312
+ "listStyleType",
313
+ "listStyleImage",
314
+ "appearance",
315
+ "columns",
316
+ "breakBefore",
317
+ "breakInside",
318
+ "breakAfter",
319
+ "gridAutoColumns",
320
+ "gridAutoFlow",
321
+ "gridAutoRows",
322
+ "gridTemplateColumns",
323
+ "gridTemplateRows",
324
+ "flexDirection",
325
+ "flexWrap",
326
+ "placeContent",
327
+ "placeItems",
328
+ "alignContent",
329
+ "alignItems",
330
+ "justifyContent",
331
+ "justifyItems",
332
+ "gap",
333
+ "space",
334
+ "divideWidth",
335
+ "divideStyle",
336
+ "divideColor",
337
+ "divideOpacity",
338
+ "placeSelf",
339
+ "alignSelf",
340
+ "justifySelf",
341
+ "overflow",
342
+ "overscrollBehavior",
343
+ "scrollBehavior",
344
+ "textOverflow",
345
+ "hyphens",
346
+ "whitespace",
347
+ "wordBreak",
348
+ "borderRadius",
349
+ "borderWidth",
350
+ "borderStyle",
351
+ "borderColor",
352
+ "borderOpacity",
353
+ "backgroundColor",
354
+ "backgroundOpacity",
355
+ "backgroundImage",
356
+ "gradientColorStops",
357
+ "boxDecorationBreak",
358
+ "backgroundSize",
359
+ "backgroundAttachment",
360
+ "backgroundClip",
361
+ "backgroundPosition",
362
+ "backgroundRepeat",
363
+ "backgroundOrigin",
364
+ "fill",
365
+ "stroke",
366
+ "strokeWidth",
367
+ "objectFit",
368
+ "objectPosition",
369
+ "padding",
370
+ "textAlign",
371
+ "textIndent",
372
+ "verticalAlign",
373
+ "fontFamily",
374
+ "fontSize",
375
+ "fontWeight",
376
+ "textTransform",
377
+ "fontStyle",
378
+ "fontVariantNumeric",
379
+ "lineHeight",
380
+ "letterSpacing",
381
+ "textColor",
382
+ "textOpacity",
383
+ "textDecoration",
384
+ "textDecorationColor",
385
+ "textDecorationStyle",
386
+ "textDecorationThickness",
387
+ "textUnderlineOffset",
388
+ "fontSmoothing",
389
+ "placeholderColor",
390
+ "placeholderOpacity",
391
+ "caretColor",
392
+ "accentColor",
393
+ "opacity",
394
+ "backgroundBlendMode",
395
+ "mixBlendMode",
396
+ "boxShadow",
397
+ "boxShadowColor",
398
+ "outlineStyle",
399
+ "outlineWidth",
400
+ "outlineOffset",
401
+ "outlineColor",
402
+ "ringWidth",
403
+ "ringColor",
404
+ "ringOpacity",
405
+ "ringOffsetWidth",
406
+ "ringOffsetColor",
407
+ "blur",
408
+ "brightness",
409
+ "contrast",
410
+ "dropShadow",
411
+ "grayscale",
412
+ "hueRotate",
413
+ "invert",
414
+ "saturate",
415
+ "sepia",
416
+ "filter",
417
+ "backdropBlur",
418
+ "backdropBrightness",
419
+ "backdropContrast",
420
+ "backdropGrayscale",
421
+ "backdropHueRotate",
422
+ "backdropInvert",
423
+ "backdropOpacity",
424
+ "backdropSaturate",
425
+ "backdropSepia",
426
+ "backdropFilter",
427
+ "transitionProperty",
428
+ "transitionDelay",
429
+ "transitionDuration",
430
+ "transitionTimingFunction",
431
+ "willChange",
432
+ "content"
433
+ ];
434
+ })(ie);
435
+ var ae = {};
436
+ (function(e) {
437
+ Object.defineProperty(e, "__esModule", {
438
+ value: !0
439
+ }), Object.defineProperty(e, "default", {
440
+ enumerable: !0,
441
+ get: function() {
442
+ return i;
443
+ }
444
+ });
445
+ function i(n, h) {
446
+ return n === void 0 ? h : Array.isArray(n) ? n : [
447
+ ...new Set(h.filter((u) => n !== !1 && n[u] !== !1).concat(Object.keys(n).filter((u) => n[u] !== !1)))
448
+ ];
449
+ }
450
+ })(ae);
451
+ var K = {}, V = {}, X = { exports: {} }, E = String, oe = function() {
452
+ return { isColorSupported: !1, reset: E, bold: E, dim: E, italic: E, underline: E, inverse: E, hidden: E, strikethrough: E, black: E, red: E, green: E, yellow: E, blue: E, magenta: E, cyan: E, white: E, gray: E, bgBlack: E, bgRed: E, bgGreen: E, bgYellow: E, bgBlue: E, bgMagenta: E, bgCyan: E, bgWhite: E };
453
+ };
454
+ X.exports = oe();
455
+ X.exports.createColors = oe;
456
+ var le = X.exports;
457
+ (function(e) {
458
+ Object.defineProperty(e, "__esModule", {
459
+ value: !0
460
+ });
461
+ function i(a, t) {
462
+ for (var d in t)
463
+ Object.defineProperty(a, d, {
464
+ enumerable: !0,
465
+ get: t[d]
466
+ });
467
+ }
468
+ i(e, {
469
+ dim: function() {
470
+ return r;
471
+ },
472
+ default: function() {
473
+ return y;
474
+ }
475
+ });
476
+ const n = /* @__PURE__ */ h(le);
477
+ function h(a) {
478
+ return a && a.__esModule ? a : {
479
+ default: a
480
+ };
481
+ }
482
+ let o = /* @__PURE__ */ new Set();
483
+ function u(a, t, d) {
484
+ typeof process != "undefined" && process.env.JEST_WORKER_ID || d && o.has(d) || (d && o.add(d), console.warn(""), t.forEach((m) => console.warn(a, "-", m)));
485
+ }
486
+ function r(a) {
487
+ return n.default.dim(a);
488
+ }
489
+ const y = {
490
+ info(a, t) {
491
+ u(n.default.bold(n.default.cyan("info")), ...Array.isArray(a) ? [
492
+ a
493
+ ] : [
494
+ t,
495
+ a
496
+ ]);
497
+ },
498
+ warn(a, t) {
499
+ u(n.default.bold(n.default.yellow("warn")), ...Array.isArray(a) ? [
500
+ a
501
+ ] : [
502
+ t,
503
+ a
504
+ ]);
505
+ },
506
+ risk(a, t) {
507
+ u(n.default.bold(n.default.magenta("risk")), ...Array.isArray(a) ? [
508
+ a
509
+ ] : [
510
+ t,
511
+ a
512
+ ]);
513
+ }
514
+ };
515
+ })(V);
516
+ (function(e) {
517
+ Object.defineProperty(e, "__esModule", {
518
+ value: !0
519
+ }), Object.defineProperty(e, "default", {
520
+ enumerable: !0,
521
+ get: function() {
522
+ return o;
523
+ }
524
+ });
525
+ const i = /* @__PURE__ */ n(V);
526
+ function n(u) {
527
+ return u && u.__esModule ? u : {
528
+ default: u
529
+ };
530
+ }
531
+ function h({ version: u, from: r, to: y }) {
532
+ i.default.warn(`${r}-color-renamed`, [
533
+ `As of Tailwind CSS ${u}, \`${r}\` has been renamed to \`${y}\`.`,
534
+ "Update your configuration file to silence this warning."
535
+ ]);
536
+ }
537
+ const o = {
538
+ inherit: "inherit",
539
+ current: "currentColor",
540
+ transparent: "transparent",
541
+ black: "#000",
542
+ white: "#fff",
543
+ slate: {
544
+ 50: "#f8fafc",
545
+ 100: "#f1f5f9",
546
+ 200: "#e2e8f0",
547
+ 300: "#cbd5e1",
548
+ 400: "#94a3b8",
549
+ 500: "#64748b",
550
+ 600: "#475569",
551
+ 700: "#334155",
552
+ 800: "#1e293b",
553
+ 900: "#0f172a",
554
+ 950: "#020617"
555
+ },
556
+ gray: {
557
+ 50: "#f9fafb",
558
+ 100: "#f3f4f6",
559
+ 200: "#e5e7eb",
560
+ 300: "#d1d5db",
561
+ 400: "#9ca3af",
562
+ 500: "#6b7280",
563
+ 600: "#4b5563",
564
+ 700: "#374151",
565
+ 800: "#1f2937",
566
+ 900: "#111827",
567
+ 950: "#030712"
568
+ },
569
+ zinc: {
570
+ 50: "#fafafa",
571
+ 100: "#f4f4f5",
572
+ 200: "#e4e4e7",
573
+ 300: "#d4d4d8",
574
+ 400: "#a1a1aa",
575
+ 500: "#71717a",
576
+ 600: "#52525b",
577
+ 700: "#3f3f46",
578
+ 800: "#27272a",
579
+ 900: "#18181b",
580
+ 950: "#09090b"
581
+ },
582
+ neutral: {
583
+ 50: "#fafafa",
584
+ 100: "#f5f5f5",
585
+ 200: "#e5e5e5",
586
+ 300: "#d4d4d4",
587
+ 400: "#a3a3a3",
588
+ 500: "#737373",
589
+ 600: "#525252",
590
+ 700: "#404040",
591
+ 800: "#262626",
592
+ 900: "#171717",
593
+ 950: "#0a0a0a"
594
+ },
595
+ stone: {
596
+ 50: "#fafaf9",
597
+ 100: "#f5f5f4",
598
+ 200: "#e7e5e4",
599
+ 300: "#d6d3d1",
600
+ 400: "#a8a29e",
601
+ 500: "#78716c",
602
+ 600: "#57534e",
603
+ 700: "#44403c",
604
+ 800: "#292524",
605
+ 900: "#1c1917",
606
+ 950: "#0c0a09"
607
+ },
608
+ red: {
609
+ 50: "#fef2f2",
610
+ 100: "#fee2e2",
611
+ 200: "#fecaca",
612
+ 300: "#fca5a5",
613
+ 400: "#f87171",
614
+ 500: "#ef4444",
615
+ 600: "#dc2626",
616
+ 700: "#b91c1c",
617
+ 800: "#991b1b",
618
+ 900: "#7f1d1d",
619
+ 950: "#450a0a"
620
+ },
621
+ orange: {
622
+ 50: "#fff7ed",
623
+ 100: "#ffedd5",
624
+ 200: "#fed7aa",
625
+ 300: "#fdba74",
626
+ 400: "#fb923c",
627
+ 500: "#f97316",
628
+ 600: "#ea580c",
629
+ 700: "#c2410c",
630
+ 800: "#9a3412",
631
+ 900: "#7c2d12",
632
+ 950: "#431407"
633
+ },
634
+ amber: {
635
+ 50: "#fffbeb",
636
+ 100: "#fef3c7",
637
+ 200: "#fde68a",
638
+ 300: "#fcd34d",
639
+ 400: "#fbbf24",
640
+ 500: "#f59e0b",
641
+ 600: "#d97706",
642
+ 700: "#b45309",
643
+ 800: "#92400e",
644
+ 900: "#78350f",
645
+ 950: "#451a03"
646
+ },
647
+ yellow: {
648
+ 50: "#fefce8",
649
+ 100: "#fef9c3",
650
+ 200: "#fef08a",
651
+ 300: "#fde047",
652
+ 400: "#facc15",
653
+ 500: "#eab308",
654
+ 600: "#ca8a04",
655
+ 700: "#a16207",
656
+ 800: "#854d0e",
657
+ 900: "#713f12",
658
+ 950: "#422006"
659
+ },
660
+ lime: {
661
+ 50: "#f7fee7",
662
+ 100: "#ecfccb",
663
+ 200: "#d9f99d",
664
+ 300: "#bef264",
665
+ 400: "#a3e635",
666
+ 500: "#84cc16",
667
+ 600: "#65a30d",
668
+ 700: "#4d7c0f",
669
+ 800: "#3f6212",
670
+ 900: "#365314",
671
+ 950: "#1a2e05"
672
+ },
673
+ green: {
674
+ 50: "#f0fdf4",
675
+ 100: "#dcfce7",
676
+ 200: "#bbf7d0",
677
+ 300: "#86efac",
678
+ 400: "#4ade80",
679
+ 500: "#22c55e",
680
+ 600: "#16a34a",
681
+ 700: "#15803d",
682
+ 800: "#166534",
683
+ 900: "#14532d",
684
+ 950: "#052e16"
685
+ },
686
+ emerald: {
687
+ 50: "#ecfdf5",
688
+ 100: "#d1fae5",
689
+ 200: "#a7f3d0",
690
+ 300: "#6ee7b7",
691
+ 400: "#34d399",
692
+ 500: "#10b981",
693
+ 600: "#059669",
694
+ 700: "#047857",
695
+ 800: "#065f46",
696
+ 900: "#064e3b",
697
+ 950: "#022c22"
698
+ },
699
+ teal: {
700
+ 50: "#f0fdfa",
701
+ 100: "#ccfbf1",
702
+ 200: "#99f6e4",
703
+ 300: "#5eead4",
704
+ 400: "#2dd4bf",
705
+ 500: "#14b8a6",
706
+ 600: "#0d9488",
707
+ 700: "#0f766e",
708
+ 800: "#115e59",
709
+ 900: "#134e4a",
710
+ 950: "#042f2e"
711
+ },
712
+ cyan: {
713
+ 50: "#ecfeff",
714
+ 100: "#cffafe",
715
+ 200: "#a5f3fc",
716
+ 300: "#67e8f9",
717
+ 400: "#22d3ee",
718
+ 500: "#06b6d4",
719
+ 600: "#0891b2",
720
+ 700: "#0e7490",
721
+ 800: "#155e75",
722
+ 900: "#164e63",
723
+ 950: "#083344"
724
+ },
725
+ sky: {
726
+ 50: "#f0f9ff",
727
+ 100: "#e0f2fe",
728
+ 200: "#bae6fd",
729
+ 300: "#7dd3fc",
730
+ 400: "#38bdf8",
731
+ 500: "#0ea5e9",
732
+ 600: "#0284c7",
733
+ 700: "#0369a1",
734
+ 800: "#075985",
735
+ 900: "#0c4a6e",
736
+ 950: "#082f49"
737
+ },
738
+ blue: {
739
+ 50: "#eff6ff",
740
+ 100: "#dbeafe",
741
+ 200: "#bfdbfe",
742
+ 300: "#93c5fd",
743
+ 400: "#60a5fa",
744
+ 500: "#3b82f6",
745
+ 600: "#2563eb",
746
+ 700: "#1d4ed8",
747
+ 800: "#1e40af",
748
+ 900: "#1e3a8a",
749
+ 950: "#172554"
750
+ },
751
+ indigo: {
752
+ 50: "#eef2ff",
753
+ 100: "#e0e7ff",
754
+ 200: "#c7d2fe",
755
+ 300: "#a5b4fc",
756
+ 400: "#818cf8",
757
+ 500: "#6366f1",
758
+ 600: "#4f46e5",
759
+ 700: "#4338ca",
760
+ 800: "#3730a3",
761
+ 900: "#312e81",
762
+ 950: "#1e1b4b"
763
+ },
764
+ violet: {
765
+ 50: "#f5f3ff",
766
+ 100: "#ede9fe",
767
+ 200: "#ddd6fe",
768
+ 300: "#c4b5fd",
769
+ 400: "#a78bfa",
770
+ 500: "#8b5cf6",
771
+ 600: "#7c3aed",
772
+ 700: "#6d28d9",
773
+ 800: "#5b21b6",
774
+ 900: "#4c1d95",
775
+ 950: "#2e1065"
776
+ },
777
+ purple: {
778
+ 50: "#faf5ff",
779
+ 100: "#f3e8ff",
780
+ 200: "#e9d5ff",
781
+ 300: "#d8b4fe",
782
+ 400: "#c084fc",
783
+ 500: "#a855f7",
784
+ 600: "#9333ea",
785
+ 700: "#7e22ce",
786
+ 800: "#6b21a8",
787
+ 900: "#581c87",
788
+ 950: "#3b0764"
789
+ },
790
+ fuchsia: {
791
+ 50: "#fdf4ff",
792
+ 100: "#fae8ff",
793
+ 200: "#f5d0fe",
794
+ 300: "#f0abfc",
795
+ 400: "#e879f9",
796
+ 500: "#d946ef",
797
+ 600: "#c026d3",
798
+ 700: "#a21caf",
799
+ 800: "#86198f",
800
+ 900: "#701a75",
801
+ 950: "#4a044e"
802
+ },
803
+ pink: {
804
+ 50: "#fdf2f8",
805
+ 100: "#fce7f3",
806
+ 200: "#fbcfe8",
807
+ 300: "#f9a8d4",
808
+ 400: "#f472b6",
809
+ 500: "#ec4899",
810
+ 600: "#db2777",
811
+ 700: "#be185d",
812
+ 800: "#9d174d",
813
+ 900: "#831843",
814
+ 950: "#500724"
815
+ },
816
+ rose: {
817
+ 50: "#fff1f2",
818
+ 100: "#ffe4e6",
819
+ 200: "#fecdd3",
820
+ 300: "#fda4af",
821
+ 400: "#fb7185",
822
+ 500: "#f43f5e",
823
+ 600: "#e11d48",
824
+ 700: "#be123c",
825
+ 800: "#9f1239",
826
+ 900: "#881337",
827
+ 950: "#4c0519"
828
+ },
829
+ get lightBlue() {
830
+ return h({
831
+ version: "v2.2",
832
+ from: "lightBlue",
833
+ to: "sky"
834
+ }), this.sky;
835
+ },
836
+ get warmGray() {
837
+ return h({
838
+ version: "v3.0",
839
+ from: "warmGray",
840
+ to: "stone"
841
+ }), this.stone;
842
+ },
843
+ get trueGray() {
844
+ return h({
845
+ version: "v3.0",
846
+ from: "trueGray",
847
+ to: "neutral"
848
+ }), this.neutral;
849
+ },
850
+ get coolGray() {
851
+ return h({
852
+ version: "v3.0",
853
+ from: "coolGray",
854
+ to: "gray"
855
+ }), this.gray;
856
+ },
857
+ get blueGray() {
858
+ return h({
859
+ version: "v3.0",
860
+ from: "blueGray",
861
+ to: "slate"
862
+ }), this.slate;
863
+ }
864
+ };
865
+ })(K);
866
+ var se = {};
867
+ (function(e) {
868
+ Object.defineProperty(e, "__esModule", {
869
+ value: !0
870
+ }), Object.defineProperty(e, "defaults", {
871
+ enumerable: !0,
872
+ get: function() {
873
+ return i;
874
+ }
875
+ });
876
+ function i(n, ...h) {
877
+ for (let r of h) {
878
+ for (let y in r) {
879
+ var o;
880
+ !(n == null || (o = n.hasOwnProperty) === null || o === void 0) && o.call(n, y) || (n[y] = r[y]);
881
+ }
882
+ for (let y of Object.getOwnPropertySymbols(r)) {
883
+ var u;
884
+ !(n == null || (u = n.hasOwnProperty) === null || u === void 0) && u.call(n, y) || (n[y] = r[y]);
885
+ }
886
+ }
887
+ return n;
888
+ }
889
+ })(se);
890
+ var ue = {};
891
+ (function(e) {
892
+ Object.defineProperty(e, "__esModule", {
893
+ value: !0
894
+ }), Object.defineProperty(e, "toPath", {
895
+ enumerable: !0,
896
+ get: function() {
897
+ return i;
898
+ }
899
+ });
900
+ function i(n) {
901
+ if (Array.isArray(n))
902
+ return n;
903
+ let h = n.split("[").length - 1, o = n.split("]").length - 1;
904
+ if (h !== o)
905
+ throw new Error(`Path is invalid. Has unbalanced brackets: ${n}`);
906
+ return n.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean);
907
+ }
908
+ })(ue);
909
+ var fe = {}, H = {};
910
+ (function(e) {
911
+ Object.defineProperty(e, "__esModule", {
912
+ value: !0
913
+ });
914
+ function i(m, f) {
915
+ for (var w in f)
916
+ Object.defineProperty(m, w, {
917
+ enumerable: !0,
918
+ get: f[w]
919
+ });
920
+ }
921
+ i(e, {
922
+ flagEnabled: function() {
923
+ return y;
924
+ },
925
+ issueFlagNotices: function() {
926
+ return t;
927
+ },
928
+ default: function() {
929
+ return d;
930
+ }
931
+ });
932
+ const n = /* @__PURE__ */ o(le), h = /* @__PURE__ */ o(V);
933
+ function o(m) {
934
+ return m && m.__esModule ? m : {
935
+ default: m
936
+ };
937
+ }
938
+ let u = {
939
+ optimizeUniversalDefaults: !1,
940
+ generalizedModifiers: !0,
941
+ get disableColorOpacityUtilitiesByDefault() {
942
+ return !1;
943
+ },
944
+ get relativeContentPathsByDefault() {
945
+ return !1;
946
+ }
947
+ }, r = {
948
+ future: [
949
+ "hoverOnlyWhenSupported",
950
+ "respectDefaultRingColorOpacity",
951
+ "disableColorOpacityUtilitiesByDefault",
952
+ "relativeContentPathsByDefault"
953
+ ],
954
+ experimental: [
955
+ "optimizeUniversalDefaults",
956
+ "generalizedModifiers"
957
+ ]
958
+ };
959
+ function y(m, f) {
960
+ if (r.future.includes(f)) {
961
+ var w, g, O;
962
+ return m.future === "all" || ((O = (g = m == null || (w = m.future) === null || w === void 0 ? void 0 : w[f]) !== null && g !== void 0 ? g : u[f]) !== null && O !== void 0 ? O : !1);
963
+ }
964
+ if (r.experimental.includes(f)) {
965
+ var A, $, T;
966
+ return m.experimental === "all" || ((T = ($ = m == null || (A = m.experimental) === null || A === void 0 ? void 0 : A[f]) !== null && $ !== void 0 ? $ : u[f]) !== null && T !== void 0 ? T : !1);
967
+ }
968
+ return !1;
969
+ }
970
+ function a(m) {
971
+ if (m.experimental === "all")
972
+ return r.experimental;
973
+ var f;
974
+ return Object.keys((f = m == null ? void 0 : m.experimental) !== null && f !== void 0 ? f : {}).filter((w) => r.experimental.includes(w) && m.experimental[w]);
975
+ }
976
+ function t(m) {
977
+ if (process.env.JEST_WORKER_ID === void 0 && a(m).length > 0) {
978
+ let f = a(m).map((w) => n.default.yellow(w)).join(", ");
979
+ h.default.warn("experimental-flags-enabled", [
980
+ `You have enabled experimental features: ${f}`,
981
+ "Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."
982
+ ]);
983
+ }
984
+ }
985
+ const d = r;
986
+ })(H);
987
+ (function(e) {
988
+ Object.defineProperty(e, "__esModule", {
989
+ value: !0
990
+ }), Object.defineProperty(e, "normalizeConfig", {
991
+ enumerable: !0,
992
+ get: function() {
993
+ return u;
994
+ }
995
+ });
996
+ const i = H, n = /* @__PURE__ */ o(V);
997
+ function h(r) {
998
+ if (typeof WeakMap != "function")
999
+ return null;
1000
+ var y = /* @__PURE__ */ new WeakMap(), a = /* @__PURE__ */ new WeakMap();
1001
+ return (h = function(t) {
1002
+ return t ? a : y;
1003
+ })(r);
1004
+ }
1005
+ function o(r, y) {
1006
+ if (!y && r && r.__esModule)
1007
+ return r;
1008
+ if (r === null || typeof r != "object" && typeof r != "function")
1009
+ return {
1010
+ default: r
1011
+ };
1012
+ var a = h(y);
1013
+ if (a && a.has(r))
1014
+ return a.get(r);
1015
+ var t = {}, d = Object.defineProperty && Object.getOwnPropertyDescriptor;
1016
+ for (var m in r)
1017
+ if (m !== "default" && Object.prototype.hasOwnProperty.call(r, m)) {
1018
+ var f = d ? Object.getOwnPropertyDescriptor(r, m) : null;
1019
+ f && (f.get || f.set) ? Object.defineProperty(t, m, f) : t[m] = r[m];
1020
+ }
1021
+ return t.default = r, a && a.set(r, t), t;
1022
+ }
1023
+ function u(r) {
1024
+ if ((() => {
1025
+ if (r.purge || !r.content || !Array.isArray(r.content) && !(typeof r.content == "object" && r.content !== null))
1026
+ return !1;
1027
+ if (Array.isArray(r.content))
1028
+ return r.content.every((t) => typeof t == "string" ? !0 : !(typeof (t == null ? void 0 : t.raw) != "string" || t != null && t.extension && typeof (t == null ? void 0 : t.extension) != "string"));
1029
+ if (typeof r.content == "object" && r.content !== null) {
1030
+ if (Object.keys(r.content).some((t) => ![
1031
+ "files",
1032
+ "relative",
1033
+ "extract",
1034
+ "transform"
1035
+ ].includes(t)))
1036
+ return !1;
1037
+ if (Array.isArray(r.content.files)) {
1038
+ if (!r.content.files.every((t) => typeof t == "string" ? !0 : !(typeof (t == null ? void 0 : t.raw) != "string" || t != null && t.extension && typeof (t == null ? void 0 : t.extension) != "string")))
1039
+ return !1;
1040
+ if (typeof r.content.extract == "object") {
1041
+ for (let t of Object.values(r.content.extract))
1042
+ if (typeof t != "function")
1043
+ return !1;
1044
+ } else if (!(r.content.extract === void 0 || typeof r.content.extract == "function"))
1045
+ return !1;
1046
+ if (typeof r.content.transform == "object") {
1047
+ for (let t of Object.values(r.content.transform))
1048
+ if (typeof t != "function")
1049
+ return !1;
1050
+ } else if (!(r.content.transform === void 0 || typeof r.content.transform == "function"))
1051
+ return !1;
1052
+ if (typeof r.content.relative != "boolean" && typeof r.content.relative != "undefined")
1053
+ return !1;
1054
+ }
1055
+ return !0;
1056
+ }
1057
+ return !1;
1058
+ })() || n.default.warn("purge-deprecation", [
1059
+ "The `purge`/`content` options have changed in Tailwind CSS v3.0.",
1060
+ "Update your configuration file to eliminate this warning.",
1061
+ "https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"
1062
+ ]), r.safelist = (() => {
1063
+ var t;
1064
+ let { content: d, purge: m, safelist: f } = r;
1065
+ return Array.isArray(f) ? f : Array.isArray(d == null ? void 0 : d.safelist) ? d.safelist : Array.isArray(m == null ? void 0 : m.safelist) ? m.safelist : Array.isArray(m == null || (t = m.options) === null || t === void 0 ? void 0 : t.safelist) ? m.options.safelist : [];
1066
+ })(), r.blocklist = (() => {
1067
+ let { blocklist: t } = r;
1068
+ if (Array.isArray(t)) {
1069
+ if (t.every((d) => typeof d == "string"))
1070
+ return t;
1071
+ n.default.warn("blocklist-invalid", [
1072
+ "The `blocklist` option must be an array of strings.",
1073
+ "https://tailwindcss.com/docs/content-configuration#discarding-classes"
1074
+ ]);
1075
+ }
1076
+ return [];
1077
+ })(), typeof r.prefix == "function")
1078
+ n.default.warn("prefix-function", [
1079
+ "As of Tailwind CSS v3.0, `prefix` cannot be a function.",
1080
+ "Update `prefix` in your configuration to be a string to eliminate this warning.",
1081
+ "https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"
1082
+ ]), r.prefix = "";
1083
+ else {
1084
+ var a;
1085
+ r.prefix = (a = r.prefix) !== null && a !== void 0 ? a : "";
1086
+ }
1087
+ r.content = {
1088
+ relative: (() => {
1089
+ let { content: t } = r;
1090
+ return t != null && t.relative ? t.relative : (0, i.flagEnabled)(r, "relativeContentPathsByDefault");
1091
+ })(),
1092
+ files: (() => {
1093
+ let { content: t, purge: d } = r;
1094
+ return Array.isArray(d) ? d : Array.isArray(d == null ? void 0 : d.content) ? d.content : Array.isArray(t) ? t : Array.isArray(t == null ? void 0 : t.content) ? t.content : Array.isArray(t == null ? void 0 : t.files) ? t.files : [];
1095
+ })(),
1096
+ extract: (() => {
1097
+ let t = (() => {
1098
+ var f, w, g, O, A, $, T, P, D, j;
1099
+ return !((f = r.purge) === null || f === void 0) && f.extract ? r.purge.extract : !((w = r.content) === null || w === void 0) && w.extract ? r.content.extract : !((g = r.purge) === null || g === void 0 || (O = g.extract) === null || O === void 0) && O.DEFAULT ? r.purge.extract.DEFAULT : !((A = r.content) === null || A === void 0 || ($ = A.extract) === null || $ === void 0) && $.DEFAULT ? r.content.extract.DEFAULT : !((T = r.purge) === null || T === void 0 || (P = T.options) === null || P === void 0) && P.extractors ? r.purge.options.extractors : !((D = r.content) === null || D === void 0 || (j = D.options) === null || j === void 0) && j.extractors ? r.content.options.extractors : {};
1100
+ })(), d = {}, m = (() => {
1101
+ var f, w, g, O;
1102
+ if (!((f = r.purge) === null || f === void 0 || (w = f.options) === null || w === void 0) && w.defaultExtractor)
1103
+ return r.purge.options.defaultExtractor;
1104
+ if (!((g = r.content) === null || g === void 0 || (O = g.options) === null || O === void 0) && O.defaultExtractor)
1105
+ return r.content.options.defaultExtractor;
1106
+ })();
1107
+ if (m !== void 0 && (d.DEFAULT = m), typeof t == "function")
1108
+ d.DEFAULT = t;
1109
+ else if (Array.isArray(t))
1110
+ for (let { extensions: f, extractor: w } of t != null ? t : [])
1111
+ for (let g of f)
1112
+ d[g] = w;
1113
+ else
1114
+ typeof t == "object" && t !== null && Object.assign(d, t);
1115
+ return d;
1116
+ })(),
1117
+ transform: (() => {
1118
+ let t = (() => {
1119
+ var m, f, w, g, O, A;
1120
+ return !((m = r.purge) === null || m === void 0) && m.transform ? r.purge.transform : !((f = r.content) === null || f === void 0) && f.transform ? r.content.transform : !((w = r.purge) === null || w === void 0 || (g = w.transform) === null || g === void 0) && g.DEFAULT ? r.purge.transform.DEFAULT : !((O = r.content) === null || O === void 0 || (A = O.transform) === null || A === void 0) && A.DEFAULT ? r.content.transform.DEFAULT : {};
1121
+ })(), d = {};
1122
+ return typeof t == "function" && (d.DEFAULT = t), typeof t == "object" && t !== null && Object.assign(d, t), d;
1123
+ })()
1124
+ };
1125
+ for (let t of r.content.files)
1126
+ if (typeof t == "string" && /{([^,]*?)}/g.test(t)) {
1127
+ n.default.warn("invalid-glob-braces", [
1128
+ `The glob pattern ${(0, n.dim)(t)} in your Tailwind CSS configuration is invalid.`,
1129
+ `Update it to ${(0, n.dim)(t.replace(/{([^,]*?)}/g, "$1"))} to silence this warning.`
1130
+ ]);
1131
+ break;
1132
+ }
1133
+ return r;
1134
+ }
1135
+ })(fe);
1136
+ var ce = {};
1137
+ (function(e) {
1138
+ Object.defineProperty(e, "__esModule", {
1139
+ value: !0
1140
+ }), Object.defineProperty(e, "default", {
1141
+ enumerable: !0,
1142
+ get: function() {
1143
+ return i;
1144
+ }
1145
+ });
1146
+ function i(n) {
1147
+ if (Object.prototype.toString.call(n) !== "[object Object]")
1148
+ return !1;
1149
+ const h = Object.getPrototypeOf(n);
1150
+ return h === null || h === Object.prototype;
1151
+ }
1152
+ })(ce);
1153
+ var de = {};
1154
+ (function(e) {
1155
+ Object.defineProperty(e, "__esModule", {
1156
+ value: !0
1157
+ }), Object.defineProperty(e, "cloneDeep", {
1158
+ enumerable: !0,
1159
+ get: function() {
1160
+ return i;
1161
+ }
1162
+ });
1163
+ function i(n) {
1164
+ return Array.isArray(n) ? n.map((h) => i(h)) : typeof n == "object" && n !== null ? Object.fromEntries(Object.entries(n).map(([h, o]) => [
1165
+ h,
1166
+ i(o)
1167
+ ])) : n;
1168
+ }
1169
+ })(de);
1170
+ var pe = {}, me = {};
1171
+ (function(e) {
1172
+ Object.defineProperty(e, "__esModule", {
1173
+ value: !0
1174
+ }), Object.defineProperty(e, "default", {
1175
+ enumerable: !0,
1176
+ get: function() {
1177
+ return i;
1178
+ }
1179
+ });
1180
+ function i(n) {
1181
+ return n.replace(/\\,/g, "\\2c ");
1182
+ }
1183
+ })(me);
1184
+ var J = {}, Q = {}, ge = {};
1185
+ (function(e) {
1186
+ Object.defineProperty(e, "__esModule", {
1187
+ value: !0
1188
+ }), Object.defineProperty(e, "default", {
1189
+ enumerable: !0,
1190
+ get: function() {
1191
+ return i;
1192
+ }
1193
+ });
1194
+ const i = {
1195
+ aliceblue: [
1196
+ 240,
1197
+ 248,
1198
+ 255
1199
+ ],
1200
+ antiquewhite: [
1201
+ 250,
1202
+ 235,
1203
+ 215
1204
+ ],
1205
+ aqua: [
1206
+ 0,
1207
+ 255,
1208
+ 255
1209
+ ],
1210
+ aquamarine: [
1211
+ 127,
1212
+ 255,
1213
+ 212
1214
+ ],
1215
+ azure: [
1216
+ 240,
1217
+ 255,
1218
+ 255
1219
+ ],
1220
+ beige: [
1221
+ 245,
1222
+ 245,
1223
+ 220
1224
+ ],
1225
+ bisque: [
1226
+ 255,
1227
+ 228,
1228
+ 196
1229
+ ],
1230
+ black: [
1231
+ 0,
1232
+ 0,
1233
+ 0
1234
+ ],
1235
+ blanchedalmond: [
1236
+ 255,
1237
+ 235,
1238
+ 205
1239
+ ],
1240
+ blue: [
1241
+ 0,
1242
+ 0,
1243
+ 255
1244
+ ],
1245
+ blueviolet: [
1246
+ 138,
1247
+ 43,
1248
+ 226
1249
+ ],
1250
+ brown: [
1251
+ 165,
1252
+ 42,
1253
+ 42
1254
+ ],
1255
+ burlywood: [
1256
+ 222,
1257
+ 184,
1258
+ 135
1259
+ ],
1260
+ cadetblue: [
1261
+ 95,
1262
+ 158,
1263
+ 160
1264
+ ],
1265
+ chartreuse: [
1266
+ 127,
1267
+ 255,
1268
+ 0
1269
+ ],
1270
+ chocolate: [
1271
+ 210,
1272
+ 105,
1273
+ 30
1274
+ ],
1275
+ coral: [
1276
+ 255,
1277
+ 127,
1278
+ 80
1279
+ ],
1280
+ cornflowerblue: [
1281
+ 100,
1282
+ 149,
1283
+ 237
1284
+ ],
1285
+ cornsilk: [
1286
+ 255,
1287
+ 248,
1288
+ 220
1289
+ ],
1290
+ crimson: [
1291
+ 220,
1292
+ 20,
1293
+ 60
1294
+ ],
1295
+ cyan: [
1296
+ 0,
1297
+ 255,
1298
+ 255
1299
+ ],
1300
+ darkblue: [
1301
+ 0,
1302
+ 0,
1303
+ 139
1304
+ ],
1305
+ darkcyan: [
1306
+ 0,
1307
+ 139,
1308
+ 139
1309
+ ],
1310
+ darkgoldenrod: [
1311
+ 184,
1312
+ 134,
1313
+ 11
1314
+ ],
1315
+ darkgray: [
1316
+ 169,
1317
+ 169,
1318
+ 169
1319
+ ],
1320
+ darkgreen: [
1321
+ 0,
1322
+ 100,
1323
+ 0
1324
+ ],
1325
+ darkgrey: [
1326
+ 169,
1327
+ 169,
1328
+ 169
1329
+ ],
1330
+ darkkhaki: [
1331
+ 189,
1332
+ 183,
1333
+ 107
1334
+ ],
1335
+ darkmagenta: [
1336
+ 139,
1337
+ 0,
1338
+ 139
1339
+ ],
1340
+ darkolivegreen: [
1341
+ 85,
1342
+ 107,
1343
+ 47
1344
+ ],
1345
+ darkorange: [
1346
+ 255,
1347
+ 140,
1348
+ 0
1349
+ ],
1350
+ darkorchid: [
1351
+ 153,
1352
+ 50,
1353
+ 204
1354
+ ],
1355
+ darkred: [
1356
+ 139,
1357
+ 0,
1358
+ 0
1359
+ ],
1360
+ darksalmon: [
1361
+ 233,
1362
+ 150,
1363
+ 122
1364
+ ],
1365
+ darkseagreen: [
1366
+ 143,
1367
+ 188,
1368
+ 143
1369
+ ],
1370
+ darkslateblue: [
1371
+ 72,
1372
+ 61,
1373
+ 139
1374
+ ],
1375
+ darkslategray: [
1376
+ 47,
1377
+ 79,
1378
+ 79
1379
+ ],
1380
+ darkslategrey: [
1381
+ 47,
1382
+ 79,
1383
+ 79
1384
+ ],
1385
+ darkturquoise: [
1386
+ 0,
1387
+ 206,
1388
+ 209
1389
+ ],
1390
+ darkviolet: [
1391
+ 148,
1392
+ 0,
1393
+ 211
1394
+ ],
1395
+ deeppink: [
1396
+ 255,
1397
+ 20,
1398
+ 147
1399
+ ],
1400
+ deepskyblue: [
1401
+ 0,
1402
+ 191,
1403
+ 255
1404
+ ],
1405
+ dimgray: [
1406
+ 105,
1407
+ 105,
1408
+ 105
1409
+ ],
1410
+ dimgrey: [
1411
+ 105,
1412
+ 105,
1413
+ 105
1414
+ ],
1415
+ dodgerblue: [
1416
+ 30,
1417
+ 144,
1418
+ 255
1419
+ ],
1420
+ firebrick: [
1421
+ 178,
1422
+ 34,
1423
+ 34
1424
+ ],
1425
+ floralwhite: [
1426
+ 255,
1427
+ 250,
1428
+ 240
1429
+ ],
1430
+ forestgreen: [
1431
+ 34,
1432
+ 139,
1433
+ 34
1434
+ ],
1435
+ fuchsia: [
1436
+ 255,
1437
+ 0,
1438
+ 255
1439
+ ],
1440
+ gainsboro: [
1441
+ 220,
1442
+ 220,
1443
+ 220
1444
+ ],
1445
+ ghostwhite: [
1446
+ 248,
1447
+ 248,
1448
+ 255
1449
+ ],
1450
+ gold: [
1451
+ 255,
1452
+ 215,
1453
+ 0
1454
+ ],
1455
+ goldenrod: [
1456
+ 218,
1457
+ 165,
1458
+ 32
1459
+ ],
1460
+ gray: [
1461
+ 128,
1462
+ 128,
1463
+ 128
1464
+ ],
1465
+ green: [
1466
+ 0,
1467
+ 128,
1468
+ 0
1469
+ ],
1470
+ greenyellow: [
1471
+ 173,
1472
+ 255,
1473
+ 47
1474
+ ],
1475
+ grey: [
1476
+ 128,
1477
+ 128,
1478
+ 128
1479
+ ],
1480
+ honeydew: [
1481
+ 240,
1482
+ 255,
1483
+ 240
1484
+ ],
1485
+ hotpink: [
1486
+ 255,
1487
+ 105,
1488
+ 180
1489
+ ],
1490
+ indianred: [
1491
+ 205,
1492
+ 92,
1493
+ 92
1494
+ ],
1495
+ indigo: [
1496
+ 75,
1497
+ 0,
1498
+ 130
1499
+ ],
1500
+ ivory: [
1501
+ 255,
1502
+ 255,
1503
+ 240
1504
+ ],
1505
+ khaki: [
1506
+ 240,
1507
+ 230,
1508
+ 140
1509
+ ],
1510
+ lavender: [
1511
+ 230,
1512
+ 230,
1513
+ 250
1514
+ ],
1515
+ lavenderblush: [
1516
+ 255,
1517
+ 240,
1518
+ 245
1519
+ ],
1520
+ lawngreen: [
1521
+ 124,
1522
+ 252,
1523
+ 0
1524
+ ],
1525
+ lemonchiffon: [
1526
+ 255,
1527
+ 250,
1528
+ 205
1529
+ ],
1530
+ lightblue: [
1531
+ 173,
1532
+ 216,
1533
+ 230
1534
+ ],
1535
+ lightcoral: [
1536
+ 240,
1537
+ 128,
1538
+ 128
1539
+ ],
1540
+ lightcyan: [
1541
+ 224,
1542
+ 255,
1543
+ 255
1544
+ ],
1545
+ lightgoldenrodyellow: [
1546
+ 250,
1547
+ 250,
1548
+ 210
1549
+ ],
1550
+ lightgray: [
1551
+ 211,
1552
+ 211,
1553
+ 211
1554
+ ],
1555
+ lightgreen: [
1556
+ 144,
1557
+ 238,
1558
+ 144
1559
+ ],
1560
+ lightgrey: [
1561
+ 211,
1562
+ 211,
1563
+ 211
1564
+ ],
1565
+ lightpink: [
1566
+ 255,
1567
+ 182,
1568
+ 193
1569
+ ],
1570
+ lightsalmon: [
1571
+ 255,
1572
+ 160,
1573
+ 122
1574
+ ],
1575
+ lightseagreen: [
1576
+ 32,
1577
+ 178,
1578
+ 170
1579
+ ],
1580
+ lightskyblue: [
1581
+ 135,
1582
+ 206,
1583
+ 250
1584
+ ],
1585
+ lightslategray: [
1586
+ 119,
1587
+ 136,
1588
+ 153
1589
+ ],
1590
+ lightslategrey: [
1591
+ 119,
1592
+ 136,
1593
+ 153
1594
+ ],
1595
+ lightsteelblue: [
1596
+ 176,
1597
+ 196,
1598
+ 222
1599
+ ],
1600
+ lightyellow: [
1601
+ 255,
1602
+ 255,
1603
+ 224
1604
+ ],
1605
+ lime: [
1606
+ 0,
1607
+ 255,
1608
+ 0
1609
+ ],
1610
+ limegreen: [
1611
+ 50,
1612
+ 205,
1613
+ 50
1614
+ ],
1615
+ linen: [
1616
+ 250,
1617
+ 240,
1618
+ 230
1619
+ ],
1620
+ magenta: [
1621
+ 255,
1622
+ 0,
1623
+ 255
1624
+ ],
1625
+ maroon: [
1626
+ 128,
1627
+ 0,
1628
+ 0
1629
+ ],
1630
+ mediumaquamarine: [
1631
+ 102,
1632
+ 205,
1633
+ 170
1634
+ ],
1635
+ mediumblue: [
1636
+ 0,
1637
+ 0,
1638
+ 205
1639
+ ],
1640
+ mediumorchid: [
1641
+ 186,
1642
+ 85,
1643
+ 211
1644
+ ],
1645
+ mediumpurple: [
1646
+ 147,
1647
+ 112,
1648
+ 219
1649
+ ],
1650
+ mediumseagreen: [
1651
+ 60,
1652
+ 179,
1653
+ 113
1654
+ ],
1655
+ mediumslateblue: [
1656
+ 123,
1657
+ 104,
1658
+ 238
1659
+ ],
1660
+ mediumspringgreen: [
1661
+ 0,
1662
+ 250,
1663
+ 154
1664
+ ],
1665
+ mediumturquoise: [
1666
+ 72,
1667
+ 209,
1668
+ 204
1669
+ ],
1670
+ mediumvioletred: [
1671
+ 199,
1672
+ 21,
1673
+ 133
1674
+ ],
1675
+ midnightblue: [
1676
+ 25,
1677
+ 25,
1678
+ 112
1679
+ ],
1680
+ mintcream: [
1681
+ 245,
1682
+ 255,
1683
+ 250
1684
+ ],
1685
+ mistyrose: [
1686
+ 255,
1687
+ 228,
1688
+ 225
1689
+ ],
1690
+ moccasin: [
1691
+ 255,
1692
+ 228,
1693
+ 181
1694
+ ],
1695
+ navajowhite: [
1696
+ 255,
1697
+ 222,
1698
+ 173
1699
+ ],
1700
+ navy: [
1701
+ 0,
1702
+ 0,
1703
+ 128
1704
+ ],
1705
+ oldlace: [
1706
+ 253,
1707
+ 245,
1708
+ 230
1709
+ ],
1710
+ olive: [
1711
+ 128,
1712
+ 128,
1713
+ 0
1714
+ ],
1715
+ olivedrab: [
1716
+ 107,
1717
+ 142,
1718
+ 35
1719
+ ],
1720
+ orange: [
1721
+ 255,
1722
+ 165,
1723
+ 0
1724
+ ],
1725
+ orangered: [
1726
+ 255,
1727
+ 69,
1728
+ 0
1729
+ ],
1730
+ orchid: [
1731
+ 218,
1732
+ 112,
1733
+ 214
1734
+ ],
1735
+ palegoldenrod: [
1736
+ 238,
1737
+ 232,
1738
+ 170
1739
+ ],
1740
+ palegreen: [
1741
+ 152,
1742
+ 251,
1743
+ 152
1744
+ ],
1745
+ paleturquoise: [
1746
+ 175,
1747
+ 238,
1748
+ 238
1749
+ ],
1750
+ palevioletred: [
1751
+ 219,
1752
+ 112,
1753
+ 147
1754
+ ],
1755
+ papayawhip: [
1756
+ 255,
1757
+ 239,
1758
+ 213
1759
+ ],
1760
+ peachpuff: [
1761
+ 255,
1762
+ 218,
1763
+ 185
1764
+ ],
1765
+ peru: [
1766
+ 205,
1767
+ 133,
1768
+ 63
1769
+ ],
1770
+ pink: [
1771
+ 255,
1772
+ 192,
1773
+ 203
1774
+ ],
1775
+ plum: [
1776
+ 221,
1777
+ 160,
1778
+ 221
1779
+ ],
1780
+ powderblue: [
1781
+ 176,
1782
+ 224,
1783
+ 230
1784
+ ],
1785
+ purple: [
1786
+ 128,
1787
+ 0,
1788
+ 128
1789
+ ],
1790
+ rebeccapurple: [
1791
+ 102,
1792
+ 51,
1793
+ 153
1794
+ ],
1795
+ red: [
1796
+ 255,
1797
+ 0,
1798
+ 0
1799
+ ],
1800
+ rosybrown: [
1801
+ 188,
1802
+ 143,
1803
+ 143
1804
+ ],
1805
+ royalblue: [
1806
+ 65,
1807
+ 105,
1808
+ 225
1809
+ ],
1810
+ saddlebrown: [
1811
+ 139,
1812
+ 69,
1813
+ 19
1814
+ ],
1815
+ salmon: [
1816
+ 250,
1817
+ 128,
1818
+ 114
1819
+ ],
1820
+ sandybrown: [
1821
+ 244,
1822
+ 164,
1823
+ 96
1824
+ ],
1825
+ seagreen: [
1826
+ 46,
1827
+ 139,
1828
+ 87
1829
+ ],
1830
+ seashell: [
1831
+ 255,
1832
+ 245,
1833
+ 238
1834
+ ],
1835
+ sienna: [
1836
+ 160,
1837
+ 82,
1838
+ 45
1839
+ ],
1840
+ silver: [
1841
+ 192,
1842
+ 192,
1843
+ 192
1844
+ ],
1845
+ skyblue: [
1846
+ 135,
1847
+ 206,
1848
+ 235
1849
+ ],
1850
+ slateblue: [
1851
+ 106,
1852
+ 90,
1853
+ 205
1854
+ ],
1855
+ slategray: [
1856
+ 112,
1857
+ 128,
1858
+ 144
1859
+ ],
1860
+ slategrey: [
1861
+ 112,
1862
+ 128,
1863
+ 144
1864
+ ],
1865
+ snow: [
1866
+ 255,
1867
+ 250,
1868
+ 250
1869
+ ],
1870
+ springgreen: [
1871
+ 0,
1872
+ 255,
1873
+ 127
1874
+ ],
1875
+ steelblue: [
1876
+ 70,
1877
+ 130,
1878
+ 180
1879
+ ],
1880
+ tan: [
1881
+ 210,
1882
+ 180,
1883
+ 140
1884
+ ],
1885
+ teal: [
1886
+ 0,
1887
+ 128,
1888
+ 128
1889
+ ],
1890
+ thistle: [
1891
+ 216,
1892
+ 191,
1893
+ 216
1894
+ ],
1895
+ tomato: [
1896
+ 255,
1897
+ 99,
1898
+ 71
1899
+ ],
1900
+ turquoise: [
1901
+ 64,
1902
+ 224,
1903
+ 208
1904
+ ],
1905
+ violet: [
1906
+ 238,
1907
+ 130,
1908
+ 238
1909
+ ],
1910
+ wheat: [
1911
+ 245,
1912
+ 222,
1913
+ 179
1914
+ ],
1915
+ white: [
1916
+ 255,
1917
+ 255,
1918
+ 255
1919
+ ],
1920
+ whitesmoke: [
1921
+ 245,
1922
+ 245,
1923
+ 245
1924
+ ],
1925
+ yellow: [
1926
+ 255,
1927
+ 255,
1928
+ 0
1929
+ ],
1930
+ yellowgreen: [
1931
+ 154,
1932
+ 205,
1933
+ 50
1934
+ ]
1935
+ };
1936
+ })(ge);
1937
+ (function(e) {
1938
+ Object.defineProperty(e, "__esModule", {
1939
+ value: !0
1940
+ });
1941
+ function i(g, O) {
1942
+ for (var A in O)
1943
+ Object.defineProperty(g, A, {
1944
+ enumerable: !0,
1945
+ get: O[A]
1946
+ });
1947
+ }
1948
+ i(e, {
1949
+ parseColor: function() {
1950
+ return f;
1951
+ },
1952
+ formatColor: function() {
1953
+ return w;
1954
+ }
1955
+ });
1956
+ const n = /* @__PURE__ */ h(ge);
1957
+ function h(g) {
1958
+ return g && g.__esModule ? g : {
1959
+ default: g
1960
+ };
1961
+ }
1962
+ let o = /^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i, u = /^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i, r = /(?:\d+|\d*\.\d+)%?/, y = /(?:\s*,\s*|\s+)/, a = /\s*[,/]\s*/, t = /var\(--(?:[^ )]*?)\)/, d = new RegExp(`^(rgba?)\\(\\s*(${r.source}|${t.source})(?:${y.source}(${r.source}|${t.source}))?(?:${y.source}(${r.source}|${t.source}))?(?:${a.source}(${r.source}|${t.source}))?\\s*\\)$`), m = new RegExp(`^(hsla?)\\(\\s*((?:${r.source})(?:deg|rad|grad|turn)?|${t.source})(?:${y.source}(${r.source}|${t.source}))?(?:${y.source}(${r.source}|${t.source}))?(?:${a.source}(${r.source}|${t.source}))?\\s*\\)$`);
1963
+ function f(g, { loose: O = !1 } = {}) {
1964
+ var A, $;
1965
+ if (typeof g != "string")
1966
+ return null;
1967
+ if (g = g.trim(), g === "transparent")
1968
+ return {
1969
+ mode: "rgb",
1970
+ color: [
1971
+ "0",
1972
+ "0",
1973
+ "0"
1974
+ ],
1975
+ alpha: "0"
1976
+ };
1977
+ if (g in n.default)
1978
+ return {
1979
+ mode: "rgb",
1980
+ color: n.default[g].map((M) => M.toString())
1981
+ };
1982
+ let T = g.replace(u, (M, L, U, p, S) => [
1983
+ "#",
1984
+ L,
1985
+ L,
1986
+ U,
1987
+ U,
1988
+ p,
1989
+ p,
1990
+ S ? S + S : ""
1991
+ ].join("")).match(o);
1992
+ if (T !== null)
1993
+ return {
1994
+ mode: "rgb",
1995
+ color: [
1996
+ parseInt(T[1], 16),
1997
+ parseInt(T[2], 16),
1998
+ parseInt(T[3], 16)
1999
+ ].map((M) => M.toString()),
2000
+ alpha: T[4] ? (parseInt(T[4], 16) / 255).toString() : void 0
2001
+ };
2002
+ var P;
2003
+ let D = (P = g.match(d)) !== null && P !== void 0 ? P : g.match(m);
2004
+ if (D === null)
2005
+ return null;
2006
+ let j = [
2007
+ D[2],
2008
+ D[3],
2009
+ D[4]
2010
+ ].filter(Boolean).map((M) => M.toString());
2011
+ return j.length === 2 && j[0].startsWith("var(") ? {
2012
+ mode: D[1],
2013
+ color: [
2014
+ j[0]
2015
+ ],
2016
+ alpha: j[1]
2017
+ } : !O && j.length !== 3 || j.length < 3 && !j.some((M) => /^var\(.*?\)$/.test(M)) ? null : {
2018
+ mode: D[1],
2019
+ color: j,
2020
+ alpha: (A = D[5]) === null || A === void 0 || ($ = A.toString) === null || $ === void 0 ? void 0 : $.call(A)
2021
+ };
2022
+ }
2023
+ function w({ mode: g, color: O, alpha: A }) {
2024
+ let $ = A !== void 0;
2025
+ return g === "rgba" || g === "hsla" ? `${g}(${O.join(", ")}${$ ? `, ${A}` : ""})` : `${g}(${O.join(" ")}${$ ? ` / ${A}` : ""})`;
2026
+ }
2027
+ })(Q);
2028
+ (function(e) {
2029
+ Object.defineProperty(e, "__esModule", {
2030
+ value: !0
2031
+ });
2032
+ function i(u, r) {
2033
+ for (var y in r)
2034
+ Object.defineProperty(u, y, {
2035
+ enumerable: !0,
2036
+ get: r[y]
2037
+ });
2038
+ }
2039
+ i(e, {
2040
+ withAlphaValue: function() {
2041
+ return h;
2042
+ },
2043
+ default: function() {
2044
+ return o;
2045
+ }
2046
+ });
2047
+ const n = Q;
2048
+ function h(u, r, y) {
2049
+ if (typeof u == "function")
2050
+ return u({
2051
+ opacityValue: r
2052
+ });
2053
+ let a = (0, n.parseColor)(u, {
2054
+ loose: !0
2055
+ });
2056
+ return a === null ? y : (0, n.formatColor)({
2057
+ ...a,
2058
+ alpha: r
2059
+ });
2060
+ }
2061
+ function o({ color: u, property: r, variable: y }) {
2062
+ let a = [].concat(r);
2063
+ if (typeof u == "function")
2064
+ return {
2065
+ [y]: "1",
2066
+ ...Object.fromEntries(a.map((d) => [
2067
+ d,
2068
+ u({
2069
+ opacityVariable: y,
2070
+ opacityValue: `var(${y})`
2071
+ })
2072
+ ]))
2073
+ };
2074
+ const t = (0, n.parseColor)(u);
2075
+ return t === null ? Object.fromEntries(a.map((d) => [
2076
+ d,
2077
+ u
2078
+ ])) : t.alpha !== void 0 ? Object.fromEntries(a.map((d) => [
2079
+ d,
2080
+ u
2081
+ ])) : {
2082
+ [y]: "1",
2083
+ ...Object.fromEntries(a.map((d) => [
2084
+ d,
2085
+ (0, n.formatColor)({
2086
+ ...t,
2087
+ alpha: `var(${y})`
2088
+ })
2089
+ ]))
2090
+ };
2091
+ }
2092
+ })(J);
2093
+ var Z = {}, he = {}, I = {};
2094
+ (function(e) {
2095
+ Object.defineProperty(e, "__esModule", {
2096
+ value: !0
2097
+ }), Object.defineProperty(e, "splitAtTopLevelOnly", {
2098
+ enumerable: !0,
2099
+ get: function() {
2100
+ return i;
2101
+ }
2102
+ });
2103
+ function i(n, h) {
2104
+ let o = [], u = [], r = 0, y = !1;
2105
+ for (let a = 0; a < n.length; a++) {
2106
+ let t = n[a];
2107
+ o.length === 0 && t === h[0] && !y && (h.length === 1 || n.slice(a, a + h.length) === h) && (u.push(n.slice(r, a)), r = a + h.length), y ? y = !1 : t === "\\" && (y = !0), t === "(" || t === "[" || t === "{" ? o.push(t) : (t === ")" && o[o.length - 1] === "(" || t === "]" && o[o.length - 1] === "[" || t === "}" && o[o.length - 1] === "{") && o.pop();
2108
+ }
2109
+ return u.push(n.slice(r)), u;
2110
+ }
2111
+ })(I);
2112
+ (function(e) {
2113
+ Object.defineProperty(e, "__esModule", {
2114
+ value: !0
2115
+ });
2116
+ function i(a, t) {
2117
+ for (var d in t)
2118
+ Object.defineProperty(a, d, {
2119
+ enumerable: !0,
2120
+ get: t[d]
2121
+ });
2122
+ }
2123
+ i(e, {
2124
+ parseBoxShadowValue: function() {
2125
+ return r;
2126
+ },
2127
+ formatBoxShadowValue: function() {
2128
+ return y;
2129
+ }
2130
+ });
2131
+ const n = I;
2132
+ let h = /* @__PURE__ */ new Set([
2133
+ "inset",
2134
+ "inherit",
2135
+ "initial",
2136
+ "revert",
2137
+ "unset"
2138
+ ]), o = /\ +(?![^(]*\))/g, u = /^-?(\d+|\.\d+)(.*?)$/g;
2139
+ function r(a) {
2140
+ return (0, n.splitAtTopLevelOnly)(a, ",").map((d) => {
2141
+ let m = d.trim(), f = {
2142
+ raw: m
2143
+ }, w = m.split(o), g = /* @__PURE__ */ new Set();
2144
+ for (let O of w)
2145
+ u.lastIndex = 0, !g.has("KEYWORD") && h.has(O) ? (f.keyword = O, g.add("KEYWORD")) : u.test(O) ? g.has("X") ? g.has("Y") ? g.has("BLUR") ? g.has("SPREAD") || (f.spread = O, g.add("SPREAD")) : (f.blur = O, g.add("BLUR")) : (f.y = O, g.add("Y")) : (f.x = O, g.add("X")) : f.color ? (f.unknown || (f.unknown = []), f.unknown.push(O)) : f.color = O;
2146
+ return f.valid = f.x !== void 0 && f.y !== void 0, f;
2147
+ });
2148
+ }
2149
+ function y(a) {
2150
+ return a.map((t) => t.valid ? [
2151
+ t.keyword,
2152
+ t.x,
2153
+ t.y,
2154
+ t.blur,
2155
+ t.spread,
2156
+ t.color
2157
+ ].filter(Boolean).join(" ") : t.raw).join(", ");
2158
+ }
2159
+ })(he);
2160
+ (function(e) {
2161
+ Object.defineProperty(e, "__esModule", {
2162
+ value: !0
2163
+ });
2164
+ function i(l, x) {
2165
+ for (var z in x)
2166
+ Object.defineProperty(l, z, {
2167
+ enumerable: !0,
2168
+ get: x[z]
2169
+ });
2170
+ }
2171
+ i(e, {
2172
+ normalize: function() {
2173
+ return t;
2174
+ },
2175
+ url: function() {
2176
+ return m;
2177
+ },
2178
+ number: function() {
2179
+ return f;
2180
+ },
2181
+ percentage: function() {
2182
+ return w;
2183
+ },
2184
+ length: function() {
2185
+ return A;
2186
+ },
2187
+ lineWidth: function() {
2188
+ return T;
2189
+ },
2190
+ shadow: function() {
2191
+ return P;
2192
+ },
2193
+ color: function() {
2194
+ return D;
2195
+ },
2196
+ image: function() {
2197
+ return j;
2198
+ },
2199
+ gradient: function() {
2200
+ return L;
2201
+ },
2202
+ position: function() {
2203
+ return p;
2204
+ },
2205
+ familyName: function() {
2206
+ return S;
2207
+ },
2208
+ genericName: function() {
2209
+ return s;
2210
+ },
2211
+ absoluteSize: function() {
2212
+ return v;
2213
+ },
2214
+ relativeSize: function() {
2215
+ return C;
2216
+ }
2217
+ });
2218
+ const n = Q, h = he, o = I;
2219
+ let u = [
2220
+ "min",
2221
+ "max",
2222
+ "clamp",
2223
+ "calc"
2224
+ ];
2225
+ function r(l) {
2226
+ return u.some((x) => new RegExp(`^${x}\\(.*\\)`).test(l));
2227
+ }
2228
+ const y = "--tw-placeholder", a = new RegExp(y, "g");
2229
+ function t(l, x = !0) {
2230
+ return l.startsWith("--") ? `var(${l})` : l.includes("url(") ? l.split(/(url\(.*?\))/g).filter(Boolean).map((z) => /^url\(.*?\)$/.test(z) ? z : t(z, !1)).join("") : (l = l.replace(/([^\\])_+/g, (z, k) => k + " ".repeat(z.length - 1)).replace(/^_/g, " ").replace(/\\_/g, "_"), x && (l = l.trim()), l = d(l), l);
2231
+ }
2232
+ function d(l) {
2233
+ return l.replace(/(calc|min|max|clamp)\(.+\)/g, (x) => {
2234
+ let z = [];
2235
+ return x.replace(/var\((--.+?)[,)]/g, (k, W) => (z.push(W), k.replace(W, y))).replace(/(-?\d*\.?\d(?!\b-\d.+[,)](?![^+\-/*])\D)(?:%|[a-z]+)?|\))([+\-/*])/g, "$1 $2 ").replace(a, () => z.shift());
2236
+ });
2237
+ }
2238
+ function m(l) {
2239
+ return l.startsWith("url(");
2240
+ }
2241
+ function f(l) {
2242
+ return !isNaN(Number(l)) || r(l);
2243
+ }
2244
+ function w(l) {
2245
+ return l.endsWith("%") && f(l.slice(0, -1)) || r(l);
2246
+ }
2247
+ let O = `(?:${[
2248
+ "cm",
2249
+ "mm",
2250
+ "Q",
2251
+ "in",
2252
+ "pc",
2253
+ "pt",
2254
+ "px",
2255
+ "em",
2256
+ "ex",
2257
+ "ch",
2258
+ "rem",
2259
+ "lh",
2260
+ "rlh",
2261
+ "vw",
2262
+ "vh",
2263
+ "vmin",
2264
+ "vmax",
2265
+ "vb",
2266
+ "vi",
2267
+ "svw",
2268
+ "svh",
2269
+ "lvw",
2270
+ "lvh",
2271
+ "dvw",
2272
+ "dvh",
2273
+ "cqw",
2274
+ "cqh",
2275
+ "cqi",
2276
+ "cqb",
2277
+ "cqmin",
2278
+ "cqmax"
2279
+ ].join("|")})`;
2280
+ function A(l) {
2281
+ return l === "0" || new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${O}$`).test(l) || r(l);
2282
+ }
2283
+ let $ = /* @__PURE__ */ new Set([
2284
+ "thin",
2285
+ "medium",
2286
+ "thick"
2287
+ ]);
2288
+ function T(l) {
2289
+ return $.has(l);
2290
+ }
2291
+ function P(l) {
2292
+ let x = (0, h.parseBoxShadowValue)(t(l));
2293
+ for (let z of x)
2294
+ if (!z.valid)
2295
+ return !1;
2296
+ return !0;
2297
+ }
2298
+ function D(l) {
2299
+ let x = 0;
2300
+ return (0, o.splitAtTopLevelOnly)(l, "_").every((k) => (k = t(k), k.startsWith("var(") ? !0 : (0, n.parseColor)(k, {
2301
+ loose: !0
2302
+ }) !== null ? (x++, !0) : !1)) ? x > 0 : !1;
2303
+ }
2304
+ function j(l) {
2305
+ let x = 0;
2306
+ return (0, o.splitAtTopLevelOnly)(l, ",").every((k) => (k = t(k), k.startsWith("var(") ? !0 : m(k) || L(k) || [
2307
+ "element(",
2308
+ "image(",
2309
+ "cross-fade(",
2310
+ "image-set("
2311
+ ].some((W) => k.startsWith(W)) ? (x++, !0) : !1)) ? x > 0 : !1;
2312
+ }
2313
+ let M = /* @__PURE__ */ new Set([
2314
+ "conic-gradient",
2315
+ "linear-gradient",
2316
+ "radial-gradient",
2317
+ "repeating-conic-gradient",
2318
+ "repeating-linear-gradient",
2319
+ "repeating-radial-gradient"
2320
+ ]);
2321
+ function L(l) {
2322
+ l = t(l);
2323
+ for (let x of M)
2324
+ if (l.startsWith(`${x}(`))
2325
+ return !0;
2326
+ return !1;
2327
+ }
2328
+ let U = /* @__PURE__ */ new Set([
2329
+ "center",
2330
+ "top",
2331
+ "right",
2332
+ "bottom",
2333
+ "left"
2334
+ ]);
2335
+ function p(l) {
2336
+ let x = 0;
2337
+ return (0, o.splitAtTopLevelOnly)(l, "_").every((k) => (k = t(k), k.startsWith("var(") ? !0 : U.has(k) || A(k) || w(k) ? (x++, !0) : !1)) ? x > 0 : !1;
2338
+ }
2339
+ function S(l) {
2340
+ let x = 0;
2341
+ return (0, o.splitAtTopLevelOnly)(l, ",").every((k) => (k = t(k), k.startsWith("var(") ? !0 : k.includes(" ") && !/(['"])([^"']+)\1/g.test(k) || /^\d/g.test(k) ? !1 : (x++, !0))) ? x > 0 : !1;
2342
+ }
2343
+ let _ = /* @__PURE__ */ new Set([
2344
+ "serif",
2345
+ "sans-serif",
2346
+ "monospace",
2347
+ "cursive",
2348
+ "fantasy",
2349
+ "system-ui",
2350
+ "ui-serif",
2351
+ "ui-sans-serif",
2352
+ "ui-monospace",
2353
+ "ui-rounded",
2354
+ "math",
2355
+ "emoji",
2356
+ "fangsong"
2357
+ ]);
2358
+ function s(l) {
2359
+ return _.has(l);
2360
+ }
2361
+ let b = /* @__PURE__ */ new Set([
2362
+ "xx-small",
2363
+ "x-small",
2364
+ "small",
2365
+ "medium",
2366
+ "large",
2367
+ "x-large",
2368
+ "x-large",
2369
+ "xxx-large"
2370
+ ]);
2371
+ function v(l) {
2372
+ return b.has(l);
2373
+ }
2374
+ let c = /* @__PURE__ */ new Set([
2375
+ "larger",
2376
+ "smaller"
2377
+ ]);
2378
+ function C(l) {
2379
+ return c.has(l);
2380
+ }
2381
+ })(Z);
2382
+ var be = {};
2383
+ (function(e) {
2384
+ Object.defineProperty(e, "__esModule", {
2385
+ value: !0
2386
+ }), Object.defineProperty(e, "backgroundSize", {
2387
+ enumerable: !0,
2388
+ get: function() {
2389
+ return h;
2390
+ }
2391
+ });
2392
+ const i = Z, n = I;
2393
+ function h(o) {
2394
+ let u = [
2395
+ "cover",
2396
+ "contain"
2397
+ ];
2398
+ return (0, n.splitAtTopLevelOnly)(o, ",").every((r) => {
2399
+ let y = (0, n.splitAtTopLevelOnly)(r, "_").filter(Boolean);
2400
+ return y.length === 1 && u.includes(y[0]) ? !0 : y.length !== 1 && y.length !== 2 ? !1 : y.every((a) => (0, i.length)(a) || (0, i.percentage)(a) || a === "auto");
2401
+ });
2402
+ }
2403
+ })(be);
2404
+ (function(e) {
2405
+ Object.defineProperty(e, "__esModule", {
2406
+ value: !0
2407
+ });
2408
+ function i(p, S) {
2409
+ for (var _ in S)
2410
+ Object.defineProperty(p, _, {
2411
+ enumerable: !0,
2412
+ get: S[_]
2413
+ });
2414
+ }
2415
+ i(e, {
2416
+ updateAllClasses: function() {
2417
+ return t;
2418
+ },
2419
+ asValue: function() {
2420
+ return f;
2421
+ },
2422
+ parseColorFormat: function() {
2423
+ return O;
2424
+ },
2425
+ asColor: function() {
2426
+ return $;
2427
+ },
2428
+ asLookupValue: function() {
2429
+ return T;
2430
+ },
2431
+ typeMap: function() {
2432
+ return D;
2433
+ },
2434
+ coerceValue: function() {
2435
+ return L;
2436
+ },
2437
+ getMatchingTypes: function() {
2438
+ return U;
2439
+ }
2440
+ });
2441
+ const n = /* @__PURE__ */ a(me), h = J, o = Z, u = /* @__PURE__ */ a(Y), r = be, y = H;
2442
+ function a(p) {
2443
+ return p && p.__esModule ? p : {
2444
+ default: p
2445
+ };
2446
+ }
2447
+ function t(p, S) {
2448
+ p.walkClasses((_) => {
2449
+ _.value = S(_.value), _.raws && _.raws.value && (_.raws.value = (0, n.default)(_.raws.value));
2450
+ });
2451
+ }
2452
+ function d(p, S) {
2453
+ if (!w(p))
2454
+ return;
2455
+ let _ = p.slice(1, -1);
2456
+ if (S(_))
2457
+ return (0, o.normalize)(_);
2458
+ }
2459
+ function m(p, S = {}, _) {
2460
+ let s = S[p];
2461
+ if (s !== void 0)
2462
+ return (0, u.default)(s);
2463
+ if (w(p)) {
2464
+ let b = d(p, _);
2465
+ return b === void 0 ? void 0 : (0, u.default)(b);
2466
+ }
2467
+ }
2468
+ function f(p, S = {}, { validate: _ = () => !0 } = {}) {
2469
+ var s;
2470
+ let b = (s = S.values) === null || s === void 0 ? void 0 : s[p];
2471
+ return b !== void 0 ? b : S.supportsNegativeValues && p.startsWith("-") ? m(p.slice(1), S.values, _) : d(p, _);
2472
+ }
2473
+ function w(p) {
2474
+ return p.startsWith("[") && p.endsWith("]");
2475
+ }
2476
+ function g(p) {
2477
+ let S = p.lastIndexOf("/");
2478
+ return S === -1 || S === p.length - 1 ? [
2479
+ p,
2480
+ void 0
2481
+ ] : w(p) && !p.includes("]/[") ? [
2482
+ p,
2483
+ void 0
2484
+ ] : [
2485
+ p.slice(0, S),
2486
+ p.slice(S + 1)
2487
+ ];
2488
+ }
2489
+ function O(p) {
2490
+ if (typeof p == "string" && p.includes("<alpha-value>")) {
2491
+ let S = p;
2492
+ return ({ opacityValue: _ = 1 }) => S.replace("<alpha-value>", _);
2493
+ }
2494
+ return p;
2495
+ }
2496
+ function A(p) {
2497
+ return (0, o.normalize)(p.slice(1, -1));
2498
+ }
2499
+ function $(p, S = {}, { tailwindConfig: _ = {} } = {}) {
2500
+ var s;
2501
+ if (((s = S.values) === null || s === void 0 ? void 0 : s[p]) !== void 0) {
2502
+ var b;
2503
+ return O((b = S.values) === null || b === void 0 ? void 0 : b[p]);
2504
+ }
2505
+ let [v, c] = g(p);
2506
+ if (c !== void 0) {
2507
+ var C, l, x, z;
2508
+ let k = (z = (C = S.values) === null || C === void 0 ? void 0 : C[v]) !== null && z !== void 0 ? z : w(v) ? v.slice(1, -1) : void 0;
2509
+ return k === void 0 ? void 0 : (k = O(k), w(c) ? (0, h.withAlphaValue)(k, A(c)) : ((l = _.theme) === null || l === void 0 || (x = l.opacity) === null || x === void 0 ? void 0 : x[c]) === void 0 ? void 0 : (0, h.withAlphaValue)(k, _.theme.opacity[c]));
2510
+ }
2511
+ return f(p, S, {
2512
+ validate: o.color
2513
+ });
2514
+ }
2515
+ function T(p, S = {}) {
2516
+ var _;
2517
+ return (_ = S.values) === null || _ === void 0 ? void 0 : _[p];
2518
+ }
2519
+ function P(p) {
2520
+ return (S, _) => f(S, _, {
2521
+ validate: p
2522
+ });
2523
+ }
2524
+ let D = {
2525
+ any: f,
2526
+ color: $,
2527
+ url: P(o.url),
2528
+ image: P(o.image),
2529
+ length: P(o.length),
2530
+ percentage: P(o.percentage),
2531
+ position: P(o.position),
2532
+ lookup: T,
2533
+ "generic-name": P(o.genericName),
2534
+ "family-name": P(o.familyName),
2535
+ number: P(o.number),
2536
+ "line-width": P(o.lineWidth),
2537
+ "absolute-size": P(o.absoluteSize),
2538
+ "relative-size": P(o.relativeSize),
2539
+ shadow: P(o.shadow),
2540
+ size: P(r.backgroundSize)
2541
+ }, j = Object.keys(D);
2542
+ function M(p, S) {
2543
+ let _ = p.indexOf(S);
2544
+ return _ === -1 ? [
2545
+ void 0,
2546
+ p
2547
+ ] : [
2548
+ p.slice(0, _),
2549
+ p.slice(_ + 1)
2550
+ ];
2551
+ }
2552
+ function L(p, S, _, s) {
2553
+ if (_.values && S in _.values)
2554
+ for (let { type: v } of p != null ? p : []) {
2555
+ let c = D[v](S, _, {
2556
+ tailwindConfig: s
2557
+ });
2558
+ if (c !== void 0)
2559
+ return [
2560
+ c,
2561
+ v,
2562
+ null
2563
+ ];
2564
+ }
2565
+ if (w(S)) {
2566
+ let v = S.slice(1, -1), [c, C] = M(v, ":");
2567
+ if (!/^[\w-_]+$/g.test(c))
2568
+ C = v;
2569
+ else if (c !== void 0 && !j.includes(c))
2570
+ return [];
2571
+ if (C.length > 0 && j.includes(c))
2572
+ return [
2573
+ f(`[${C}]`, _),
2574
+ c,
2575
+ null
2576
+ ];
2577
+ }
2578
+ let b = U(p, S, _, s);
2579
+ for (let v of b)
2580
+ return v;
2581
+ return [];
2582
+ }
2583
+ function* U(p, S, _, s) {
2584
+ let b = (0, y.flagEnabled)(s, "generalizedModifiers"), [v, c] = g(S);
2585
+ if (b && _.modifiers != null && (_.modifiers === "any" || typeof _.modifiers == "object" && (c && w(c) || c in _.modifiers)) || (v = S, c = void 0), c !== void 0 && v === "" && (v = "DEFAULT"), c !== void 0 && typeof _.modifiers == "object") {
2586
+ var l, x;
2587
+ let z = (x = (l = _.modifiers) === null || l === void 0 ? void 0 : l[c]) !== null && x !== void 0 ? x : null;
2588
+ z !== null ? c = z : w(c) && (c = A(c));
2589
+ }
2590
+ for (let { type: z } of p != null ? p : []) {
2591
+ let k = D[z](v, _, {
2592
+ tailwindConfig: s
2593
+ });
2594
+ k !== void 0 && (yield [
2595
+ k,
2596
+ z,
2597
+ c != null ? c : null
2598
+ ]);
2599
+ }
2600
+ }
2601
+ })(pe);
2602
+ var ye = {};
2603
+ (function(e) {
2604
+ Object.defineProperty(e, "__esModule", {
2605
+ value: !0
2606
+ }), Object.defineProperty(e, "default", {
2607
+ enumerable: !0,
2608
+ get: function() {
2609
+ return i;
2610
+ }
2611
+ });
2612
+ function i(n) {
2613
+ return typeof n == "function" ? n({}) : n;
2614
+ }
2615
+ })(ye);
2616
+ (function(e) {
2617
+ Object.defineProperty(e, "__esModule", {
2618
+ value: !0
2619
+ }), Object.defineProperty(e, "default", {
2620
+ enumerable: !0,
2621
+ get: function() {
2622
+ return _;
2623
+ }
2624
+ });
2625
+ const i = /* @__PURE__ */ w(Y), n = /* @__PURE__ */ w(ie), h = /* @__PURE__ */ w(ae), o = /* @__PURE__ */ w(K), u = se, r = ue, y = fe, a = /* @__PURE__ */ w(ce), t = de, d = pe, m = J, f = /* @__PURE__ */ w(ye);
2626
+ function w(s) {
2627
+ return s && s.__esModule ? s : {
2628
+ default: s
2629
+ };
2630
+ }
2631
+ function g(s) {
2632
+ return typeof s == "function";
2633
+ }
2634
+ function O(s, ...b) {
2635
+ let v = b.pop();
2636
+ for (let c of b)
2637
+ for (let C in c) {
2638
+ let l = v(s[C], c[C]);
2639
+ l === void 0 ? (0, a.default)(s[C]) && (0, a.default)(c[C]) ? s[C] = O({}, s[C], c[C], v) : s[C] = c[C] : s[C] = l;
2640
+ }
2641
+ return s;
2642
+ }
2643
+ const A = {
2644
+ colors: o.default,
2645
+ negative(s) {
2646
+ return Object.keys(s).filter((b) => s[b] !== "0").reduce((b, v) => {
2647
+ let c = (0, i.default)(s[v]);
2648
+ return c !== void 0 && (b[`-${v}`] = c), b;
2649
+ }, {});
2650
+ },
2651
+ breakpoints(s) {
2652
+ return Object.keys(s).filter((b) => typeof s[b] == "string").reduce((b, v) => ({
2653
+ ...b,
2654
+ [`screen-${v}`]: s[v]
2655
+ }), {});
2656
+ }
2657
+ };
2658
+ function $(s, ...b) {
2659
+ return g(s) ? s(...b) : s;
2660
+ }
2661
+ function T(s) {
2662
+ return s.reduce((b, { extend: v }) => O(b, v, (c, C) => c === void 0 ? [
2663
+ C
2664
+ ] : Array.isArray(c) ? [
2665
+ C,
2666
+ ...c
2667
+ ] : [
2668
+ C,
2669
+ c
2670
+ ]), {});
2671
+ }
2672
+ function P(s) {
2673
+ return {
2674
+ ...s.reduce((b, v) => (0, u.defaults)(b, v), {}),
2675
+ // In order to resolve n config objects, we combine all of their `extend` properties
2676
+ // into arrays instead of objects so they aren't overridden.
2677
+ extend: T(s)
2678
+ };
2679
+ }
2680
+ function D(s, b) {
2681
+ if (Array.isArray(s) && (0, a.default)(s[0]))
2682
+ return s.concat(b);
2683
+ if (Array.isArray(b) && (0, a.default)(b[0]) && (0, a.default)(s))
2684
+ return [
2685
+ s,
2686
+ ...b
2687
+ ];
2688
+ if (Array.isArray(b))
2689
+ return b;
2690
+ }
2691
+ function j({ extend: s, ...b }) {
2692
+ return O(b, s, (v, c) => !g(v) && !c.some(g) ? O({}, v, ...c, D) : (C, l) => O({}, ...[
2693
+ v,
2694
+ ...c
2695
+ ].map((x) => $(x, C, l)), D));
2696
+ }
2697
+ function* M(s) {
2698
+ let b = (0, r.toPath)(s);
2699
+ if (b.length === 0 || (yield b, Array.isArray(s)))
2700
+ return;
2701
+ let v = /^(.*?)\s*\/\s*([^/]+)$/, c = s.match(v);
2702
+ if (c !== null) {
2703
+ let [, C, l] = c, x = (0, r.toPath)(C);
2704
+ x.alpha = l, yield x;
2705
+ }
2706
+ }
2707
+ function L(s) {
2708
+ const b = (v, c) => {
2709
+ for (const C of M(v)) {
2710
+ let l = 0, x = s;
2711
+ for (; x != null && l < C.length; )
2712
+ x = x[C[l++]], x = g(x) && (C.alpha === void 0 || l <= C.length - 1) ? x(b, A) : x;
2713
+ if (x !== void 0) {
2714
+ if (C.alpha !== void 0) {
2715
+ let z = (0, d.parseColorFormat)(x);
2716
+ return (0, m.withAlphaValue)(z, C.alpha, (0, f.default)(z));
2717
+ }
2718
+ return (0, a.default)(x) ? (0, t.cloneDeep)(x) : x;
2719
+ }
2720
+ }
2721
+ return c;
2722
+ };
2723
+ return Object.assign(b, {
2724
+ theme: b,
2725
+ ...A
2726
+ }), Object.keys(s).reduce((v, c) => (v[c] = g(s[c]) ? s[c](b, A) : s[c], v), {});
2727
+ }
2728
+ function U(s) {
2729
+ let b = [];
2730
+ return s.forEach((v) => {
2731
+ b = [
2732
+ ...b,
2733
+ v
2734
+ ];
2735
+ var c;
2736
+ const C = (c = v == null ? void 0 : v.plugins) !== null && c !== void 0 ? c : [];
2737
+ C.length !== 0 && C.forEach((l) => {
2738
+ l.__isOptionsFunction && (l = l());
2739
+ var x;
2740
+ b = [
2741
+ ...b,
2742
+ ...U([
2743
+ (x = l == null ? void 0 : l.config) !== null && x !== void 0 ? x : {}
2744
+ ])
2745
+ ];
2746
+ });
2747
+ }), b;
2748
+ }
2749
+ function p(s) {
2750
+ return [
2751
+ ...s
2752
+ ].reduceRight((v, c) => g(c) ? c({
2753
+ corePlugins: v
2754
+ }) : (0, h.default)(c, v), n.default);
2755
+ }
2756
+ function S(s) {
2757
+ return [
2758
+ ...s
2759
+ ].reduceRight((v, c) => [
2760
+ ...v,
2761
+ ...c
2762
+ ], []);
2763
+ }
2764
+ function _(s) {
2765
+ let b = [
2766
+ ...U(s),
2767
+ {
2768
+ prefix: "",
2769
+ important: !1,
2770
+ separator: ":"
2771
+ }
2772
+ ];
2773
+ var v, c;
2774
+ return (0, y.normalizeConfig)((0, u.defaults)({
2775
+ theme: L(j(P(b.map((C) => (v = C == null ? void 0 : C.theme) !== null && v !== void 0 ? v : {})))),
2776
+ corePlugins: p(b.map((C) => C.corePlugins)),
2777
+ plugins: S(s.map((C) => (c = C == null ? void 0 : C.plugins) !== null && c !== void 0 ? c : []))
2778
+ }, ...b));
2779
+ }
2780
+ })(ne);
2781
+ var ve = {}, Ue = {
2782
+ content: [],
2783
+ presets: [],
2784
+ darkMode: "media",
2785
+ // or 'class'
2786
+ theme: {
2787
+ accentColor: ({ theme: e }) => ({
2788
+ ...e("colors"),
2789
+ auto: "auto"
2790
+ }),
2791
+ animation: {
2792
+ none: "none",
2793
+ spin: "spin 1s linear infinite",
2794
+ ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
2795
+ pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
2796
+ bounce: "bounce 1s infinite"
2797
+ },
2798
+ aria: {
2799
+ busy: 'busy="true"',
2800
+ checked: 'checked="true"',
2801
+ disabled: 'disabled="true"',
2802
+ expanded: 'expanded="true"',
2803
+ hidden: 'hidden="true"',
2804
+ pressed: 'pressed="true"',
2805
+ readonly: 'readonly="true"',
2806
+ required: 'required="true"',
2807
+ selected: 'selected="true"'
2808
+ },
2809
+ aspectRatio: {
2810
+ auto: "auto",
2811
+ square: "1 / 1",
2812
+ video: "16 / 9"
2813
+ },
2814
+ backdropBlur: ({ theme: e }) => e("blur"),
2815
+ backdropBrightness: ({ theme: e }) => e("brightness"),
2816
+ backdropContrast: ({ theme: e }) => e("contrast"),
2817
+ backdropGrayscale: ({ theme: e }) => e("grayscale"),
2818
+ backdropHueRotate: ({ theme: e }) => e("hueRotate"),
2819
+ backdropInvert: ({ theme: e }) => e("invert"),
2820
+ backdropOpacity: ({ theme: e }) => e("opacity"),
2821
+ backdropSaturate: ({ theme: e }) => e("saturate"),
2822
+ backdropSepia: ({ theme: e }) => e("sepia"),
2823
+ backgroundColor: ({ theme: e }) => e("colors"),
2824
+ backgroundImage: {
2825
+ none: "none",
2826
+ "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
2827
+ "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
2828
+ "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
2829
+ "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
2830
+ "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
2831
+ "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
2832
+ "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
2833
+ "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
2834
+ },
2835
+ backgroundOpacity: ({ theme: e }) => e("opacity"),
2836
+ backgroundPosition: {
2837
+ bottom: "bottom",
2838
+ center: "center",
2839
+ left: "left",
2840
+ "left-bottom": "left bottom",
2841
+ "left-top": "left top",
2842
+ right: "right",
2843
+ "right-bottom": "right bottom",
2844
+ "right-top": "right top",
2845
+ top: "top"
2846
+ },
2847
+ backgroundSize: {
2848
+ auto: "auto",
2849
+ cover: "cover",
2850
+ contain: "contain"
2851
+ },
2852
+ blur: {
2853
+ 0: "0",
2854
+ none: "0",
2855
+ sm: "4px",
2856
+ DEFAULT: "8px",
2857
+ md: "12px",
2858
+ lg: "16px",
2859
+ xl: "24px",
2860
+ "2xl": "40px",
2861
+ "3xl": "64px"
2862
+ },
2863
+ borderColor: ({ theme: e }) => ({
2864
+ ...e("colors"),
2865
+ DEFAULT: e("colors.gray.200", "currentColor")
2866
+ }),
2867
+ borderOpacity: ({ theme: e }) => e("opacity"),
2868
+ borderRadius: {
2869
+ none: "0px",
2870
+ sm: "0.125rem",
2871
+ DEFAULT: "0.25rem",
2872
+ md: "0.375rem",
2873
+ lg: "0.5rem",
2874
+ xl: "0.75rem",
2875
+ "2xl": "1rem",
2876
+ "3xl": "1.5rem",
2877
+ full: "9999px"
2878
+ },
2879
+ borderSpacing: ({ theme: e }) => ({
2880
+ ...e("spacing")
2881
+ }),
2882
+ borderWidth: {
2883
+ DEFAULT: "1px",
2884
+ 0: "0px",
2885
+ 2: "2px",
2886
+ 4: "4px",
2887
+ 8: "8px"
2888
+ },
2889
+ boxShadow: {
2890
+ sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
2891
+ DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
2892
+ md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
2893
+ lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
2894
+ xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
2895
+ "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
2896
+ inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
2897
+ none: "none"
2898
+ },
2899
+ boxShadowColor: ({ theme: e }) => e("colors"),
2900
+ brightness: {
2901
+ 0: "0",
2902
+ 50: ".5",
2903
+ 75: ".75",
2904
+ 90: ".9",
2905
+ 95: ".95",
2906
+ 100: "1",
2907
+ 105: "1.05",
2908
+ 110: "1.1",
2909
+ 125: "1.25",
2910
+ 150: "1.5",
2911
+ 200: "2"
2912
+ },
2913
+ caretColor: ({ theme: e }) => e("colors"),
2914
+ colors: ({ colors: e }) => ({
2915
+ inherit: e.inherit,
2916
+ current: e.current,
2917
+ transparent: e.transparent,
2918
+ black: e.black,
2919
+ white: e.white,
2920
+ slate: e.slate,
2921
+ gray: e.gray,
2922
+ zinc: e.zinc,
2923
+ neutral: e.neutral,
2924
+ stone: e.stone,
2925
+ red: e.red,
2926
+ orange: e.orange,
2927
+ amber: e.amber,
2928
+ yellow: e.yellow,
2929
+ lime: e.lime,
2930
+ green: e.green,
2931
+ emerald: e.emerald,
2932
+ teal: e.teal,
2933
+ cyan: e.cyan,
2934
+ sky: e.sky,
2935
+ blue: e.blue,
2936
+ indigo: e.indigo,
2937
+ violet: e.violet,
2938
+ purple: e.purple,
2939
+ fuchsia: e.fuchsia,
2940
+ pink: e.pink,
2941
+ rose: e.rose
2942
+ }),
2943
+ columns: {
2944
+ auto: "auto",
2945
+ 1: "1",
2946
+ 2: "2",
2947
+ 3: "3",
2948
+ 4: "4",
2949
+ 5: "5",
2950
+ 6: "6",
2951
+ 7: "7",
2952
+ 8: "8",
2953
+ 9: "9",
2954
+ 10: "10",
2955
+ 11: "11",
2956
+ 12: "12",
2957
+ "3xs": "16rem",
2958
+ "2xs": "18rem",
2959
+ xs: "20rem",
2960
+ sm: "24rem",
2961
+ md: "28rem",
2962
+ lg: "32rem",
2963
+ xl: "36rem",
2964
+ "2xl": "42rem",
2965
+ "3xl": "48rem",
2966
+ "4xl": "56rem",
2967
+ "5xl": "64rem",
2968
+ "6xl": "72rem",
2969
+ "7xl": "80rem"
2970
+ },
2971
+ container: {},
2972
+ content: {
2973
+ none: "none"
2974
+ },
2975
+ contrast: {
2976
+ 0: "0",
2977
+ 50: ".5",
2978
+ 75: ".75",
2979
+ 100: "1",
2980
+ 125: "1.25",
2981
+ 150: "1.5",
2982
+ 200: "2"
2983
+ },
2984
+ cursor: {
2985
+ auto: "auto",
2986
+ default: "default",
2987
+ pointer: "pointer",
2988
+ wait: "wait",
2989
+ text: "text",
2990
+ move: "move",
2991
+ help: "help",
2992
+ "not-allowed": "not-allowed",
2993
+ none: "none",
2994
+ "context-menu": "context-menu",
2995
+ progress: "progress",
2996
+ cell: "cell",
2997
+ crosshair: "crosshair",
2998
+ "vertical-text": "vertical-text",
2999
+ alias: "alias",
3000
+ copy: "copy",
3001
+ "no-drop": "no-drop",
3002
+ grab: "grab",
3003
+ grabbing: "grabbing",
3004
+ "all-scroll": "all-scroll",
3005
+ "col-resize": "col-resize",
3006
+ "row-resize": "row-resize",
3007
+ "n-resize": "n-resize",
3008
+ "e-resize": "e-resize",
3009
+ "s-resize": "s-resize",
3010
+ "w-resize": "w-resize",
3011
+ "ne-resize": "ne-resize",
3012
+ "nw-resize": "nw-resize",
3013
+ "se-resize": "se-resize",
3014
+ "sw-resize": "sw-resize",
3015
+ "ew-resize": "ew-resize",
3016
+ "ns-resize": "ns-resize",
3017
+ "nesw-resize": "nesw-resize",
3018
+ "nwse-resize": "nwse-resize",
3019
+ "zoom-in": "zoom-in",
3020
+ "zoom-out": "zoom-out"
3021
+ },
3022
+ divideColor: ({ theme: e }) => e("borderColor"),
3023
+ divideOpacity: ({ theme: e }) => e("borderOpacity"),
3024
+ divideWidth: ({ theme: e }) => e("borderWidth"),
3025
+ dropShadow: {
3026
+ sm: "0 1px 1px rgb(0 0 0 / 0.05)",
3027
+ DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
3028
+ md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
3029
+ lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
3030
+ xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
3031
+ "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
3032
+ none: "0 0 #0000"
3033
+ },
3034
+ fill: ({ theme: e }) => ({
3035
+ none: "none",
3036
+ ...e("colors")
3037
+ }),
3038
+ flex: {
3039
+ 1: "1 1 0%",
3040
+ auto: "1 1 auto",
3041
+ initial: "0 1 auto",
3042
+ none: "none"
3043
+ },
3044
+ flexBasis: ({ theme: e }) => ({
3045
+ auto: "auto",
3046
+ ...e("spacing"),
3047
+ "1/2": "50%",
3048
+ "1/3": "33.333333%",
3049
+ "2/3": "66.666667%",
3050
+ "1/4": "25%",
3051
+ "2/4": "50%",
3052
+ "3/4": "75%",
3053
+ "1/5": "20%",
3054
+ "2/5": "40%",
3055
+ "3/5": "60%",
3056
+ "4/5": "80%",
3057
+ "1/6": "16.666667%",
3058
+ "2/6": "33.333333%",
3059
+ "3/6": "50%",
3060
+ "4/6": "66.666667%",
3061
+ "5/6": "83.333333%",
3062
+ "1/12": "8.333333%",
3063
+ "2/12": "16.666667%",
3064
+ "3/12": "25%",
3065
+ "4/12": "33.333333%",
3066
+ "5/12": "41.666667%",
3067
+ "6/12": "50%",
3068
+ "7/12": "58.333333%",
3069
+ "8/12": "66.666667%",
3070
+ "9/12": "75%",
3071
+ "10/12": "83.333333%",
3072
+ "11/12": "91.666667%",
3073
+ full: "100%"
3074
+ }),
3075
+ flexGrow: {
3076
+ 0: "0",
3077
+ DEFAULT: "1"
3078
+ },
3079
+ flexShrink: {
3080
+ 0: "0",
3081
+ DEFAULT: "1"
3082
+ },
3083
+ fontFamily: {
3084
+ sans: [
3085
+ "ui-sans-serif",
3086
+ "system-ui",
3087
+ "-apple-system",
3088
+ "BlinkMacSystemFont",
3089
+ '"Segoe UI"',
3090
+ "Roboto",
3091
+ '"Helvetica Neue"',
3092
+ "Arial",
3093
+ '"Noto Sans"',
3094
+ "sans-serif",
3095
+ '"Apple Color Emoji"',
3096
+ '"Segoe UI Emoji"',
3097
+ '"Segoe UI Symbol"',
3098
+ '"Noto Color Emoji"'
3099
+ ],
3100
+ serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
3101
+ mono: [
3102
+ "ui-monospace",
3103
+ "SFMono-Regular",
3104
+ "Menlo",
3105
+ "Monaco",
3106
+ "Consolas",
3107
+ '"Liberation Mono"',
3108
+ '"Courier New"',
3109
+ "monospace"
3110
+ ]
3111
+ },
3112
+ fontSize: {
3113
+ xs: ["0.75rem", { lineHeight: "1rem" }],
3114
+ sm: ["0.875rem", { lineHeight: "1.25rem" }],
3115
+ base: ["1rem", { lineHeight: "1.5rem" }],
3116
+ lg: ["1.125rem", { lineHeight: "1.75rem" }],
3117
+ xl: ["1.25rem", { lineHeight: "1.75rem" }],
3118
+ "2xl": ["1.5rem", { lineHeight: "2rem" }],
3119
+ "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
3120
+ "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
3121
+ "5xl": ["3rem", { lineHeight: "1" }],
3122
+ "6xl": ["3.75rem", { lineHeight: "1" }],
3123
+ "7xl": ["4.5rem", { lineHeight: "1" }],
3124
+ "8xl": ["6rem", { lineHeight: "1" }],
3125
+ "9xl": ["8rem", { lineHeight: "1" }]
3126
+ },
3127
+ fontWeight: {
3128
+ thin: "100",
3129
+ extralight: "200",
3130
+ light: "300",
3131
+ normal: "400",
3132
+ medium: "500",
3133
+ semibold: "600",
3134
+ bold: "700",
3135
+ extrabold: "800",
3136
+ black: "900"
3137
+ },
3138
+ gap: ({ theme: e }) => e("spacing"),
3139
+ gradientColorStops: ({ theme: e }) => e("colors"),
3140
+ gradientColorStopPositions: {
3141
+ "0%": "0%",
3142
+ "5%": "5%",
3143
+ "10%": "10%",
3144
+ "15%": "15%",
3145
+ "20%": "20%",
3146
+ "25%": "25%",
3147
+ "30%": "30%",
3148
+ "35%": "35%",
3149
+ "40%": "40%",
3150
+ "45%": "45%",
3151
+ "50%": "50%",
3152
+ "55%": "55%",
3153
+ "60%": "60%",
3154
+ "65%": "65%",
3155
+ "70%": "70%",
3156
+ "75%": "75%",
3157
+ "80%": "80%",
3158
+ "85%": "85%",
3159
+ "90%": "90%",
3160
+ "95%": "95%",
3161
+ "100%": "100%"
3162
+ },
3163
+ grayscale: {
3164
+ 0: "0",
3165
+ DEFAULT: "100%"
3166
+ },
3167
+ gridAutoColumns: {
3168
+ auto: "auto",
3169
+ min: "min-content",
3170
+ max: "max-content",
3171
+ fr: "minmax(0, 1fr)"
3172
+ },
3173
+ gridAutoRows: {
3174
+ auto: "auto",
3175
+ min: "min-content",
3176
+ max: "max-content",
3177
+ fr: "minmax(0, 1fr)"
3178
+ },
3179
+ gridColumn: {
3180
+ auto: "auto",
3181
+ "span-1": "span 1 / span 1",
3182
+ "span-2": "span 2 / span 2",
3183
+ "span-3": "span 3 / span 3",
3184
+ "span-4": "span 4 / span 4",
3185
+ "span-5": "span 5 / span 5",
3186
+ "span-6": "span 6 / span 6",
3187
+ "span-7": "span 7 / span 7",
3188
+ "span-8": "span 8 / span 8",
3189
+ "span-9": "span 9 / span 9",
3190
+ "span-10": "span 10 / span 10",
3191
+ "span-11": "span 11 / span 11",
3192
+ "span-12": "span 12 / span 12",
3193
+ "span-full": "1 / -1"
3194
+ },
3195
+ gridColumnEnd: {
3196
+ auto: "auto",
3197
+ 1: "1",
3198
+ 2: "2",
3199
+ 3: "3",
3200
+ 4: "4",
3201
+ 5: "5",
3202
+ 6: "6",
3203
+ 7: "7",
3204
+ 8: "8",
3205
+ 9: "9",
3206
+ 10: "10",
3207
+ 11: "11",
3208
+ 12: "12",
3209
+ 13: "13"
3210
+ },
3211
+ gridColumnStart: {
3212
+ auto: "auto",
3213
+ 1: "1",
3214
+ 2: "2",
3215
+ 3: "3",
3216
+ 4: "4",
3217
+ 5: "5",
3218
+ 6: "6",
3219
+ 7: "7",
3220
+ 8: "8",
3221
+ 9: "9",
3222
+ 10: "10",
3223
+ 11: "11",
3224
+ 12: "12",
3225
+ 13: "13"
3226
+ },
3227
+ gridRow: {
3228
+ auto: "auto",
3229
+ "span-1": "span 1 / span 1",
3230
+ "span-2": "span 2 / span 2",
3231
+ "span-3": "span 3 / span 3",
3232
+ "span-4": "span 4 / span 4",
3233
+ "span-5": "span 5 / span 5",
3234
+ "span-6": "span 6 / span 6",
3235
+ "span-full": "1 / -1"
3236
+ },
3237
+ gridRowEnd: {
3238
+ auto: "auto",
3239
+ 1: "1",
3240
+ 2: "2",
3241
+ 3: "3",
3242
+ 4: "4",
3243
+ 5: "5",
3244
+ 6: "6",
3245
+ 7: "7"
3246
+ },
3247
+ gridRowStart: {
3248
+ auto: "auto",
3249
+ 1: "1",
3250
+ 2: "2",
3251
+ 3: "3",
3252
+ 4: "4",
3253
+ 5: "5",
3254
+ 6: "6",
3255
+ 7: "7"
3256
+ },
3257
+ gridTemplateColumns: {
3258
+ none: "none",
3259
+ 1: "repeat(1, minmax(0, 1fr))",
3260
+ 2: "repeat(2, minmax(0, 1fr))",
3261
+ 3: "repeat(3, minmax(0, 1fr))",
3262
+ 4: "repeat(4, minmax(0, 1fr))",
3263
+ 5: "repeat(5, minmax(0, 1fr))",
3264
+ 6: "repeat(6, minmax(0, 1fr))",
3265
+ 7: "repeat(7, minmax(0, 1fr))",
3266
+ 8: "repeat(8, minmax(0, 1fr))",
3267
+ 9: "repeat(9, minmax(0, 1fr))",
3268
+ 10: "repeat(10, minmax(0, 1fr))",
3269
+ 11: "repeat(11, minmax(0, 1fr))",
3270
+ 12: "repeat(12, minmax(0, 1fr))"
3271
+ },
3272
+ gridTemplateRows: {
3273
+ none: "none",
3274
+ 1: "repeat(1, minmax(0, 1fr))",
3275
+ 2: "repeat(2, minmax(0, 1fr))",
3276
+ 3: "repeat(3, minmax(0, 1fr))",
3277
+ 4: "repeat(4, minmax(0, 1fr))",
3278
+ 5: "repeat(5, minmax(0, 1fr))",
3279
+ 6: "repeat(6, minmax(0, 1fr))"
3280
+ },
3281
+ height: ({ theme: e }) => ({
3282
+ auto: "auto",
3283
+ ...e("spacing"),
3284
+ "1/2": "50%",
3285
+ "1/3": "33.333333%",
3286
+ "2/3": "66.666667%",
3287
+ "1/4": "25%",
3288
+ "2/4": "50%",
3289
+ "3/4": "75%",
3290
+ "1/5": "20%",
3291
+ "2/5": "40%",
3292
+ "3/5": "60%",
3293
+ "4/5": "80%",
3294
+ "1/6": "16.666667%",
3295
+ "2/6": "33.333333%",
3296
+ "3/6": "50%",
3297
+ "4/6": "66.666667%",
3298
+ "5/6": "83.333333%",
3299
+ full: "100%",
3300
+ screen: "100vh",
3301
+ min: "min-content",
3302
+ max: "max-content",
3303
+ fit: "fit-content"
3304
+ }),
3305
+ hueRotate: {
3306
+ 0: "0deg",
3307
+ 15: "15deg",
3308
+ 30: "30deg",
3309
+ 60: "60deg",
3310
+ 90: "90deg",
3311
+ 180: "180deg"
3312
+ },
3313
+ inset: ({ theme: e }) => ({
3314
+ auto: "auto",
3315
+ ...e("spacing"),
3316
+ "1/2": "50%",
3317
+ "1/3": "33.333333%",
3318
+ "2/3": "66.666667%",
3319
+ "1/4": "25%",
3320
+ "2/4": "50%",
3321
+ "3/4": "75%",
3322
+ full: "100%"
3323
+ }),
3324
+ invert: {
3325
+ 0: "0",
3326
+ DEFAULT: "100%"
3327
+ },
3328
+ keyframes: {
3329
+ spin: {
3330
+ to: {
3331
+ transform: "rotate(360deg)"
3332
+ }
3333
+ },
3334
+ ping: {
3335
+ "75%, 100%": {
3336
+ transform: "scale(2)",
3337
+ opacity: "0"
3338
+ }
3339
+ },
3340
+ pulse: {
3341
+ "50%": {
3342
+ opacity: ".5"
3343
+ }
3344
+ },
3345
+ bounce: {
3346
+ "0%, 100%": {
3347
+ transform: "translateY(-25%)",
3348
+ animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
3349
+ },
3350
+ "50%": {
3351
+ transform: "none",
3352
+ animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
3353
+ }
3354
+ }
3355
+ },
3356
+ letterSpacing: {
3357
+ tighter: "-0.05em",
3358
+ tight: "-0.025em",
3359
+ normal: "0em",
3360
+ wide: "0.025em",
3361
+ wider: "0.05em",
3362
+ widest: "0.1em"
3363
+ },
3364
+ lineHeight: {
3365
+ none: "1",
3366
+ tight: "1.25",
3367
+ snug: "1.375",
3368
+ normal: "1.5",
3369
+ relaxed: "1.625",
3370
+ loose: "2",
3371
+ 3: ".75rem",
3372
+ 4: "1rem",
3373
+ 5: "1.25rem",
3374
+ 6: "1.5rem",
3375
+ 7: "1.75rem",
3376
+ 8: "2rem",
3377
+ 9: "2.25rem",
3378
+ 10: "2.5rem"
3379
+ },
3380
+ listStyleType: {
3381
+ none: "none",
3382
+ disc: "disc",
3383
+ decimal: "decimal"
3384
+ },
3385
+ listStyleImage: {
3386
+ none: "none"
3387
+ },
3388
+ margin: ({ theme: e }) => ({
3389
+ auto: "auto",
3390
+ ...e("spacing")
3391
+ }),
3392
+ lineClamp: {
3393
+ 1: "1",
3394
+ 2: "2",
3395
+ 3: "3",
3396
+ 4: "4",
3397
+ 5: "5",
3398
+ 6: "6"
3399
+ },
3400
+ maxHeight: ({ theme: e }) => ({
3401
+ ...e("spacing"),
3402
+ none: "none",
3403
+ full: "100%",
3404
+ screen: "100vh",
3405
+ min: "min-content",
3406
+ max: "max-content",
3407
+ fit: "fit-content"
3408
+ }),
3409
+ maxWidth: ({ theme: e, breakpoints: i }) => ({
3410
+ none: "none",
3411
+ 0: "0rem",
3412
+ xs: "20rem",
3413
+ sm: "24rem",
3414
+ md: "28rem",
3415
+ lg: "32rem",
3416
+ xl: "36rem",
3417
+ "2xl": "42rem",
3418
+ "3xl": "48rem",
3419
+ "4xl": "56rem",
3420
+ "5xl": "64rem",
3421
+ "6xl": "72rem",
3422
+ "7xl": "80rem",
3423
+ full: "100%",
3424
+ min: "min-content",
3425
+ max: "max-content",
3426
+ fit: "fit-content",
3427
+ prose: "65ch",
3428
+ ...i(e("screens"))
3429
+ }),
3430
+ minHeight: {
3431
+ 0: "0px",
3432
+ full: "100%",
3433
+ screen: "100vh",
3434
+ min: "min-content",
3435
+ max: "max-content",
3436
+ fit: "fit-content"
3437
+ },
3438
+ minWidth: {
3439
+ 0: "0px",
3440
+ full: "100%",
3441
+ min: "min-content",
3442
+ max: "max-content",
3443
+ fit: "fit-content"
3444
+ },
3445
+ objectPosition: {
3446
+ bottom: "bottom",
3447
+ center: "center",
3448
+ left: "left",
3449
+ "left-bottom": "left bottom",
3450
+ "left-top": "left top",
3451
+ right: "right",
3452
+ "right-bottom": "right bottom",
3453
+ "right-top": "right top",
3454
+ top: "top"
3455
+ },
3456
+ opacity: {
3457
+ 0: "0",
3458
+ 5: "0.05",
3459
+ 10: "0.1",
3460
+ 20: "0.2",
3461
+ 25: "0.25",
3462
+ 30: "0.3",
3463
+ 40: "0.4",
3464
+ 50: "0.5",
3465
+ 60: "0.6",
3466
+ 70: "0.7",
3467
+ 75: "0.75",
3468
+ 80: "0.8",
3469
+ 90: "0.9",
3470
+ 95: "0.95",
3471
+ 100: "1"
3472
+ },
3473
+ order: {
3474
+ first: "-9999",
3475
+ last: "9999",
3476
+ none: "0",
3477
+ 1: "1",
3478
+ 2: "2",
3479
+ 3: "3",
3480
+ 4: "4",
3481
+ 5: "5",
3482
+ 6: "6",
3483
+ 7: "7",
3484
+ 8: "8",
3485
+ 9: "9",
3486
+ 10: "10",
3487
+ 11: "11",
3488
+ 12: "12"
3489
+ },
3490
+ outlineColor: ({ theme: e }) => e("colors"),
3491
+ outlineOffset: {
3492
+ 0: "0px",
3493
+ 1: "1px",
3494
+ 2: "2px",
3495
+ 4: "4px",
3496
+ 8: "8px"
3497
+ },
3498
+ outlineWidth: {
3499
+ 0: "0px",
3500
+ 1: "1px",
3501
+ 2: "2px",
3502
+ 4: "4px",
3503
+ 8: "8px"
3504
+ },
3505
+ padding: ({ theme: e }) => e("spacing"),
3506
+ placeholderColor: ({ theme: e }) => e("colors"),
3507
+ placeholderOpacity: ({ theme: e }) => e("opacity"),
3508
+ ringColor: ({ theme: e }) => ({
3509
+ DEFAULT: e("colors.blue.500", "#3b82f6"),
3510
+ ...e("colors")
3511
+ }),
3512
+ ringOffsetColor: ({ theme: e }) => e("colors"),
3513
+ ringOffsetWidth: {
3514
+ 0: "0px",
3515
+ 1: "1px",
3516
+ 2: "2px",
3517
+ 4: "4px",
3518
+ 8: "8px"
3519
+ },
3520
+ ringOpacity: ({ theme: e }) => ({
3521
+ DEFAULT: "0.5",
3522
+ ...e("opacity")
3523
+ }),
3524
+ ringWidth: {
3525
+ DEFAULT: "3px",
3526
+ 0: "0px",
3527
+ 1: "1px",
3528
+ 2: "2px",
3529
+ 4: "4px",
3530
+ 8: "8px"
3531
+ },
3532
+ rotate: {
3533
+ 0: "0deg",
3534
+ 1: "1deg",
3535
+ 2: "2deg",
3536
+ 3: "3deg",
3537
+ 6: "6deg",
3538
+ 12: "12deg",
3539
+ 45: "45deg",
3540
+ 90: "90deg",
3541
+ 180: "180deg"
3542
+ },
3543
+ saturate: {
3544
+ 0: "0",
3545
+ 50: ".5",
3546
+ 100: "1",
3547
+ 150: "1.5",
3548
+ 200: "2"
3549
+ },
3550
+ scale: {
3551
+ 0: "0",
3552
+ 50: ".5",
3553
+ 75: ".75",
3554
+ 90: ".9",
3555
+ 95: ".95",
3556
+ 100: "1",
3557
+ 105: "1.05",
3558
+ 110: "1.1",
3559
+ 125: "1.25",
3560
+ 150: "1.5"
3561
+ },
3562
+ screens: {
3563
+ sm: "640px",
3564
+ md: "768px",
3565
+ lg: "1024px",
3566
+ xl: "1280px",
3567
+ "2xl": "1536px"
3568
+ },
3569
+ scrollMargin: ({ theme: e }) => ({
3570
+ ...e("spacing")
3571
+ }),
3572
+ scrollPadding: ({ theme: e }) => e("spacing"),
3573
+ sepia: {
3574
+ 0: "0",
3575
+ DEFAULT: "100%"
3576
+ },
3577
+ skew: {
3578
+ 0: "0deg",
3579
+ 1: "1deg",
3580
+ 2: "2deg",
3581
+ 3: "3deg",
3582
+ 6: "6deg",
3583
+ 12: "12deg"
3584
+ },
3585
+ space: ({ theme: e }) => ({
3586
+ ...e("spacing")
3587
+ }),
3588
+ spacing: {
3589
+ px: "1px",
3590
+ 0: "0px",
3591
+ 0.5: "0.125rem",
3592
+ 1: "0.25rem",
3593
+ 1.5: "0.375rem",
3594
+ 2: "0.5rem",
3595
+ 2.5: "0.625rem",
3596
+ 3: "0.75rem",
3597
+ 3.5: "0.875rem",
3598
+ 4: "1rem",
3599
+ 5: "1.25rem",
3600
+ 6: "1.5rem",
3601
+ 7: "1.75rem",
3602
+ 8: "2rem",
3603
+ 9: "2.25rem",
3604
+ 10: "2.5rem",
3605
+ 11: "2.75rem",
3606
+ 12: "3rem",
3607
+ 14: "3.5rem",
3608
+ 16: "4rem",
3609
+ 20: "5rem",
3610
+ 24: "6rem",
3611
+ 28: "7rem",
3612
+ 32: "8rem",
3613
+ 36: "9rem",
3614
+ 40: "10rem",
3615
+ 44: "11rem",
3616
+ 48: "12rem",
3617
+ 52: "13rem",
3618
+ 56: "14rem",
3619
+ 60: "15rem",
3620
+ 64: "16rem",
3621
+ 72: "18rem",
3622
+ 80: "20rem",
3623
+ 96: "24rem"
3624
+ },
3625
+ stroke: ({ theme: e }) => ({
3626
+ none: "none",
3627
+ ...e("colors")
3628
+ }),
3629
+ strokeWidth: {
3630
+ 0: "0",
3631
+ 1: "1",
3632
+ 2: "2"
3633
+ },
3634
+ supports: {},
3635
+ data: {},
3636
+ textColor: ({ theme: e }) => e("colors"),
3637
+ textDecorationColor: ({ theme: e }) => e("colors"),
3638
+ textDecorationThickness: {
3639
+ auto: "auto",
3640
+ "from-font": "from-font",
3641
+ 0: "0px",
3642
+ 1: "1px",
3643
+ 2: "2px",
3644
+ 4: "4px",
3645
+ 8: "8px"
3646
+ },
3647
+ textIndent: ({ theme: e }) => ({
3648
+ ...e("spacing")
3649
+ }),
3650
+ textOpacity: ({ theme: e }) => e("opacity"),
3651
+ textUnderlineOffset: {
3652
+ auto: "auto",
3653
+ 0: "0px",
3654
+ 1: "1px",
3655
+ 2: "2px",
3656
+ 4: "4px",
3657
+ 8: "8px"
3658
+ },
3659
+ transformOrigin: {
3660
+ center: "center",
3661
+ top: "top",
3662
+ "top-right": "top right",
3663
+ right: "right",
3664
+ "bottom-right": "bottom right",
3665
+ bottom: "bottom",
3666
+ "bottom-left": "bottom left",
3667
+ left: "left",
3668
+ "top-left": "top left"
3669
+ },
3670
+ transitionDelay: {
3671
+ 0: "0s",
3672
+ 75: "75ms",
3673
+ 100: "100ms",
3674
+ 150: "150ms",
3675
+ 200: "200ms",
3676
+ 300: "300ms",
3677
+ 500: "500ms",
3678
+ 700: "700ms",
3679
+ 1e3: "1000ms"
3680
+ },
3681
+ transitionDuration: {
3682
+ DEFAULT: "150ms",
3683
+ 0: "0s",
3684
+ 75: "75ms",
3685
+ 100: "100ms",
3686
+ 150: "150ms",
3687
+ 200: "200ms",
3688
+ 300: "300ms",
3689
+ 500: "500ms",
3690
+ 700: "700ms",
3691
+ 1e3: "1000ms"
3692
+ },
3693
+ transitionProperty: {
3694
+ none: "none",
3695
+ all: "all",
3696
+ DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
3697
+ colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
3698
+ opacity: "opacity",
3699
+ shadow: "box-shadow",
3700
+ transform: "transform"
3701
+ },
3702
+ transitionTimingFunction: {
3703
+ DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
3704
+ linear: "linear",
3705
+ in: "cubic-bezier(0.4, 0, 1, 1)",
3706
+ out: "cubic-bezier(0, 0, 0.2, 1)",
3707
+ "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
3708
+ },
3709
+ translate: ({ theme: e }) => ({
3710
+ ...e("spacing"),
3711
+ "1/2": "50%",
3712
+ "1/3": "33.333333%",
3713
+ "2/3": "66.666667%",
3714
+ "1/4": "25%",
3715
+ "2/4": "50%",
3716
+ "3/4": "75%",
3717
+ full: "100%"
3718
+ }),
3719
+ width: ({ theme: e }) => ({
3720
+ auto: "auto",
3721
+ ...e("spacing"),
3722
+ "1/2": "50%",
3723
+ "1/3": "33.333333%",
3724
+ "2/3": "66.666667%",
3725
+ "1/4": "25%",
3726
+ "2/4": "50%",
3727
+ "3/4": "75%",
3728
+ "1/5": "20%",
3729
+ "2/5": "40%",
3730
+ "3/5": "60%",
3731
+ "4/5": "80%",
3732
+ "1/6": "16.666667%",
3733
+ "2/6": "33.333333%",
3734
+ "3/6": "50%",
3735
+ "4/6": "66.666667%",
3736
+ "5/6": "83.333333%",
3737
+ "1/12": "8.333333%",
3738
+ "2/12": "16.666667%",
3739
+ "3/12": "25%",
3740
+ "4/12": "33.333333%",
3741
+ "5/12": "41.666667%",
3742
+ "6/12": "50%",
3743
+ "7/12": "58.333333%",
3744
+ "8/12": "66.666667%",
3745
+ "9/12": "75%",
3746
+ "10/12": "83.333333%",
3747
+ "11/12": "91.666667%",
3748
+ full: "100%",
3749
+ screen: "100vw",
3750
+ min: "min-content",
3751
+ max: "max-content",
3752
+ fit: "fit-content"
3753
+ }),
3754
+ willChange: {
3755
+ auto: "auto",
3756
+ scroll: "scroll-position",
3757
+ contents: "contents",
3758
+ transform: "transform"
3759
+ },
3760
+ zIndex: {
3761
+ auto: "auto",
3762
+ 0: "0",
3763
+ 10: "10",
3764
+ 20: "20",
3765
+ 30: "30",
3766
+ 40: "40",
3767
+ 50: "50"
3768
+ }
3769
+ },
3770
+ plugins: []
3771
+ };
3772
+ (function(e) {
3773
+ Object.defineProperty(e, "__esModule", {
3774
+ value: !0
3775
+ }), Object.defineProperty(e, "default", {
3776
+ enumerable: !0,
3777
+ get: function() {
3778
+ return o;
3779
+ }
3780
+ });
3781
+ const i = /* @__PURE__ */ h(Ue), n = H;
3782
+ function h(u) {
3783
+ return u && u.__esModule ? u : {
3784
+ default: u
3785
+ };
3786
+ }
3787
+ function o(u) {
3788
+ var r;
3789
+ const y = ((r = u == null ? void 0 : u.presets) !== null && r !== void 0 ? r : [
3790
+ i.default
3791
+ ]).slice().reverse().flatMap((d) => o(d instanceof Function ? d() : d)), a = {
3792
+ // Add experimental configs here...
3793
+ respectDefaultRingColorOpacity: {
3794
+ theme: {
3795
+ ringColor: ({ theme: d }) => ({
3796
+ DEFAULT: "#3b82f67f",
3797
+ ...d("colors")
3798
+ })
3799
+ }
3800
+ },
3801
+ disableColorOpacityUtilitiesByDefault: {
3802
+ corePlugins: {
3803
+ backgroundOpacity: !1,
3804
+ borderOpacity: !1,
3805
+ divideOpacity: !1,
3806
+ placeholderOpacity: !1,
3807
+ ringOpacity: !1,
3808
+ textOpacity: !1
3809
+ }
3810
+ }
3811
+ }, t = Object.keys(a).filter((d) => (0, n.flagEnabled)(u, d)).map((d) => a[d]);
3812
+ return [
3813
+ u,
3814
+ ...t,
3815
+ ...y
3816
+ ];
3817
+ }
3818
+ })(ve);
3819
+ (function(e) {
3820
+ Object.defineProperty(e, "__esModule", {
3821
+ value: !0
3822
+ }), Object.defineProperty(e, "default", {
3823
+ enumerable: !0,
3824
+ get: function() {
3825
+ return o;
3826
+ }
3827
+ });
3828
+ const i = /* @__PURE__ */ h(ne), n = /* @__PURE__ */ h(ve);
3829
+ function h(u) {
3830
+ return u && u.__esModule ? u : {
3831
+ default: u
3832
+ };
3833
+ }
3834
+ function o(...u) {
3835
+ let [, ...r] = (0, n.default)(u[0]);
3836
+ return (0, i.default)([
3837
+ ...u,
3838
+ ...r
3839
+ ]);
3840
+ }
3841
+ })(re);
3842
+ let q = re;
3843
+ var Re = (q.__esModule ? q : { default: q }).default;
3844
+ const Le = /* @__PURE__ */ Me(Re);
3845
+ let G = K;
3846
+ var R = (G.__esModule ? G : { default: G }).default;
3847
+ const F = {
3848
+ onprimary: R.white,
3849
+ warning: R.amber,
3850
+ error: R.rose,
3851
+ info: R.cyan,
3852
+ success: R.lime,
3853
+ primary: R.sky,
3854
+ brand: {
3855
+ 50: "#FCE3E4",
3856
+ 100: "#F9CDCE",
3857
+ 200: "#F39699",
3858
+ 300: "#ED6368",
3859
+ 400: "#E72C32",
3860
+ 500: "#C4161C",
3861
+ 600: "#9C1216",
3862
+ 700: "#770D11",
3863
+ 800: "#4E090B",
3864
+ 900: "#290506"
3865
+ }
3866
+ }, Be = {
3867
+ prefix: "e-",
3868
+ content: ["./src/**/*.{html,js,vue,ts}"],
3869
+ theme: {
3870
+ extend: {
3871
+ colors: {
3872
+ ...F,
3873
+ // Warning
3874
+ warning: F.warning[500],
3875
+ "warning-darken": F.warning[600],
3876
+ "warning-lighten": F.warning[400],
3877
+ // Success
3878
+ success: F.success[500],
3879
+ "success-darken": F.success[600],
3880
+ "success-lighten": F.success[400],
3881
+ // Error
3882
+ error: F.error[500],
3883
+ "error-darken": F.error[600],
3884
+ "error-lighten": F.error[400],
3885
+ // Info
3886
+ info: F.info[500],
3887
+ "info-darken": F.info[600],
3888
+ "info-lighten": F.info[400],
3889
+ // Primary
3890
+ primary: F.primary[500],
3891
+ "primary-darken": F.primary[600],
3892
+ "primary-lighten": F.primary[400],
3893
+ // Surfaces
3894
+ onsurface: R.slate[500],
3895
+ onbackground: R.slate[700],
3896
+ surface: R.slate[50],
3897
+ background: R.white
3898
+ }
3899
+ },
3900
+ fontSize: {
3901
+ xs: "0.75rem",
3902
+ sm: "0.875rem",
3903
+ base: "1rem",
3904
+ lg: "1.125rem",
3905
+ xl: "1.25rem",
3906
+ "2xl": "1.5rem",
3907
+ "3xl": "1.875rem",
3908
+ "4xl": "2.25rem",
3909
+ "5xl": "3rem",
3910
+ "6xl": "3.75rem",
3911
+ "7xl": "4.5rem",
3912
+ "8xl": "6rem",
3913
+ "9xl": "8rem"
3914
+ }
3915
+ },
3916
+ plugins: []
3917
+ }, xe = Le(Be), _e = xe.theme.fontSize, B = xe.theme.colors;
3918
+ B.warning, B.error, B.info, B.success, B.primary, B.brand[500];
3919
+ Object.keys(_e).reduce((e, i) => [...e, { value: i, label: i.toUpperCase() }], []);
3920
+ const We = {
3921
+ name: "ESpinner",
3922
+ props: {
3923
+ dark: {
3924
+ type: Boolean,
3925
+ default: !1
3926
+ },
3927
+ color: {
3928
+ type: Boolean,
3929
+ default: !0
3930
+ },
3931
+ animationDuration: {
3932
+ type: [Number, String],
3933
+ default: 1e3
3934
+ },
3935
+ size: {
3936
+ type: [String],
3937
+ default: "base"
3938
+ },
3939
+ opacity: {
3940
+ type: [String, Number],
3941
+ default: 1
3942
+ }
3943
+ },
3944
+ data() {
3945
+ return {
3946
+ sizes: _e,
3947
+ colors: B
3948
+ };
3949
+ },
3950
+ computed: {
3951
+ computedSize() {
3952
+ return this.sizes[this.size] || this.size || this.sizes.base;
3953
+ },
3954
+ fill() {
3955
+ let e = {
3956
+ primary: this.colors.brand[500],
3957
+ secondary: this.colors.neutral[300]
3958
+ };
3959
+ return this.dark && !this.color && (e = {
3960
+ primary: this.colors.neutral[100],
3961
+ secondary: this.colors.neutral[100]
3962
+ }), !this.dark && this.color && (e = {
3963
+ primary: this.colors.brand[500],
3964
+ secondary: this.colors.neutral[950]
3965
+ }), !this.dark && !this.color && (e = {
3966
+ primary: this.colors.neutral[200],
3967
+ secondary: this.colors.neutral[200]
3968
+ }), e;
3969
+ }
3970
+ },
3971
+ methods: {
3972
+ getNthPathStyle(e) {
3973
+ return {
3974
+ animationDuration: `${this.animationDuration}ms`,
3975
+ animationDelay: `${e / 10 * this.animationDuration}ms`,
3976
+ fill: `${this.fill[e % 2 === 0 ? "primary" : "secondary"]}`
3977
+ };
3978
+ }
3979
+ }
3980
+ };
3981
+ var Ne = function() {
3982
+ var i = this, n = i._self._c;
3983
+ return n("svg", { staticClass: "e-spinner", class: {
3984
+ "e-spinner--dark": i.dark,
3985
+ "e-spinner--grey": !i.color
3986
+ }, style: { opacity: i.opacity }, attrs: { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1629.32 1608.86", width: i.computedSize, height: i.computedSize } }, [n("path", { staticClass: "e-spinner__primary", style: i.getNthPathStyle(0), attrs: { d: "m1254.12,591.61C992.01,401.11,439.78,0,439.78,0h601.2c14.3,0,48.95,9.02,62.54,38.01,55.27,117.88,111.32,235.46,170.48,351.43,33.16,70.9-8.99,170.35-19.87,202.16" } }), n("path", { staticClass: "e-spinner__secondary", style: i.getNthPathStyle(1), attrs: { d: "m1404.65,131.67c-29.37,89.94-55.8,170.95-82.25,251.93-4.05.87-8.1,1.73-12.15,2.61-40.61-83.95-81.21-167.9-123.12-254.54h217.51Z" } }), n("path", { staticClass: "e-spinner__primary", style: i.getNthPathStyle(2), attrs: { d: "m1129.06,1093.51c100.75-307.98,312.75-956.75,312.75-956.75,0,0,180.36,558.53,184.75,572.14,4.39,13.59,6.45,49.34-16.96,71.19-95.21,88.81-189.88,178.28-282.06,270.2-57.29,53.34-164.86,43.8-198.48,43.21" } }), n("path", { staticClass: "e-spinner__secondary", style: i.getNthPathStyle(3), attrs: { d: "m1342.3,1083.06c66.6-63.43,133.22-126.86,207.93-197.98,21.51,73.55,40.3,137.81,60.64,207.37h-263.35c-1.75-3.13-3.48-6.27-5.22-9.39" } }), n("path", { staticClass: "e-spinner__primary", style: i.getNthPathStyle(4), attrs: { d: "m610.27,1137.17c324.03-.53,1006.55-1.85,1006.55-1.85,0,0-474.19,345.83-485.74,354.25-11.55,8.42-44.87,21.56-72.94,6.14-114.11-62.68-228.69-124.66-344.81-183.5-68.56-37.76-93.12-142.93-103.06-175.04" } }), n("path", { staticClass: "e-spinner__secondary", style: i.getNthPathStyle(5), attrs: { d: "m938.58,1468.29c-62.81,42.58-118.35,80.24-180.28,122.23-28.35-87.22-54.62-168.03-80.89-248.86,2.62-2.92,5.26-5.85,7.9-8.76,81.89,43.78,163.79,87.56,253.26,135.39" } }), n("path", { staticClass: "e-spinner__primary", style: i.getNthPathStyle(6), attrs: { d: "m413.07,652.86c101.35,307.77,314.99,956,314.99,956,0,0-476.23-343.04-487.83-351.39-11.58-8.36-34.44-35.93-28.52-67.4,24.07-127.96,47.3-256.13,67.09-384.8,14.54-76.9,106.84-132.96,134.28-152.42" } }), n("path", { staticClass: "e-spinner__secondary", style: i.getNthPathStyle(7), attrs: { d: "m197.48,1068.8c-62.36-47.73-115.99-88.79-176.78-135.33,75.54-54.91,146.18-106.24,216.83-157.57,3.73,2.24,7.45,4.47,11.19,6.71-16.36,91.3-32.7,182.61-51.25,286.19" } }), n("path", { staticClass: "e-spinner__primary", style: i.getNthPathStyle(8), attrs: { d: "m813.58,314.41C551.63,505.15,0,907.07,0,907.07c0,0,180.68-558.4,185.09-572.01,4.39-13.59,23.65-43.78,55.41-47.8,129.19-16.29,258.32-33.41,386.86-53.99,77.67-9.72,159.3,60.97,186.22,81.13" } }), n("path", { staticClass: "e-spinner__secondary", style: i.getNthPathStyle(9), attrs: { d: "m635.14,199.78c-91.99,12.38-183.97,24.77-288.07,38.76,25.77-73.18,48.3-137.14,73.8-209.53,76.56,55.41,147.27,106.58,217.97,157.75-1.23,4.34-2.46,8.68-3.69,13.02" } })]);
3987
+ }, Ve = [], He = /* @__PURE__ */ N(
3988
+ We,
3989
+ Ne,
3990
+ Ve,
3991
+ !1,
3992
+ null,
3993
+ "ebed8f4a",
3994
+ null,
3995
+ null
3996
+ );
3997
+ const Ie = He.exports, ee = {
3998
+ EAvatar: Ee,
3999
+ EBadge: te,
4000
+ EIcon: Fe,
4001
+ ESpinner: Ie
4002
+ }, qe = {
4003
+ install(e) {
4004
+ Object.keys(ee).forEach((i) => {
4005
+ e.component(i, ee[i]);
4006
+ });
4007
+ }
4008
+ };
4009
+ export {
4010
+ Ee as EAvatar,
4011
+ te as EBadge,
4012
+ Fe as EIcon,
4013
+ Ie as ESpinner,
4014
+ qe as default
4015
+ };