@cnc_cbz/usefultools-plugin-official 1.1.1 → 1.1.2

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,2813 @@
1
+ import { defineComponent, ref, watch, openBlock, createElementBlock, createCommentVNode, createElementVNode, withDirectives, withKeys, vModelText, Fragment, renderList, toDisplayString, vModelSelect, normalizeClass, createTextVNode } from "vue";
2
+ import { fetch } from "@tauri-apps/plugin-http";
3
+ const _hoisted_1 = { class: "flex flex-col h-full gap-4" };
4
+ const _hoisted_2 = { class: "bg-deep-charcoal border-4 border-black rounded-xl p-4 shadow-hard" };
5
+ const _hoisted_3 = { class: "flex items-center gap-3" };
6
+ const _hoisted_4 = ["value"];
7
+ const _hoisted_5 = { class: "material-icons text-lg" };
8
+ const _hoisted_6 = {
9
+ key: 0,
10
+ class: "px-4 py-2 bg-coral-red/20 border-2 border-coral-red rounded flex items-center gap-2 text-coral-red font-bold text-sm"
11
+ };
12
+ const _hoisted_7 = {
13
+ key: 1,
14
+ class: "flex items-center justify-center py-8"
15
+ };
16
+ const _hoisted_8 = {
17
+ key: 2,
18
+ class: "px-4 py-2 bg-coral-red/20 border-2 border-coral-red rounded flex items-center gap-2 text-coral-red font-bold text-sm"
19
+ };
20
+ const _hoisted_9 = {
21
+ key: 3,
22
+ class: "flex-1 flex flex-col gap-4 min-h-0 overflow-auto"
23
+ };
24
+ const _hoisted_10 = { class: "bg-deep-charcoal border-4 border-black rounded-xl p-5 shadow-hard" };
25
+ const _hoisted_11 = { class: "flex items-center justify-between mb-5" };
26
+ const _hoisted_12 = { class: "flex items-center gap-4" };
27
+ const _hoisted_13 = { class: "text-2xl font-bold text-primary" };
28
+ const _hoisted_14 = { class: "text-lg text-gray-400" };
29
+ const _hoisted_15 = { class: "material-icons text-sm" };
30
+ const _hoisted_16 = { class: "grid grid-cols-1 lg:grid-cols-2 gap-3" };
31
+ const _hoisted_17 = { class: "flex items-center gap-2 mb-1.5" };
32
+ const _hoisted_18 = { class: "text-gray-200 text-sm leading-relaxed" };
33
+ const _hoisted_19 = {
34
+ key: 0,
35
+ class: "bg-deep-charcoal border-4 border-black rounded-xl p-5 shadow-hard"
36
+ };
37
+ const _hoisted_20 = { class: "flex flex-wrap gap-2" };
38
+ const _hoisted_21 = ["onClick"];
39
+ const _hoisted_22 = {
40
+ key: 4,
41
+ class: "flex-1 flex flex-col items-center justify-center text-gray-600 gap-3"
42
+ };
43
+ const _sfc_main = /* @__PURE__ */ defineComponent({
44
+ __name: "index",
45
+ setup(__props) {
46
+ const keyword = ref("");
47
+ const tips = ref([]);
48
+ const selectedFpindex = ref("");
49
+ const tipsLoading = ref(false);
50
+ const tipsError = ref("");
51
+ let debounceTimer = null;
52
+ watch(keyword, (val) => {
53
+ if (debounceTimer) clearTimeout(debounceTimer);
54
+ const trimmed = val.trim();
55
+ if (!trimmed) {
56
+ tips.value = [];
57
+ selectedFpindex.value = "";
58
+ tipsError.value = "";
59
+ return;
60
+ }
61
+ tipsLoading.value = true;
62
+ tipsError.value = "";
63
+ debounceTimer = setTimeout(() => searchTips(trimmed), 400);
64
+ });
65
+ async function searchTips(wd) {
66
+ tipsLoading.value = true;
67
+ tipsError.value = "";
68
+ tips.value = [];
69
+ selectedFpindex.value = "";
70
+ try {
71
+ const url = `https://cy.hwxnet.com/searchtips.do?wd=${encodeURIComponent(wd)}&timestamp=${Date.now()}&qt=1`;
72
+ const res = await fetch(url, {
73
+ headers: {
74
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36",
75
+ "Referer": "https://cy.hwxnet.com/",
76
+ "Accept": "application/json, text/javascript, */*; q=0.01",
77
+ "X-Requested-With": "XMLHttpRequest"
78
+ }
79
+ });
80
+ if (!res.ok) throw new Error(`请求失败 (${res.status})`);
81
+ const data = await res.json();
82
+ if (data.found === "true" && Array.isArray(data.tipsList)) {
83
+ tips.value = data.tipsList;
84
+ if (data.tipsList.length) {
85
+ selectedFpindex.value = data.tipsList[0].fpindex;
86
+ fetchDetail(data.tipsList[0]);
87
+ }
88
+ } else {
89
+ tips.value = [];
90
+ tipsError.value = "未找到相关成语";
91
+ }
92
+ } catch (e) {
93
+ tipsError.value = e.message || "搜索失败";
94
+ } finally {
95
+ tipsLoading.value = false;
96
+ }
97
+ }
98
+ function onSelectChange() {
99
+ const tip = tips.value.find((t) => t.fpindex === selectedFpindex.value);
100
+ if (tip) fetchDetail(tip);
101
+ }
102
+ function doSearch() {
103
+ const trimmed = keyword.value.trim();
104
+ if (!trimmed) return;
105
+ searchTips(trimmed);
106
+ }
107
+ const detail = ref(null);
108
+ const detailLoading = ref(false);
109
+ const detailError = ref("");
110
+ async function fetchDetail(tip) {
111
+ detailLoading.value = true;
112
+ detailError.value = "";
113
+ detail.value = null;
114
+ try {
115
+ const url = `https://cy.hwxnet.com/view/${tip.fpindex}.html`;
116
+ const res = await fetch(url, {
117
+ headers: {
118
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36",
119
+ "Referer": "https://cy.hwxnet.com/",
120
+ "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
121
+ }
122
+ });
123
+ if (!res.ok) throw new Error(`请求失败 (${res.status})`);
124
+ const html = await res.text();
125
+ detail.value = parseIdiomHtml(html, tip);
126
+ } catch (e) {
127
+ detailError.value = e.message || "获取详情失败";
128
+ } finally {
129
+ detailLoading.value = false;
130
+ }
131
+ }
132
+ function parseIdiomHtml(html, tip) {
133
+ var _a, _b, _c, _d, _e, _f;
134
+ const parser = new DOMParser();
135
+ const doc = parser.parseFromString(html, "text/html");
136
+ const name = ((_b = (_a = doc.querySelector(".view_title .dullred")) == null ? void 0 : _a.textContent) == null ? void 0 : _b.trim()) || tip.fname;
137
+ const pinyin = ((_d = (_c = doc.querySelector(".view_title .pinyin")) == null ? void 0 : _c.textContent) == null ? void 0 : _d.trim()) || tip.fpinyin;
138
+ const items = [];
139
+ const viewCon = doc.querySelector(".view_con");
140
+ if (viewCon) {
141
+ const dts = viewCon.querySelectorAll("dt.con_dt");
142
+ const dds = viewCon.querySelectorAll("dd.con_dd");
143
+ const len = Math.min(dts.length, dds.length);
144
+ for (let i = 0; i < len; i++) {
145
+ const label = ((_e = dts[i].textContent) == null ? void 0 : _e.replace(/[\[\]]/g, "").trim()) || "";
146
+ const content = ((_f = dds[i].textContent) == null ? void 0 : _f.trim()) || "";
147
+ if (label && content) {
148
+ items.push({ label, content });
149
+ }
150
+ }
151
+ }
152
+ const relatedIdioms = [];
153
+ const relatedLinks = doc.querySelectorAll(".related a.link");
154
+ relatedLinks.forEach((a) => {
155
+ var _a2;
156
+ const text = (_a2 = a.textContent) == null ? void 0 : _a2.trim();
157
+ if (text) relatedIdioms.push(text);
158
+ });
159
+ return { name, pinyin, items, relatedIdioms };
160
+ }
161
+ function searchRelated(idiomName) {
162
+ keyword.value = idiomName;
163
+ }
164
+ const copySuccess = ref(false);
165
+ async function copyText(text) {
166
+ await navigator.clipboard.writeText(text);
167
+ copySuccess.value = true;
168
+ setTimeout(() => {
169
+ copySuccess.value = false;
170
+ }, 1500);
171
+ }
172
+ function labelColor(label) {
173
+ if (label.includes("解释")) return "text-primary";
174
+ if (label.includes("出处") || label.includes("典故")) return "text-vibrant-purple";
175
+ if (label.includes("近义词")) return "text-neon-green";
176
+ if (label.includes("反义词")) return "text-coral-red";
177
+ if (label.includes("举例")) return "text-electric-blue";
178
+ if (label.includes("翻译")) return "text-hot-pink";
179
+ return "text-gray-400";
180
+ }
181
+ function labelBg(label) {
182
+ if (label.includes("解释")) return "bg-primary/10 border-primary/30";
183
+ if (label.includes("出处") || label.includes("典故")) return "bg-vibrant-purple/10 border-vibrant-purple/30";
184
+ if (label.includes("近义词")) return "bg-neon-green/10 border-neon-green/30";
185
+ if (label.includes("反义词")) return "bg-coral-red/10 border-coral-red/30";
186
+ if (label.includes("举例")) return "bg-electric-blue/10 border-electric-blue/30";
187
+ if (label.includes("翻译")) return "bg-hot-pink/10 border-hot-pink/30";
188
+ return "bg-white/5 border-white/10";
189
+ }
190
+ return (_ctx, _cache) => {
191
+ return openBlock(), createElementBlock("div", _hoisted_1, [
192
+ createCommentVNode(" 搜索栏:输入框 + 下拉选 + 搜索按钮 一行 "),
193
+ createElementVNode("div", _hoisted_2, [
194
+ _cache[4] || (_cache[4] = createElementVNode(
195
+ "div",
196
+ { class: "flex items-center gap-2 mb-3" },
197
+ [
198
+ createElementVNode("span", { class: "material-icons text-primary text-lg" }, "menu_book"),
199
+ createElementVNode("span", { class: "text-sm font-bold text-gray-400 uppercase tracking-wider" }, "成语搜索")
200
+ ],
201
+ -1
202
+ /* CACHED */
203
+ )),
204
+ createElementVNode("div", _hoisted_3, [
205
+ withDirectives(createElementVNode(
206
+ "input",
207
+ {
208
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => keyword.value = $event),
209
+ placeholder: "输入成语关键字,如:一心一意、画蛇添足...",
210
+ class: "flex-1 h-10 bg-bg-dark text-gray-100 border-4 border-black rounded-lg px-4 font-mono text-sm shadow-hard focus:border-primary focus:shadow-none focus:translate-x-[4px] focus:translate-y-[4px] transition-all outline-none placeholder-gray-600 min-w-0",
211
+ onKeydown: withKeys(doSearch, ["enter"])
212
+ },
213
+ null,
214
+ 544
215
+ /* NEED_HYDRATION, NEED_PATCH */
216
+ ), [
217
+ [vModelText, keyword.value]
218
+ ]),
219
+ createCommentVNode(" 匹配结果下拉选 "),
220
+ tips.value.length ? withDirectives((openBlock(), createElementBlock(
221
+ "select",
222
+ {
223
+ key: 0,
224
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => selectedFpindex.value = $event),
225
+ class: "h-10 bg-bg-dark text-white border-4 border-black rounded-lg px-3 text-sm font-bold outline-none focus:border-primary shadow-hard focus:shadow-none focus:translate-x-[4px] focus:translate-y-[4px] transition-all max-w-60 min-w-36",
226
+ onChange: onSelectChange
227
+ },
228
+ [
229
+ (openBlock(true), createElementBlock(
230
+ Fragment,
231
+ null,
232
+ renderList(tips.value, (tip) => {
233
+ return openBlock(), createElementBlock("option", {
234
+ key: tip.fpindex,
235
+ value: tip.fpindex
236
+ }, toDisplayString(tip.fname) + "(" + toDisplayString(tip.fpinyin) + ") ", 9, _hoisted_4);
237
+ }),
238
+ 128
239
+ /* KEYED_FRAGMENT */
240
+ ))
241
+ ],
242
+ 544
243
+ /* NEED_HYDRATION, NEED_PATCH */
244
+ )), [
245
+ [vModelSelect, selectedFpindex.value]
246
+ ]) : createCommentVNode("v-if", true),
247
+ createElementVNode(
248
+ "button",
249
+ {
250
+ class: normalizeClass(["h-10 px-5 bg-primary text-black font-bold border-2 border-black rounded shadow-hard-sm hover:shadow-none hover:translate-x-0.5 hover:translate-y-0.5 transition-all flex items-center gap-1.5 text-sm shrink-0", { "opacity-60 pointer-events-none": tipsLoading.value || !keyword.value.trim() }]),
251
+ onClick: doSearch
252
+ },
253
+ [
254
+ createElementVNode(
255
+ "span",
256
+ _hoisted_5,
257
+ toDisplayString(tipsLoading.value ? "hourglass_top" : "search"),
258
+ 1
259
+ /* TEXT */
260
+ ),
261
+ _cache[3] || (_cache[3] = createTextVNode(
262
+ " 搜索 ",
263
+ -1
264
+ /* CACHED */
265
+ ))
266
+ ],
267
+ 2
268
+ /* CLASS */
269
+ )
270
+ ])
271
+ ]),
272
+ createCommentVNode(" 搜索提示错误 "),
273
+ tipsError.value && !tipsLoading.value ? (openBlock(), createElementBlock("div", _hoisted_6, [
274
+ _cache[5] || (_cache[5] = createElementVNode(
275
+ "span",
276
+ { class: "material-icons text-lg" },
277
+ "error_outline",
278
+ -1
279
+ /* CACHED */
280
+ )),
281
+ createTextVNode(
282
+ " " + toDisplayString(tipsError.value),
283
+ 1
284
+ /* TEXT */
285
+ )
286
+ ])) : createCommentVNode("v-if", true),
287
+ createCommentVNode(" 加载中 "),
288
+ detailLoading.value ? (openBlock(), createElementBlock("div", _hoisted_7, [..._cache[6] || (_cache[6] = [
289
+ createElementVNode(
290
+ "span",
291
+ { class: "material-icons text-primary text-2xl animate-spin mr-2" },
292
+ "hourglass_top",
293
+ -1
294
+ /* CACHED */
295
+ ),
296
+ createElementVNode(
297
+ "span",
298
+ { class: "text-gray-400 font-bold" },
299
+ "加载中...",
300
+ -1
301
+ /* CACHED */
302
+ )
303
+ ])])) : createCommentVNode("v-if", true),
304
+ createCommentVNode(" 详情错误 "),
305
+ detailError.value && !detailLoading.value ? (openBlock(), createElementBlock("div", _hoisted_8, [
306
+ _cache[7] || (_cache[7] = createElementVNode(
307
+ "span",
308
+ { class: "material-icons text-lg" },
309
+ "error_outline",
310
+ -1
311
+ /* CACHED */
312
+ )),
313
+ createTextVNode(
314
+ " " + toDisplayString(detailError.value),
315
+ 1
316
+ /* TEXT */
317
+ )
318
+ ])) : createCommentVNode("v-if", true),
319
+ createCommentVNode(" 成语详情 "),
320
+ detail.value && !detailLoading.value ? (openBlock(), createElementBlock("div", _hoisted_9, [
321
+ createCommentVNode(" 标题 + 词典解释 合为一个卡片 "),
322
+ createElementVNode("div", _hoisted_10, [
323
+ createCommentVNode(" 标题行 "),
324
+ createElementVNode("div", _hoisted_11, [
325
+ createElementVNode("div", _hoisted_12, [
326
+ createElementVNode(
327
+ "span",
328
+ _hoisted_13,
329
+ toDisplayString(detail.value.name),
330
+ 1
331
+ /* TEXT */
332
+ ),
333
+ createElementVNode(
334
+ "span",
335
+ _hoisted_14,
336
+ toDisplayString(detail.value.pinyin),
337
+ 1
338
+ /* TEXT */
339
+ )
340
+ ]),
341
+ createElementVNode(
342
+ "button",
343
+ {
344
+ class: normalizeClass(["px-3 py-1.5 font-bold border-2 rounded transition-all text-xs flex items-center gap-1 shrink-0", copySuccess.value ? "text-neon-green border-neon-green/40 bg-neon-green/10" : "text-gray-400 border-white/20 bg-deep-charcoal hover:border-primary hover:text-primary"]),
345
+ onClick: _cache[2] || (_cache[2] = ($event) => copyText(`${detail.value.name}(${detail.value.pinyin})`))
346
+ },
347
+ [
348
+ createElementVNode(
349
+ "span",
350
+ _hoisted_15,
351
+ toDisplayString(copySuccess.value ? "check_circle" : "content_copy"),
352
+ 1
353
+ /* TEXT */
354
+ ),
355
+ createTextVNode(
356
+ " " + toDisplayString(copySuccess.value ? "已复制" : "复制"),
357
+ 1
358
+ /* TEXT */
359
+ )
360
+ ],
361
+ 2
362
+ /* CLASS */
363
+ )
364
+ ]),
365
+ createCommentVNode(" 分隔线 "),
366
+ _cache[8] || (_cache[8] = createElementVNode(
367
+ "div",
368
+ { class: "border-t-2 border-black mb-5" },
369
+ null,
370
+ -1
371
+ /* CACHED */
372
+ )),
373
+ createCommentVNode(" 词典解释 - 两列网格 "),
374
+ createElementVNode("div", _hoisted_16, [
375
+ (openBlock(true), createElementBlock(
376
+ Fragment,
377
+ null,
378
+ renderList(detail.value.items, (item, idx) => {
379
+ return openBlock(), createElementBlock(
380
+ "div",
381
+ {
382
+ key: idx,
383
+ class: normalizeClass(["rounded-lg p-3.5 border transition-colors", labelBg(item.label)])
384
+ },
385
+ [
386
+ createElementVNode("div", _hoisted_17, [
387
+ createElementVNode(
388
+ "span",
389
+ {
390
+ class: normalizeClass(["text-xs font-bold tracking-wider", labelColor(item.label)])
391
+ },
392
+ toDisplayString(item.label),
393
+ 3
394
+ /* TEXT, CLASS */
395
+ )
396
+ ]),
397
+ createElementVNode(
398
+ "div",
399
+ _hoisted_18,
400
+ toDisplayString(item.content),
401
+ 1
402
+ /* TEXT */
403
+ )
404
+ ],
405
+ 2
406
+ /* CLASS */
407
+ );
408
+ }),
409
+ 128
410
+ /* KEYED_FRAGMENT */
411
+ ))
412
+ ])
413
+ ]),
414
+ createCommentVNode(" 相关成语 "),
415
+ detail.value.relatedIdioms.length ? (openBlock(), createElementBlock("div", _hoisted_19, [
416
+ _cache[9] || (_cache[9] = createElementVNode(
417
+ "div",
418
+ { class: "flex items-center gap-2 mb-3" },
419
+ [
420
+ createElementVNode("span", { class: "material-icons text-vibrant-purple text-lg" }, "link"),
421
+ createElementVNode("span", { class: "text-sm font-bold text-gray-400 uppercase tracking-wider" }, "相关成语")
422
+ ],
423
+ -1
424
+ /* CACHED */
425
+ )),
426
+ createElementVNode("div", _hoisted_20, [
427
+ (openBlock(true), createElementBlock(
428
+ Fragment,
429
+ null,
430
+ renderList(detail.value.relatedIdioms, (idiom) => {
431
+ return openBlock(), createElementBlock("button", {
432
+ key: idiom,
433
+ class: "px-3 py-1.5 bg-bg-dark text-gray-300 border border-white/10 rounded-lg text-xs font-bold hover:border-vibrant-purple hover:text-vibrant-purple transition-all cursor-pointer",
434
+ onClick: ($event) => searchRelated(idiom)
435
+ }, toDisplayString(idiom), 9, _hoisted_21);
436
+ }),
437
+ 128
438
+ /* KEYED_FRAGMENT */
439
+ ))
440
+ ])
441
+ ])) : createCommentVNode("v-if", true)
442
+ ])) : createCommentVNode("v-if", true),
443
+ createCommentVNode(" 空状态 "),
444
+ !tips.value.length && !detail.value && !tipsLoading.value && !detailLoading.value && !tipsError.value && !detailError.value ? (openBlock(), createElementBlock("div", _hoisted_22, [..._cache[10] || (_cache[10] = [
445
+ createElementVNode(
446
+ "span",
447
+ { class: "material-icons text-5xl" },
448
+ "menu_book",
449
+ -1
450
+ /* CACHED */
451
+ ),
452
+ createElementVNode(
453
+ "span",
454
+ { class: "text-sm font-bold" },
455
+ "输入关键字搜索成语",
456
+ -1
457
+ /* CACHED */
458
+ ),
459
+ createElementVNode(
460
+ "span",
461
+ { class: "text-xs text-gray-700" },
462
+ "支持模糊搜索,如输入「一心」可查到「一心一意」",
463
+ -1
464
+ /* CACHED */
465
+ )
466
+ ])])) : createCommentVNode("v-if", true)
467
+ ]);
468
+ };
469
+ }
470
+ });
471
+ export {
472
+ _sfc_main as default
473
+ };
474
+
475
+ ;(function(){var c=typeof __exports__!=="undefined"&&__exports__;var d=c&&(c.default||c);if(d)d.__pluginCss=`/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
476
+ @layer properties {
477
+ @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
478
+ *, :before, :after, ::backdrop {
479
+ --tw-translate-x: 0;
480
+ --tw-translate-y: 0;
481
+ --tw-translate-z: 0;
482
+ --tw-rotate-x: initial;
483
+ --tw-rotate-y: initial;
484
+ --tw-rotate-z: initial;
485
+ --tw-skew-x: initial;
486
+ --tw-skew-y: initial;
487
+ --tw-space-y-reverse: 0;
488
+ --tw-border-style: solid;
489
+ --tw-leading: initial;
490
+ --tw-font-weight: initial;
491
+ --tw-tracking: initial;
492
+ --tw-shadow: 0 0 #0000;
493
+ --tw-shadow-color: initial;
494
+ --tw-shadow-alpha: 100%;
495
+ --tw-inset-shadow: 0 0 #0000;
496
+ --tw-inset-shadow-color: initial;
497
+ --tw-inset-shadow-alpha: 100%;
498
+ --tw-ring-color: initial;
499
+ --tw-ring-shadow: 0 0 #0000;
500
+ --tw-inset-ring-color: initial;
501
+ --tw-inset-ring-shadow: 0 0 #0000;
502
+ --tw-ring-inset: initial;
503
+ --tw-ring-offset-width: 0px;
504
+ --tw-ring-offset-color: #fff;
505
+ --tw-ring-offset-shadow: 0 0 #0000;
506
+ --tw-outline-style: solid;
507
+ --tw-duration: initial;
508
+ --tw-scale-x: 1;
509
+ --tw-scale-y: 1;
510
+ --tw-scale-z: 1;
511
+ --tw-blur: initial;
512
+ --tw-brightness: initial;
513
+ --tw-contrast: initial;
514
+ --tw-grayscale: initial;
515
+ --tw-hue-rotate: initial;
516
+ --tw-invert: initial;
517
+ --tw-opacity: initial;
518
+ --tw-saturate: initial;
519
+ --tw-sepia: initial;
520
+ --tw-drop-shadow: initial;
521
+ --tw-drop-shadow-color: initial;
522
+ --tw-drop-shadow-alpha: 100%;
523
+ --tw-drop-shadow-size: initial;
524
+ }
525
+ }
526
+ }
527
+
528
+ @layer theme {
529
+ :root, :host {
530
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
531
+ monospace;
532
+ --color-gray-100: oklch(96.7% .003 264.542);
533
+ --color-gray-200: oklch(92.8% .006 264.531);
534
+ --color-gray-300: oklch(87.2% .01 258.338);
535
+ --color-gray-400: oklch(70.7% .022 261.325);
536
+ --color-gray-500: oklch(55.1% .027 264.364);
537
+ --color-gray-600: oklch(44.6% .03 256.802);
538
+ --color-gray-700: oklch(37.3% .034 259.733);
539
+ --color-black: #000;
540
+ --color-white: #fff;
541
+ --spacing: .25rem;
542
+ --container-lg: 32rem;
543
+ --text-xs: .75rem;
544
+ --text-xs--line-height: calc(1 / .75);
545
+ --text-sm: .875rem;
546
+ --text-sm--line-height: calc(1.25 / .875);
547
+ --text-base: 1rem;
548
+ --text-base--line-height: calc(1.5 / 1);
549
+ --text-lg: 1.125rem;
550
+ --text-lg--line-height: calc(1.75 / 1.125);
551
+ --text-xl: 1.25rem;
552
+ --text-xl--line-height: calc(1.75 / 1.25);
553
+ --text-2xl: 1.5rem;
554
+ --text-2xl--line-height: calc(2 / 1.5);
555
+ --text-3xl: 1.875rem;
556
+ --text-3xl--line-height: calc(2.25 / 1.875);
557
+ --text-5xl: 3rem;
558
+ --text-5xl--line-height: 1;
559
+ --font-weight-bold: 700;
560
+ --font-weight-black: 900;
561
+ --tracking-wider: .05em;
562
+ --tracking-widest: .1em;
563
+ --leading-relaxed: 1.625;
564
+ --radius-sm: .25rem;
565
+ --radius-lg: .5rem;
566
+ --radius-xl: .75rem;
567
+ --animate-spin: spin 1s linear infinite;
568
+ --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
569
+ --default-transition-duration: .15s;
570
+ --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
571
+ --color-primary: #f9b11f;
572
+ --color-bg-dark: #231c0f;
573
+ --color-electric-blue: #3b82f6;
574
+ --color-neon-green: #84cc16;
575
+ --color-vibrant-purple: #a855f7;
576
+ --color-deep-charcoal: #1f1a14;
577
+ --color-coral-red: #ff6b6b;
578
+ --color-hot-pink: #ec4899;
579
+ --font-display: "Space Grotesk", sans-serif;
580
+ }
581
+ }
582
+
583
+ @layer base, components;
584
+
585
+ @layer utilities {
586
+ .pointer-events-none {
587
+ pointer-events: none;
588
+ }
589
+
590
+ .sr-only {
591
+ clip-path: inset(50%);
592
+ white-space: nowrap;
593
+ border-width: 0;
594
+ width: 1px;
595
+ height: 1px;
596
+ margin: -1px;
597
+ padding: 0;
598
+ position: absolute;
599
+ overflow: hidden;
600
+ }
601
+
602
+ .absolute {
603
+ position: absolute;
604
+ }
605
+
606
+ .fixed {
607
+ position: fixed;
608
+ }
609
+
610
+ .relative {
611
+ position: relative;
612
+ }
613
+
614
+ .sticky {
615
+ position: sticky;
616
+ }
617
+
618
+ .inset-0 {
619
+ inset: calc(var(--spacing) * 0);
620
+ }
621
+
622
+ .start {
623
+ inset-inline-start: var(--spacing);
624
+ }
625
+
626
+ .end {
627
+ inset-inline-end: var(--spacing);
628
+ }
629
+
630
+ .top-0 {
631
+ top: calc(var(--spacing) * 0);
632
+ }
633
+
634
+ .top-1\\/2 {
635
+ top: 50%;
636
+ }
637
+
638
+ .right-2 {
639
+ right: calc(var(--spacing) * 2);
640
+ }
641
+
642
+ .left-2 {
643
+ left: calc(var(--spacing) * 2);
644
+ }
645
+
646
+ .z-10 {
647
+ z-index: 10;
648
+ }
649
+
650
+ .z-50 {
651
+ z-index: 50;
652
+ }
653
+
654
+ .col-span-2 {
655
+ grid-column: span 2 / span 2;
656
+ }
657
+
658
+ .container {
659
+ width: 100%;
660
+ }
661
+
662
+ @media (min-width: 40rem) {
663
+ .container {
664
+ max-width: 40rem;
665
+ }
666
+ }
667
+
668
+ @media (min-width: 48rem) {
669
+ .container {
670
+ max-width: 48rem;
671
+ }
672
+ }
673
+
674
+ @media (min-width: 64rem) {
675
+ .container {
676
+ max-width: 64rem;
677
+ }
678
+ }
679
+
680
+ @media (min-width: 80rem) {
681
+ .container {
682
+ max-width: 80rem;
683
+ }
684
+ }
685
+
686
+ @media (min-width: 96rem) {
687
+ .container {
688
+ max-width: 96rem;
689
+ }
690
+ }
691
+
692
+ .-mx-1 {
693
+ margin-inline: calc(var(--spacing) * -1);
694
+ }
695
+
696
+ .mx-0\\.5 {
697
+ margin-inline: calc(var(--spacing) * .5);
698
+ }
699
+
700
+ .mt-0\\.5 {
701
+ margin-top: calc(var(--spacing) * .5);
702
+ }
703
+
704
+ .mt-1 {
705
+ margin-top: calc(var(--spacing) * 1);
706
+ }
707
+
708
+ .mt-2 {
709
+ margin-top: calc(var(--spacing) * 2);
710
+ }
711
+
712
+ .mt-3 {
713
+ margin-top: calc(var(--spacing) * 3);
714
+ }
715
+
716
+ .mt-4 {
717
+ margin-top: calc(var(--spacing) * 4);
718
+ }
719
+
720
+ .mr-1 {
721
+ margin-right: calc(var(--spacing) * 1);
722
+ }
723
+
724
+ .mr-2 {
725
+ margin-right: calc(var(--spacing) * 2);
726
+ }
727
+
728
+ .mr-3 {
729
+ margin-right: calc(var(--spacing) * 3);
730
+ }
731
+
732
+ .mb-1 {
733
+ margin-bottom: calc(var(--spacing) * 1);
734
+ }
735
+
736
+ .mb-1\\.5 {
737
+ margin-bottom: calc(var(--spacing) * 1.5);
738
+ }
739
+
740
+ .mb-2 {
741
+ margin-bottom: calc(var(--spacing) * 2);
742
+ }
743
+
744
+ .mb-3 {
745
+ margin-bottom: calc(var(--spacing) * 3);
746
+ }
747
+
748
+ .mb-5 {
749
+ margin-bottom: calc(var(--spacing) * 5);
750
+ }
751
+
752
+ .ml-0\\.5 {
753
+ margin-left: calc(var(--spacing) * .5);
754
+ }
755
+
756
+ .ml-1 {
757
+ margin-left: calc(var(--spacing) * 1);
758
+ }
759
+
760
+ .ml-1\\.5 {
761
+ margin-left: calc(var(--spacing) * 1.5);
762
+ }
763
+
764
+ .ml-2 {
765
+ margin-left: calc(var(--spacing) * 2);
766
+ }
767
+
768
+ .ml-auto {
769
+ margin-left: auto;
770
+ }
771
+
772
+ .block {
773
+ display: block;
774
+ }
775
+
776
+ .flex {
777
+ display: flex;
778
+ }
779
+
780
+ .grid {
781
+ display: grid;
782
+ }
783
+
784
+ .hidden {
785
+ display: none;
786
+ }
787
+
788
+ .inline {
789
+ display: inline;
790
+ }
791
+
792
+ .inline-block {
793
+ display: inline-block;
794
+ }
795
+
796
+ .inline-flex {
797
+ display: inline-flex;
798
+ }
799
+
800
+ .table {
801
+ display: table;
802
+ }
803
+
804
+ .h-2 {
805
+ height: calc(var(--spacing) * 2);
806
+ }
807
+
808
+ .h-3 {
809
+ height: calc(var(--spacing) * 3);
810
+ }
811
+
812
+ .h-3\\.5 {
813
+ height: calc(var(--spacing) * 3.5);
814
+ }
815
+
816
+ .h-4 {
817
+ height: calc(var(--spacing) * 4);
818
+ }
819
+
820
+ .h-5 {
821
+ height: calc(var(--spacing) * 5);
822
+ }
823
+
824
+ .h-7 {
825
+ height: calc(var(--spacing) * 7);
826
+ }
827
+
828
+ .h-8 {
829
+ height: calc(var(--spacing) * 8);
830
+ }
831
+
832
+ .h-9 {
833
+ height: calc(var(--spacing) * 9);
834
+ }
835
+
836
+ .h-10 {
837
+ height: calc(var(--spacing) * 10);
838
+ }
839
+
840
+ .h-11 {
841
+ height: calc(var(--spacing) * 11);
842
+ }
843
+
844
+ .h-12 {
845
+ height: calc(var(--spacing) * 12);
846
+ }
847
+
848
+ .h-16 {
849
+ height: calc(var(--spacing) * 16);
850
+ }
851
+
852
+ .h-85 {
853
+ height: calc(var(--spacing) * 85);
854
+ }
855
+
856
+ .h-full {
857
+ height: 100%;
858
+ }
859
+
860
+ .max-h-28 {
861
+ max-height: calc(var(--spacing) * 28);
862
+ }
863
+
864
+ .max-h-36 {
865
+ max-height: calc(var(--spacing) * 36);
866
+ }
867
+
868
+ .max-h-40 {
869
+ max-height: calc(var(--spacing) * 40);
870
+ }
871
+
872
+ .max-h-48 {
873
+ max-height: calc(var(--spacing) * 48);
874
+ }
875
+
876
+ .max-h-60 {
877
+ max-height: calc(var(--spacing) * 60);
878
+ }
879
+
880
+ .max-h-\\[200px\\] {
881
+ max-height: 200px;
882
+ }
883
+
884
+ .max-h-\\[420px\\] {
885
+ max-height: 420px;
886
+ }
887
+
888
+ .max-h-full {
889
+ max-height: 100%;
890
+ }
891
+
892
+ .min-h-0 {
893
+ min-height: calc(var(--spacing) * 0);
894
+ }
895
+
896
+ .min-h-\\[80px\\] {
897
+ min-height: 80px;
898
+ }
899
+
900
+ .min-h-\\[180px\\] {
901
+ min-height: 180px;
902
+ }
903
+
904
+ .min-h-\\[200px\\] {
905
+ min-height: 200px;
906
+ }
907
+
908
+ .min-h-\\[260px\\] {
909
+ min-height: 260px;
910
+ }
911
+
912
+ .min-h-\\[320px\\] {
913
+ min-height: 320px;
914
+ }
915
+
916
+ .min-h-full {
917
+ min-height: 100%;
918
+ }
919
+
920
+ .w-1 {
921
+ width: calc(var(--spacing) * 1);
922
+ }
923
+
924
+ .w-1\\.5 {
925
+ width: calc(var(--spacing) * 1.5);
926
+ }
927
+
928
+ .w-2 {
929
+ width: calc(var(--spacing) * 2);
930
+ }
931
+
932
+ .w-3 {
933
+ width: calc(var(--spacing) * 3);
934
+ }
935
+
936
+ .w-3\\.5 {
937
+ width: calc(var(--spacing) * 3.5);
938
+ }
939
+
940
+ .w-4 {
941
+ width: calc(var(--spacing) * 4);
942
+ }
943
+
944
+ .w-5 {
945
+ width: calc(var(--spacing) * 5);
946
+ }
947
+
948
+ .w-7 {
949
+ width: calc(var(--spacing) * 7);
950
+ }
951
+
952
+ .w-8 {
953
+ width: calc(var(--spacing) * 8);
954
+ }
955
+
956
+ .w-9 {
957
+ width: calc(var(--spacing) * 9);
958
+ }
959
+
960
+ .w-10 {
961
+ width: calc(var(--spacing) * 10);
962
+ }
963
+
964
+ .w-14 {
965
+ width: calc(var(--spacing) * 14);
966
+ }
967
+
968
+ .w-16 {
969
+ width: calc(var(--spacing) * 16);
970
+ }
971
+
972
+ .w-20 {
973
+ width: calc(var(--spacing) * 20);
974
+ }
975
+
976
+ .w-24 {
977
+ width: calc(var(--spacing) * 24);
978
+ }
979
+
980
+ .w-28 {
981
+ width: calc(var(--spacing) * 28);
982
+ }
983
+
984
+ .w-32 {
985
+ width: calc(var(--spacing) * 32);
986
+ }
987
+
988
+ .w-56 {
989
+ width: calc(var(--spacing) * 56);
990
+ }
991
+
992
+ .w-72 {
993
+ width: calc(var(--spacing) * 72);
994
+ }
995
+
996
+ .w-full {
997
+ width: 100%;
998
+ }
999
+
1000
+ .max-w-60 {
1001
+ max-width: calc(var(--spacing) * 60);
1002
+ }
1003
+
1004
+ .max-w-70 {
1005
+ max-width: calc(var(--spacing) * 70);
1006
+ }
1007
+
1008
+ .max-w-full {
1009
+ max-width: 100%;
1010
+ }
1011
+
1012
+ .max-w-lg {
1013
+ max-width: var(--container-lg);
1014
+ }
1015
+
1016
+ .min-w-0 {
1017
+ min-width: calc(var(--spacing) * 0);
1018
+ }
1019
+
1020
+ .min-w-36 {
1021
+ min-width: calc(var(--spacing) * 36);
1022
+ }
1023
+
1024
+ .min-w-\\[90px\\] {
1025
+ min-width: 90px;
1026
+ }
1027
+
1028
+ .min-w-\\[200px\\] {
1029
+ min-width: 200px;
1030
+ }
1031
+
1032
+ .flex-1 {
1033
+ flex: 1;
1034
+ }
1035
+
1036
+ .shrink-0 {
1037
+ flex-shrink: 0;
1038
+ }
1039
+
1040
+ .table-fixed {
1041
+ table-layout: fixed;
1042
+ }
1043
+
1044
+ .border-collapse {
1045
+ border-collapse: collapse;
1046
+ }
1047
+
1048
+ .translate-x-0\\.5 {
1049
+ --tw-translate-x: calc(var(--spacing) * .5);
1050
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1051
+ }
1052
+
1053
+ .-translate-y-1\\/2 {
1054
+ --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
1055
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1056
+ }
1057
+
1058
+ .translate-y-0\\.5 {
1059
+ --tw-translate-y: calc(var(--spacing) * .5);
1060
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1061
+ }
1062
+
1063
+ .scale-\\[0\\.98\\] {
1064
+ scale: .98;
1065
+ }
1066
+
1067
+ .transform {
1068
+ transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
1069
+ }
1070
+
1071
+ .animate-pulse {
1072
+ animation: var(--animate-pulse);
1073
+ }
1074
+
1075
+ .animate-spin {
1076
+ animation: var(--animate-spin);
1077
+ }
1078
+
1079
+ .cursor-grab {
1080
+ cursor: grab;
1081
+ }
1082
+
1083
+ .cursor-pointer {
1084
+ cursor: pointer;
1085
+ }
1086
+
1087
+ .touch-none {
1088
+ touch-action: none;
1089
+ }
1090
+
1091
+ .resize {
1092
+ resize: both;
1093
+ }
1094
+
1095
+ .resize-none {
1096
+ resize: none;
1097
+ }
1098
+
1099
+ .resize-y {
1100
+ resize: vertical;
1101
+ }
1102
+
1103
+ .appearance-none {
1104
+ appearance: none;
1105
+ }
1106
+
1107
+ .grid-cols-1 {
1108
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1109
+ }
1110
+
1111
+ .grid-cols-2 {
1112
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1113
+ }
1114
+
1115
+ .grid-cols-4 {
1116
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1117
+ }
1118
+
1119
+ .grid-cols-5 {
1120
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1121
+ }
1122
+
1123
+ .grid-cols-\\[1fr_60px_1fr\\] {
1124
+ grid-template-columns: 1fr 60px 1fr;
1125
+ }
1126
+
1127
+ .flex-col {
1128
+ flex-direction: column;
1129
+ }
1130
+
1131
+ .flex-wrap {
1132
+ flex-wrap: wrap;
1133
+ }
1134
+
1135
+ .items-baseline {
1136
+ align-items: baseline;
1137
+ }
1138
+
1139
+ .items-center {
1140
+ align-items: center;
1141
+ }
1142
+
1143
+ .items-stretch {
1144
+ align-items: stretch;
1145
+ }
1146
+
1147
+ .justify-between {
1148
+ justify-content: space-between;
1149
+ }
1150
+
1151
+ .justify-center {
1152
+ justify-content: center;
1153
+ }
1154
+
1155
+ .justify-end {
1156
+ justify-content: flex-end;
1157
+ }
1158
+
1159
+ .gap-0\\.5 {
1160
+ gap: calc(var(--spacing) * .5);
1161
+ }
1162
+
1163
+ .gap-1 {
1164
+ gap: calc(var(--spacing) * 1);
1165
+ }
1166
+
1167
+ .gap-1\\.5 {
1168
+ gap: calc(var(--spacing) * 1.5);
1169
+ }
1170
+
1171
+ .gap-2 {
1172
+ gap: calc(var(--spacing) * 2);
1173
+ }
1174
+
1175
+ .gap-3 {
1176
+ gap: calc(var(--spacing) * 3);
1177
+ }
1178
+
1179
+ .gap-4 {
1180
+ gap: calc(var(--spacing) * 4);
1181
+ }
1182
+
1183
+ .gap-5 {
1184
+ gap: calc(var(--spacing) * 5);
1185
+ }
1186
+
1187
+ :where(.space-y-0\\.5 > :not(:last-child)) {
1188
+ --tw-space-y-reverse: 0;
1189
+ margin-block-start: calc(calc(var(--spacing) * .5) * var(--tw-space-y-reverse));
1190
+ margin-block-end: calc(calc(var(--spacing) * .5) * calc(1 - var(--tw-space-y-reverse)));
1191
+ }
1192
+
1193
+ :where(.space-y-1 > :not(:last-child)) {
1194
+ --tw-space-y-reverse: 0;
1195
+ margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
1196
+ margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
1197
+ }
1198
+
1199
+ :where(.space-y-1\\.5 > :not(:last-child)) {
1200
+ --tw-space-y-reverse: 0;
1201
+ margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
1202
+ margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
1203
+ }
1204
+
1205
+ :where(.space-y-2 > :not(:last-child)) {
1206
+ --tw-space-y-reverse: 0;
1207
+ margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
1208
+ margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
1209
+ }
1210
+
1211
+ :where(.space-y-4 > :not(:last-child)) {
1212
+ --tw-space-y-reverse: 0;
1213
+ margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
1214
+ margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
1215
+ }
1216
+
1217
+ .gap-x-6 {
1218
+ column-gap: calc(var(--spacing) * 6);
1219
+ }
1220
+
1221
+ .gap-y-1 {
1222
+ row-gap: calc(var(--spacing) * 1);
1223
+ }
1224
+
1225
+ .truncate {
1226
+ text-overflow: ellipsis;
1227
+ white-space: nowrap;
1228
+ overflow: hidden;
1229
+ }
1230
+
1231
+ .overflow-auto {
1232
+ overflow: auto;
1233
+ }
1234
+
1235
+ .overflow-hidden {
1236
+ overflow: hidden;
1237
+ }
1238
+
1239
+ .overflow-x-auto {
1240
+ overflow-x: auto;
1241
+ }
1242
+
1243
+ .overflow-y-auto {
1244
+ overflow-y: auto;
1245
+ }
1246
+
1247
+ .rounded {
1248
+ border-radius: .25rem;
1249
+ }
1250
+
1251
+ .rounded-full {
1252
+ border-radius: 3.40282e38px;
1253
+ }
1254
+
1255
+ .rounded-lg {
1256
+ border-radius: var(--radius-lg);
1257
+ }
1258
+
1259
+ .rounded-sm {
1260
+ border-radius: var(--radius-sm);
1261
+ }
1262
+
1263
+ .rounded-xl {
1264
+ border-radius: var(--radius-xl);
1265
+ }
1266
+
1267
+ .border {
1268
+ border-style: var(--tw-border-style);
1269
+ border-width: 1px;
1270
+ }
1271
+
1272
+ .border-2 {
1273
+ border-style: var(--tw-border-style);
1274
+ border-width: 2px;
1275
+ }
1276
+
1277
+ .border-4 {
1278
+ border-style: var(--tw-border-style);
1279
+ border-width: 4px;
1280
+ }
1281
+
1282
+ .border-t-2 {
1283
+ border-top-style: var(--tw-border-style);
1284
+ border-top-width: 2px;
1285
+ }
1286
+
1287
+ .border-r {
1288
+ border-right-style: var(--tw-border-style);
1289
+ border-right-width: 1px;
1290
+ }
1291
+
1292
+ .border-b {
1293
+ border-bottom-style: var(--tw-border-style);
1294
+ border-bottom-width: 1px;
1295
+ }
1296
+
1297
+ .border-b-2 {
1298
+ border-bottom-style: var(--tw-border-style);
1299
+ border-bottom-width: 2px;
1300
+ }
1301
+
1302
+ .border-l {
1303
+ border-left-style: var(--tw-border-style);
1304
+ border-left-width: 1px;
1305
+ }
1306
+
1307
+ .border-dashed {
1308
+ --tw-border-style: dashed;
1309
+ border-style: dashed;
1310
+ }
1311
+
1312
+ .border-black {
1313
+ border-color: var(--color-black);
1314
+ }
1315
+
1316
+ .border-black\\/30 {
1317
+ border-color: #0000004d;
1318
+ }
1319
+
1320
+ @supports (color: color-mix(in lab, red, red)) {
1321
+ .border-black\\/30 {
1322
+ border-color: color-mix(in oklab, var(--color-black) 30%, transparent);
1323
+ }
1324
+ }
1325
+
1326
+ .border-coral-red {
1327
+ border-color: var(--color-coral-red);
1328
+ }
1329
+
1330
+ .border-coral-red\\/30 {
1331
+ border-color: #ff6b6b4d;
1332
+ }
1333
+
1334
+ @supports (color: color-mix(in lab, red, red)) {
1335
+ .border-coral-red\\/30 {
1336
+ border-color: color-mix(in oklab, var(--color-coral-red) 30%, transparent);
1337
+ }
1338
+ }
1339
+
1340
+ .border-coral-red\\/40 {
1341
+ border-color: #ff6b6b66;
1342
+ }
1343
+
1344
+ @supports (color: color-mix(in lab, red, red)) {
1345
+ .border-coral-red\\/40 {
1346
+ border-color: color-mix(in oklab, var(--color-coral-red) 40%, transparent);
1347
+ }
1348
+ }
1349
+
1350
+ .border-electric-blue\\/30 {
1351
+ border-color: #3b82f64d;
1352
+ }
1353
+
1354
+ @supports (color: color-mix(in lab, red, red)) {
1355
+ .border-electric-blue\\/30 {
1356
+ border-color: color-mix(in oklab, var(--color-electric-blue) 30%, transparent);
1357
+ }
1358
+ }
1359
+
1360
+ .border-electric-blue\\/40 {
1361
+ border-color: #3b82f666;
1362
+ }
1363
+
1364
+ @supports (color: color-mix(in lab, red, red)) {
1365
+ .border-electric-blue\\/40 {
1366
+ border-color: color-mix(in oklab, var(--color-electric-blue) 40%, transparent);
1367
+ }
1368
+ }
1369
+
1370
+ .border-gray-600 {
1371
+ border-color: var(--color-gray-600);
1372
+ }
1373
+
1374
+ .border-gray-700 {
1375
+ border-color: var(--color-gray-700);
1376
+ }
1377
+
1378
+ .border-hot-pink\\/30 {
1379
+ border-color: #ec48994d;
1380
+ }
1381
+
1382
+ @supports (color: color-mix(in lab, red, red)) {
1383
+ .border-hot-pink\\/30 {
1384
+ border-color: color-mix(in oklab, var(--color-hot-pink) 30%, transparent);
1385
+ }
1386
+ }
1387
+
1388
+ .border-neon-green {
1389
+ border-color: var(--color-neon-green);
1390
+ }
1391
+
1392
+ .border-neon-green\\/30 {
1393
+ border-color: #84cc164d;
1394
+ }
1395
+
1396
+ @supports (color: color-mix(in lab, red, red)) {
1397
+ .border-neon-green\\/30 {
1398
+ border-color: color-mix(in oklab, var(--color-neon-green) 30%, transparent);
1399
+ }
1400
+ }
1401
+
1402
+ .border-neon-green\\/40 {
1403
+ border-color: #84cc1666;
1404
+ }
1405
+
1406
+ @supports (color: color-mix(in lab, red, red)) {
1407
+ .border-neon-green\\/40 {
1408
+ border-color: color-mix(in oklab, var(--color-neon-green) 40%, transparent);
1409
+ }
1410
+ }
1411
+
1412
+ .border-primary {
1413
+ border-color: var(--color-primary);
1414
+ }
1415
+
1416
+ .border-primary\\/30 {
1417
+ border-color: #f9b11f4d;
1418
+ }
1419
+
1420
+ @supports (color: color-mix(in lab, red, red)) {
1421
+ .border-primary\\/30 {
1422
+ border-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
1423
+ }
1424
+ }
1425
+
1426
+ .border-primary\\/40 {
1427
+ border-color: #f9b11f66;
1428
+ }
1429
+
1430
+ @supports (color: color-mix(in lab, red, red)) {
1431
+ .border-primary\\/40 {
1432
+ border-color: color-mix(in oklab, var(--color-primary) 40%, transparent);
1433
+ }
1434
+ }
1435
+
1436
+ .border-transparent {
1437
+ border-color: #0000;
1438
+ }
1439
+
1440
+ .border-vibrant-purple\\/30 {
1441
+ border-color: #a855f74d;
1442
+ }
1443
+
1444
+ @supports (color: color-mix(in lab, red, red)) {
1445
+ .border-vibrant-purple\\/30 {
1446
+ border-color: color-mix(in oklab, var(--color-vibrant-purple) 30%, transparent);
1447
+ }
1448
+ }
1449
+
1450
+ .border-white\\/5 {
1451
+ border-color: #ffffff0d;
1452
+ }
1453
+
1454
+ @supports (color: color-mix(in lab, red, red)) {
1455
+ .border-white\\/5 {
1456
+ border-color: color-mix(in oklab, var(--color-white) 5%, transparent);
1457
+ }
1458
+ }
1459
+
1460
+ .border-white\\/10 {
1461
+ border-color: #ffffff1a;
1462
+ }
1463
+
1464
+ @supports (color: color-mix(in lab, red, red)) {
1465
+ .border-white\\/10 {
1466
+ border-color: color-mix(in oklab, var(--color-white) 10%, transparent);
1467
+ }
1468
+ }
1469
+
1470
+ .border-white\\/20 {
1471
+ border-color: #fff3;
1472
+ }
1473
+
1474
+ @supports (color: color-mix(in lab, red, red)) {
1475
+ .border-white\\/20 {
1476
+ border-color: color-mix(in oklab, var(--color-white) 20%, transparent);
1477
+ }
1478
+ }
1479
+
1480
+ .bg-bg-dark {
1481
+ background-color: var(--color-bg-dark);
1482
+ }
1483
+
1484
+ .bg-black\\/60 {
1485
+ background-color: #0009;
1486
+ }
1487
+
1488
+ @supports (color: color-mix(in lab, red, red)) {
1489
+ .bg-black\\/60 {
1490
+ background-color: color-mix(in oklab, var(--color-black) 60%, transparent);
1491
+ }
1492
+ }
1493
+
1494
+ .bg-coral-red {
1495
+ background-color: var(--color-coral-red);
1496
+ }
1497
+
1498
+ .bg-coral-red\\/10 {
1499
+ background-color: #ff6b6b1a;
1500
+ }
1501
+
1502
+ @supports (color: color-mix(in lab, red, red)) {
1503
+ .bg-coral-red\\/10 {
1504
+ background-color: color-mix(in oklab, var(--color-coral-red) 10%, transparent);
1505
+ }
1506
+ }
1507
+
1508
+ .bg-coral-red\\/12 {
1509
+ background-color: #ff6b6b1f;
1510
+ }
1511
+
1512
+ @supports (color: color-mix(in lab, red, red)) {
1513
+ .bg-coral-red\\/12 {
1514
+ background-color: color-mix(in oklab, var(--color-coral-red) 12%, transparent);
1515
+ }
1516
+ }
1517
+
1518
+ .bg-coral-red\\/15 {
1519
+ background-color: #ff6b6b26;
1520
+ }
1521
+
1522
+ @supports (color: color-mix(in lab, red, red)) {
1523
+ .bg-coral-red\\/15 {
1524
+ background-color: color-mix(in oklab, var(--color-coral-red) 15%, transparent);
1525
+ }
1526
+ }
1527
+
1528
+ .bg-coral-red\\/20 {
1529
+ background-color: #ff6b6b33;
1530
+ }
1531
+
1532
+ @supports (color: color-mix(in lab, red, red)) {
1533
+ .bg-coral-red\\/20 {
1534
+ background-color: color-mix(in oklab, var(--color-coral-red) 20%, transparent);
1535
+ }
1536
+ }
1537
+
1538
+ .bg-deep-charcoal {
1539
+ background-color: var(--color-deep-charcoal);
1540
+ }
1541
+
1542
+ .bg-electric-blue {
1543
+ background-color: var(--color-electric-blue);
1544
+ }
1545
+
1546
+ .bg-electric-blue\\/10 {
1547
+ background-color: #3b82f61a;
1548
+ }
1549
+
1550
+ @supports (color: color-mix(in lab, red, red)) {
1551
+ .bg-electric-blue\\/10 {
1552
+ background-color: color-mix(in oklab, var(--color-electric-blue) 10%, transparent);
1553
+ }
1554
+ }
1555
+
1556
+ .bg-electric-blue\\/20 {
1557
+ background-color: #3b82f633;
1558
+ }
1559
+
1560
+ @supports (color: color-mix(in lab, red, red)) {
1561
+ .bg-electric-blue\\/20 {
1562
+ background-color: color-mix(in oklab, var(--color-electric-blue) 20%, transparent);
1563
+ }
1564
+ }
1565
+
1566
+ .bg-hot-pink {
1567
+ background-color: var(--color-hot-pink);
1568
+ }
1569
+
1570
+ .bg-hot-pink\\/10 {
1571
+ background-color: #ec48991a;
1572
+ }
1573
+
1574
+ @supports (color: color-mix(in lab, red, red)) {
1575
+ .bg-hot-pink\\/10 {
1576
+ background-color: color-mix(in oklab, var(--color-hot-pink) 10%, transparent);
1577
+ }
1578
+ }
1579
+
1580
+ .bg-neon-green {
1581
+ background-color: var(--color-neon-green);
1582
+ }
1583
+
1584
+ .bg-neon-green\\/10 {
1585
+ background-color: #84cc161a;
1586
+ }
1587
+
1588
+ @supports (color: color-mix(in lab, red, red)) {
1589
+ .bg-neon-green\\/10 {
1590
+ background-color: color-mix(in oklab, var(--color-neon-green) 10%, transparent);
1591
+ }
1592
+ }
1593
+
1594
+ .bg-neon-green\\/12 {
1595
+ background-color: #84cc161f;
1596
+ }
1597
+
1598
+ @supports (color: color-mix(in lab, red, red)) {
1599
+ .bg-neon-green\\/12 {
1600
+ background-color: color-mix(in oklab, var(--color-neon-green) 12%, transparent);
1601
+ }
1602
+ }
1603
+
1604
+ .bg-neon-green\\/20 {
1605
+ background-color: #84cc1633;
1606
+ }
1607
+
1608
+ @supports (color: color-mix(in lab, red, red)) {
1609
+ .bg-neon-green\\/20 {
1610
+ background-color: color-mix(in oklab, var(--color-neon-green) 20%, transparent);
1611
+ }
1612
+ }
1613
+
1614
+ .bg-primary {
1615
+ background-color: var(--color-primary);
1616
+ }
1617
+
1618
+ .bg-primary\\/10 {
1619
+ background-color: #f9b11f1a;
1620
+ }
1621
+
1622
+ @supports (color: color-mix(in lab, red, red)) {
1623
+ .bg-primary\\/10 {
1624
+ background-color: color-mix(in oklab, var(--color-primary) 10%, transparent);
1625
+ }
1626
+ }
1627
+
1628
+ .bg-primary\\/15 {
1629
+ background-color: #f9b11f26;
1630
+ }
1631
+
1632
+ @supports (color: color-mix(in lab, red, red)) {
1633
+ .bg-primary\\/15 {
1634
+ background-color: color-mix(in oklab, var(--color-primary) 15%, transparent);
1635
+ }
1636
+ }
1637
+
1638
+ .bg-primary\\/20 {
1639
+ background-color: #f9b11f33;
1640
+ }
1641
+
1642
+ @supports (color: color-mix(in lab, red, red)) {
1643
+ .bg-primary\\/20 {
1644
+ background-color: color-mix(in oklab, var(--color-primary) 20%, transparent);
1645
+ }
1646
+ }
1647
+
1648
+ .bg-primary\\/30 {
1649
+ background-color: #f9b11f4d;
1650
+ }
1651
+
1652
+ @supports (color: color-mix(in lab, red, red)) {
1653
+ .bg-primary\\/30 {
1654
+ background-color: color-mix(in oklab, var(--color-primary) 30%, transparent);
1655
+ }
1656
+ }
1657
+
1658
+ .bg-transparent {
1659
+ background-color: #0000;
1660
+ }
1661
+
1662
+ .bg-vibrant-purple {
1663
+ background-color: var(--color-vibrant-purple);
1664
+ }
1665
+
1666
+ .bg-vibrant-purple\\/10 {
1667
+ background-color: #a855f71a;
1668
+ }
1669
+
1670
+ @supports (color: color-mix(in lab, red, red)) {
1671
+ .bg-vibrant-purple\\/10 {
1672
+ background-color: color-mix(in oklab, var(--color-vibrant-purple) 10%, transparent);
1673
+ }
1674
+ }
1675
+
1676
+ .bg-white {
1677
+ background-color: var(--color-white);
1678
+ }
1679
+
1680
+ .bg-white\\/5 {
1681
+ background-color: #ffffff0d;
1682
+ }
1683
+
1684
+ @supports (color: color-mix(in lab, red, red)) {
1685
+ .bg-white\\/5 {
1686
+ background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
1687
+ }
1688
+ }
1689
+
1690
+ .bg-white\\/10 {
1691
+ background-color: #ffffff1a;
1692
+ }
1693
+
1694
+ @supports (color: color-mix(in lab, red, red)) {
1695
+ .bg-white\\/10 {
1696
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
1697
+ }
1698
+ }
1699
+
1700
+ .bg-white\\/\\[0\\.02\\] {
1701
+ background-color: #ffffff05;
1702
+ }
1703
+
1704
+ @supports (color: color-mix(in lab, red, red)) {
1705
+ .bg-white\\/\\[0\\.02\\] {
1706
+ background-color: color-mix(in oklab, var(--color-white) 2%, transparent);
1707
+ }
1708
+ }
1709
+
1710
+ .bg-white\\/\\[0\\.03\\] {
1711
+ background-color: #ffffff08;
1712
+ }
1713
+
1714
+ @supports (color: color-mix(in lab, red, red)) {
1715
+ .bg-white\\/\\[0\\.03\\] {
1716
+ background-color: color-mix(in oklab, var(--color-white) 3%, transparent);
1717
+ }
1718
+ }
1719
+
1720
+ .bg-\\[url\\(\\'data\\:image\\/svg\\+xml\\;charset\\=utf-8\\,\\%3Csvg\\%20xmlns\\%3D\\%22http\\%3A\\%2F\\%2Fwww\\.w3\\.org\\%2F2000\\%2Fsvg\\%22\\%20width\\%3D\\%2212\\%22\\%20height\\%3D\\%2212\\%22\\%20viewBox\\%3D\\%220\\%200\\%2024\\%2024\\%22\\%20fill\\%3D\\%22\\%23999\\%22\\%3E\\%3Cpath\\%20d\\%3D\\%22M7\\%2010l5\\%205\\%205-5z\\%22\\%2F\\%3E\\%3C\\%2Fsvg\\%3E\\'\\)\\] {
1721
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23999%22%3E%3Cpath%20d%3D%22M7%2010l5%205%205-5z%22%2F%3E%3C%2Fsvg%3E");
1722
+ }
1723
+
1724
+ .bg-\\[right_4px_center\\] {
1725
+ background-position: right 4px center;
1726
+ }
1727
+
1728
+ .bg-no-repeat {
1729
+ background-repeat: no-repeat;
1730
+ }
1731
+
1732
+ .object-contain {
1733
+ object-fit: contain;
1734
+ }
1735
+
1736
+ .p-1\\.5 {
1737
+ padding: calc(var(--spacing) * 1.5);
1738
+ }
1739
+
1740
+ .p-2 {
1741
+ padding: calc(var(--spacing) * 2);
1742
+ }
1743
+
1744
+ .p-2\\.5 {
1745
+ padding: calc(var(--spacing) * 2.5);
1746
+ }
1747
+
1748
+ .p-3 {
1749
+ padding: calc(var(--spacing) * 3);
1750
+ }
1751
+
1752
+ .p-3\\.5 {
1753
+ padding: calc(var(--spacing) * 3.5);
1754
+ }
1755
+
1756
+ .p-4 {
1757
+ padding: calc(var(--spacing) * 4);
1758
+ }
1759
+
1760
+ .p-5 {
1761
+ padding: calc(var(--spacing) * 5);
1762
+ }
1763
+
1764
+ .p-6 {
1765
+ padding: calc(var(--spacing) * 6);
1766
+ }
1767
+
1768
+ .px-1 {
1769
+ padding-inline: calc(var(--spacing) * 1);
1770
+ }
1771
+
1772
+ .px-1\\.5 {
1773
+ padding-inline: calc(var(--spacing) * 1.5);
1774
+ }
1775
+
1776
+ .px-2 {
1777
+ padding-inline: calc(var(--spacing) * 2);
1778
+ }
1779
+
1780
+ .px-2\\.5 {
1781
+ padding-inline: calc(var(--spacing) * 2.5);
1782
+ }
1783
+
1784
+ .px-3 {
1785
+ padding-inline: calc(var(--spacing) * 3);
1786
+ }
1787
+
1788
+ .px-4 {
1789
+ padding-inline: calc(var(--spacing) * 4);
1790
+ }
1791
+
1792
+ .px-5 {
1793
+ padding-inline: calc(var(--spacing) * 5);
1794
+ }
1795
+
1796
+ .py-0\\.5 {
1797
+ padding-block: calc(var(--spacing) * .5);
1798
+ }
1799
+
1800
+ .py-1 {
1801
+ padding-block: calc(var(--spacing) * 1);
1802
+ }
1803
+
1804
+ .py-1\\.5 {
1805
+ padding-block: calc(var(--spacing) * 1.5);
1806
+ }
1807
+
1808
+ .py-2 {
1809
+ padding-block: calc(var(--spacing) * 2);
1810
+ }
1811
+
1812
+ .py-2\\.5 {
1813
+ padding-block: calc(var(--spacing) * 2.5);
1814
+ }
1815
+
1816
+ .py-3 {
1817
+ padding-block: calc(var(--spacing) * 3);
1818
+ }
1819
+
1820
+ .py-4 {
1821
+ padding-block: calc(var(--spacing) * 4);
1822
+ }
1823
+
1824
+ .py-6 {
1825
+ padding-block: calc(var(--spacing) * 6);
1826
+ }
1827
+
1828
+ .py-8 {
1829
+ padding-block: calc(var(--spacing) * 8);
1830
+ }
1831
+
1832
+ .pt-3 {
1833
+ padding-top: calc(var(--spacing) * 3);
1834
+ }
1835
+
1836
+ .pr-1 {
1837
+ padding-right: calc(var(--spacing) * 1);
1838
+ }
1839
+
1840
+ .pr-1\\.5 {
1841
+ padding-right: calc(var(--spacing) * 1.5);
1842
+ }
1843
+
1844
+ .pr-2 {
1845
+ padding-right: calc(var(--spacing) * 2);
1846
+ }
1847
+
1848
+ .pr-4 {
1849
+ padding-right: calc(var(--spacing) * 4);
1850
+ }
1851
+
1852
+ .pr-6 {
1853
+ padding-right: calc(var(--spacing) * 6);
1854
+ }
1855
+
1856
+ .pr-11 {
1857
+ padding-right: calc(var(--spacing) * 11);
1858
+ }
1859
+
1860
+ .pb-1 {
1861
+ padding-bottom: calc(var(--spacing) * 1);
1862
+ }
1863
+
1864
+ .pb-2 {
1865
+ padding-bottom: calc(var(--spacing) * 2);
1866
+ }
1867
+
1868
+ .pl-1\\.5 {
1869
+ padding-left: calc(var(--spacing) * 1.5);
1870
+ }
1871
+
1872
+ .pl-2 {
1873
+ padding-left: calc(var(--spacing) * 2);
1874
+ }
1875
+
1876
+ .pl-4 {
1877
+ padding-left: calc(var(--spacing) * 4);
1878
+ }
1879
+
1880
+ .pl-8 {
1881
+ padding-left: calc(var(--spacing) * 8);
1882
+ }
1883
+
1884
+ .pl-\\[22px\\] {
1885
+ padding-left: 22px;
1886
+ }
1887
+
1888
+ .pl-\\[98px\\] {
1889
+ padding-left: 98px;
1890
+ }
1891
+
1892
+ .text-center {
1893
+ text-align: center;
1894
+ }
1895
+
1896
+ .text-left {
1897
+ text-align: left;
1898
+ }
1899
+
1900
+ .text-right {
1901
+ text-align: right;
1902
+ }
1903
+
1904
+ .align-middle {
1905
+ vertical-align: middle;
1906
+ }
1907
+
1908
+ .align-top {
1909
+ vertical-align: top;
1910
+ }
1911
+
1912
+ .font-mono {
1913
+ font-family: var(--font-mono);
1914
+ }
1915
+
1916
+ .text-2xl {
1917
+ font-size: var(--text-2xl);
1918
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
1919
+ }
1920
+
1921
+ .text-3xl {
1922
+ font-size: var(--text-3xl);
1923
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
1924
+ }
1925
+
1926
+ .text-5xl {
1927
+ font-size: var(--text-5xl);
1928
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
1929
+ }
1930
+
1931
+ .text-base {
1932
+ font-size: var(--text-base);
1933
+ line-height: var(--tw-leading, var(--text-base--line-height));
1934
+ }
1935
+
1936
+ .text-lg {
1937
+ font-size: var(--text-lg);
1938
+ line-height: var(--tw-leading, var(--text-lg--line-height));
1939
+ }
1940
+
1941
+ .text-sm {
1942
+ font-size: var(--text-sm);
1943
+ line-height: var(--tw-leading, var(--text-sm--line-height));
1944
+ }
1945
+
1946
+ .text-xl {
1947
+ font-size: var(--text-xl);
1948
+ line-height: var(--tw-leading, var(--text-xl--line-height));
1949
+ }
1950
+
1951
+ .text-xs {
1952
+ font-size: var(--text-xs);
1953
+ line-height: var(--tw-leading, var(--text-xs--line-height));
1954
+ }
1955
+
1956
+ .text-\\[9px\\] {
1957
+ font-size: 9px;
1958
+ }
1959
+
1960
+ .text-\\[10px\\] {
1961
+ font-size: 10px;
1962
+ }
1963
+
1964
+ .text-\\[11px\\] {
1965
+ font-size: 11px;
1966
+ }
1967
+
1968
+ .leading-6 {
1969
+ --tw-leading: calc(var(--spacing) * 6);
1970
+ line-height: calc(var(--spacing) * 6);
1971
+ }
1972
+
1973
+ .leading-7 {
1974
+ --tw-leading: calc(var(--spacing) * 7);
1975
+ line-height: calc(var(--spacing) * 7);
1976
+ }
1977
+
1978
+ .leading-none {
1979
+ --tw-leading: 1;
1980
+ line-height: 1;
1981
+ }
1982
+
1983
+ .leading-relaxed {
1984
+ --tw-leading: var(--leading-relaxed);
1985
+ line-height: var(--leading-relaxed);
1986
+ }
1987
+
1988
+ .font-black {
1989
+ --tw-font-weight: var(--font-weight-black);
1990
+ font-weight: var(--font-weight-black);
1991
+ }
1992
+
1993
+ .font-bold {
1994
+ --tw-font-weight: var(--font-weight-bold);
1995
+ font-weight: var(--font-weight-bold);
1996
+ }
1997
+
1998
+ .tracking-wider {
1999
+ --tw-tracking: var(--tracking-wider);
2000
+ letter-spacing: var(--tracking-wider);
2001
+ }
2002
+
2003
+ .tracking-widest {
2004
+ --tw-tracking: var(--tracking-widest);
2005
+ letter-spacing: var(--tracking-widest);
2006
+ }
2007
+
2008
+ .\\[overflow-wrap\\:anywhere\\] {
2009
+ overflow-wrap: anywhere;
2010
+ }
2011
+
2012
+ .break-all {
2013
+ word-break: break-all;
2014
+ }
2015
+
2016
+ .whitespace-nowrap {
2017
+ white-space: nowrap;
2018
+ }
2019
+
2020
+ .whitespace-pre {
2021
+ white-space: pre;
2022
+ }
2023
+
2024
+ .whitespace-pre-wrap {
2025
+ white-space: pre-wrap;
2026
+ }
2027
+
2028
+ .text-black {
2029
+ color: var(--color-black);
2030
+ }
2031
+
2032
+ .text-coral-red {
2033
+ color: var(--color-coral-red);
2034
+ }
2035
+
2036
+ .text-coral-red\\/40 {
2037
+ color: #ff6b6b66;
2038
+ }
2039
+
2040
+ @supports (color: color-mix(in lab, red, red)) {
2041
+ .text-coral-red\\/40 {
2042
+ color: color-mix(in oklab, var(--color-coral-red) 40%, transparent);
2043
+ }
2044
+ }
2045
+
2046
+ .text-coral-red\\/70 {
2047
+ color: #ff6b6bb3;
2048
+ }
2049
+
2050
+ @supports (color: color-mix(in lab, red, red)) {
2051
+ .text-coral-red\\/70 {
2052
+ color: color-mix(in oklab, var(--color-coral-red) 70%, transparent);
2053
+ }
2054
+ }
2055
+
2056
+ .text-coral-red\\/90 {
2057
+ color: #ff6b6be6;
2058
+ }
2059
+
2060
+ @supports (color: color-mix(in lab, red, red)) {
2061
+ .text-coral-red\\/90 {
2062
+ color: color-mix(in oklab, var(--color-coral-red) 90%, transparent);
2063
+ }
2064
+ }
2065
+
2066
+ .text-electric-blue {
2067
+ color: var(--color-electric-blue);
2068
+ }
2069
+
2070
+ .text-gray-100 {
2071
+ color: var(--color-gray-100);
2072
+ }
2073
+
2074
+ .text-gray-200 {
2075
+ color: var(--color-gray-200);
2076
+ }
2077
+
2078
+ .text-gray-300 {
2079
+ color: var(--color-gray-300);
2080
+ }
2081
+
2082
+ .text-gray-400 {
2083
+ color: var(--color-gray-400);
2084
+ }
2085
+
2086
+ .text-gray-500 {
2087
+ color: var(--color-gray-500);
2088
+ }
2089
+
2090
+ .text-gray-600 {
2091
+ color: var(--color-gray-600);
2092
+ }
2093
+
2094
+ .text-gray-700 {
2095
+ color: var(--color-gray-700);
2096
+ }
2097
+
2098
+ .text-hot-pink {
2099
+ color: var(--color-hot-pink);
2100
+ }
2101
+
2102
+ .text-neon-green {
2103
+ color: var(--color-neon-green);
2104
+ }
2105
+
2106
+ .text-neon-green\\/40 {
2107
+ color: #84cc1666;
2108
+ }
2109
+
2110
+ @supports (color: color-mix(in lab, red, red)) {
2111
+ .text-neon-green\\/40 {
2112
+ color: color-mix(in oklab, var(--color-neon-green) 40%, transparent);
2113
+ }
2114
+ }
2115
+
2116
+ .text-neon-green\\/70 {
2117
+ color: #84cc16b3;
2118
+ }
2119
+
2120
+ @supports (color: color-mix(in lab, red, red)) {
2121
+ .text-neon-green\\/70 {
2122
+ color: color-mix(in oklab, var(--color-neon-green) 70%, transparent);
2123
+ }
2124
+ }
2125
+
2126
+ .text-neon-green\\/90 {
2127
+ color: #84cc16e6;
2128
+ }
2129
+
2130
+ @supports (color: color-mix(in lab, red, red)) {
2131
+ .text-neon-green\\/90 {
2132
+ color: color-mix(in oklab, var(--color-neon-green) 90%, transparent);
2133
+ }
2134
+ }
2135
+
2136
+ .text-primary {
2137
+ color: var(--color-primary);
2138
+ }
2139
+
2140
+ .text-primary\\/70 {
2141
+ color: #f9b11fb3;
2142
+ }
2143
+
2144
+ @supports (color: color-mix(in lab, red, red)) {
2145
+ .text-primary\\/70 {
2146
+ color: color-mix(in oklab, var(--color-primary) 70%, transparent);
2147
+ }
2148
+ }
2149
+
2150
+ .text-primary\\/80 {
2151
+ color: #f9b11fcc;
2152
+ }
2153
+
2154
+ @supports (color: color-mix(in lab, red, red)) {
2155
+ .text-primary\\/80 {
2156
+ color: color-mix(in oklab, var(--color-primary) 80%, transparent);
2157
+ }
2158
+ }
2159
+
2160
+ .text-transparent {
2161
+ color: #0000;
2162
+ }
2163
+
2164
+ .text-vibrant-purple {
2165
+ color: var(--color-vibrant-purple);
2166
+ }
2167
+
2168
+ .text-white {
2169
+ color: var(--color-white);
2170
+ }
2171
+
2172
+ .uppercase {
2173
+ text-transform: uppercase;
2174
+ }
2175
+
2176
+ .italic {
2177
+ font-style: italic;
2178
+ }
2179
+
2180
+ .placeholder-gray-600::placeholder {
2181
+ color: var(--color-gray-600);
2182
+ }
2183
+
2184
+ .accent-electric-blue {
2185
+ accent-color: var(--color-electric-blue);
2186
+ }
2187
+
2188
+ .accent-primary {
2189
+ accent-color: var(--color-primary);
2190
+ }
2191
+
2192
+ .opacity-0 {
2193
+ opacity: 0;
2194
+ }
2195
+
2196
+ .opacity-40 {
2197
+ opacity: .4;
2198
+ }
2199
+
2200
+ .opacity-60 {
2201
+ opacity: .6;
2202
+ }
2203
+
2204
+ .opacity-70 {
2205
+ opacity: .7;
2206
+ }
2207
+
2208
+ .opacity-100 {
2209
+ opacity: 1;
2210
+ }
2211
+
2212
+ .shadow-hard {
2213
+ --tw-shadow: 4px 4px 0 0 var(--tw-shadow-color, #000);
2214
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2215
+ }
2216
+
2217
+ .shadow-hard-sm {
2218
+ --tw-shadow: 2px 2px 0 0 var(--tw-shadow-color, #000);
2219
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2220
+ }
2221
+
2222
+ .shadow-hard-xl {
2223
+ --tw-shadow: 8px 8px 0 0 var(--tw-shadow-color, #000);
2224
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2225
+ }
2226
+
2227
+ .shadow-none {
2228
+ --tw-shadow: 0 0 #0000;
2229
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2230
+ }
2231
+
2232
+ .ring {
2233
+ --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
2234
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2235
+ }
2236
+
2237
+ .outline {
2238
+ outline-style: var(--tw-outline-style);
2239
+ outline-width: 1px;
2240
+ }
2241
+
2242
+ .transition {
2243
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
2244
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2245
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2246
+ }
2247
+
2248
+ .transition-all {
2249
+ transition-property: all;
2250
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2251
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2252
+ }
2253
+
2254
+ .transition-colors {
2255
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
2256
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2257
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2258
+ }
2259
+
2260
+ .transition-opacity {
2261
+ transition-property: opacity;
2262
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2263
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2264
+ }
2265
+
2266
+ .transition-transform {
2267
+ transition-property: transform, translate, scale, rotate;
2268
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2269
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2270
+ }
2271
+
2272
+ .duration-300 {
2273
+ --tw-duration: .3s;
2274
+ transition-duration: .3s;
2275
+ }
2276
+
2277
+ .outline-none {
2278
+ --tw-outline-style: none;
2279
+ outline-style: none;
2280
+ }
2281
+
2282
+ .select-all {
2283
+ -webkit-user-select: all;
2284
+ user-select: all;
2285
+ }
2286
+
2287
+ .select-none {
2288
+ -webkit-user-select: none;
2289
+ user-select: none;
2290
+ }
2291
+
2292
+ @media (hover: hover) {
2293
+ .group-hover\\:text-primary:is(:where(.group):hover *) {
2294
+ color: var(--color-primary);
2295
+ }
2296
+
2297
+ .group-hover\\:opacity-100:is(:where(.group):hover *) {
2298
+ opacity: 1;
2299
+ }
2300
+ }
2301
+
2302
+ .peer-checked\\:border-primary:is(:where(.peer):checked ~ *) {
2303
+ border-color: var(--color-primary);
2304
+ }
2305
+
2306
+ .peer-checked\\:bg-primary:is(:where(.peer):checked ~ *) {
2307
+ background-color: var(--color-primary);
2308
+ }
2309
+
2310
+ .peer-checked\\:text-black:is(:where(.peer):checked ~ *) {
2311
+ color: var(--color-black);
2312
+ }
2313
+
2314
+ .last\\:border-b-0:last-child {
2315
+ border-bottom-style: var(--tw-border-style);
2316
+ border-bottom-width: 0;
2317
+ }
2318
+
2319
+ @media (hover: hover) {
2320
+ .hover\\:translate-x-0\\.5:hover {
2321
+ --tw-translate-x: calc(var(--spacing) * .5);
2322
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2323
+ }
2324
+
2325
+ .hover\\:translate-x-\\[2px\\]:hover {
2326
+ --tw-translate-x: 2px;
2327
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2328
+ }
2329
+
2330
+ .hover\\:translate-y-0\\.5:hover {
2331
+ --tw-translate-y: calc(var(--spacing) * .5);
2332
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2333
+ }
2334
+
2335
+ .hover\\:translate-y-\\[2px\\]:hover {
2336
+ --tw-translate-y: 2px;
2337
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2338
+ }
2339
+
2340
+ .hover\\:scale-110:hover {
2341
+ --tw-scale-x: 110%;
2342
+ --tw-scale-y: 110%;
2343
+ --tw-scale-z: 110%;
2344
+ scale: var(--tw-scale-x) var(--tw-scale-y);
2345
+ }
2346
+
2347
+ .hover\\:border-coral-red:hover {
2348
+ border-color: var(--color-coral-red);
2349
+ }
2350
+
2351
+ .hover\\:border-gray-600:hover {
2352
+ border-color: var(--color-gray-600);
2353
+ }
2354
+
2355
+ .hover\\:border-neon-green:hover {
2356
+ border-color: var(--color-neon-green);
2357
+ }
2358
+
2359
+ .hover\\:border-primary:hover {
2360
+ border-color: var(--color-primary);
2361
+ }
2362
+
2363
+ .hover\\:border-primary\\/50:hover {
2364
+ border-color: #f9b11f80;
2365
+ }
2366
+
2367
+ @supports (color: color-mix(in lab, red, red)) {
2368
+ .hover\\:border-primary\\/50:hover {
2369
+ border-color: color-mix(in oklab, var(--color-primary) 50%, transparent);
2370
+ }
2371
+ }
2372
+
2373
+ .hover\\:border-vibrant-purple:hover {
2374
+ border-color: var(--color-vibrant-purple);
2375
+ }
2376
+
2377
+ .hover\\:border-white:hover {
2378
+ border-color: var(--color-white);
2379
+ }
2380
+
2381
+ .hover\\:bg-primary\\/5:hover {
2382
+ background-color: #f9b11f0d;
2383
+ }
2384
+
2385
+ @supports (color: color-mix(in lab, red, red)) {
2386
+ .hover\\:bg-primary\\/5:hover {
2387
+ background-color: color-mix(in oklab, var(--color-primary) 5%, transparent);
2388
+ }
2389
+ }
2390
+
2391
+ .hover\\:bg-white\\/5:hover {
2392
+ background-color: #ffffff0d;
2393
+ }
2394
+
2395
+ @supports (color: color-mix(in lab, red, red)) {
2396
+ .hover\\:bg-white\\/5:hover {
2397
+ background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
2398
+ }
2399
+ }
2400
+
2401
+ .hover\\:bg-white\\/10:hover {
2402
+ background-color: #ffffff1a;
2403
+ }
2404
+
2405
+ @supports (color: color-mix(in lab, red, red)) {
2406
+ .hover\\:bg-white\\/10:hover {
2407
+ background-color: color-mix(in oklab, var(--color-white) 10%, transparent);
2408
+ }
2409
+ }
2410
+
2411
+ .hover\\:text-coral-red:hover {
2412
+ color: var(--color-coral-red);
2413
+ }
2414
+
2415
+ .hover\\:text-gray-200:hover {
2416
+ color: var(--color-gray-200);
2417
+ }
2418
+
2419
+ .hover\\:text-gray-300:hover {
2420
+ color: var(--color-gray-300);
2421
+ }
2422
+
2423
+ .hover\\:text-neon-green:hover {
2424
+ color: var(--color-neon-green);
2425
+ }
2426
+
2427
+ .hover\\:text-primary:hover {
2428
+ color: var(--color-primary);
2429
+ }
2430
+
2431
+ .hover\\:text-vibrant-purple:hover {
2432
+ color: var(--color-vibrant-purple);
2433
+ }
2434
+
2435
+ .hover\\:text-white:hover {
2436
+ color: var(--color-white);
2437
+ }
2438
+
2439
+ .hover\\:shadow-none:hover {
2440
+ --tw-shadow: 0 0 #0000;
2441
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2442
+ }
2443
+
2444
+ .hover\\:brightness-125:hover {
2445
+ --tw-brightness: brightness(125%);
2446
+ filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
2447
+ }
2448
+ }
2449
+
2450
+ .focus\\:translate-x-1:focus {
2451
+ --tw-translate-x: calc(var(--spacing) * 1);
2452
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2453
+ }
2454
+
2455
+ .focus\\:translate-x-\\[2px\\]:focus {
2456
+ --tw-translate-x: 2px;
2457
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2458
+ }
2459
+
2460
+ .focus\\:translate-x-\\[4px\\]:focus {
2461
+ --tw-translate-x: 4px;
2462
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2463
+ }
2464
+
2465
+ .focus\\:translate-y-1:focus {
2466
+ --tw-translate-y: calc(var(--spacing) * 1);
2467
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2468
+ }
2469
+
2470
+ .focus\\:translate-y-\\[2px\\]:focus {
2471
+ --tw-translate-y: 2px;
2472
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2473
+ }
2474
+
2475
+ .focus\\:translate-y-\\[4px\\]:focus {
2476
+ --tw-translate-y: 4px;
2477
+ translate: var(--tw-translate-x) var(--tw-translate-y);
2478
+ }
2479
+
2480
+ .focus\\:border-electric-blue:focus {
2481
+ border-color: var(--color-electric-blue);
2482
+ }
2483
+
2484
+ .focus\\:border-gray-500:focus {
2485
+ border-color: var(--color-gray-500);
2486
+ }
2487
+
2488
+ .focus\\:border-neon-green:focus {
2489
+ border-color: var(--color-neon-green);
2490
+ }
2491
+
2492
+ .focus\\:border-primary:focus {
2493
+ border-color: var(--color-primary);
2494
+ }
2495
+
2496
+ .focus\\:border-vibrant-purple:focus {
2497
+ border-color: var(--color-vibrant-purple);
2498
+ }
2499
+
2500
+ .focus\\:shadow-none:focus {
2501
+ --tw-shadow: 0 0 #0000;
2502
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
2503
+ }
2504
+
2505
+ .active\\:cursor-grabbing:active {
2506
+ cursor: grabbing;
2507
+ }
2508
+
2509
+ .disabled\\:cursor-not-allowed:disabled {
2510
+ cursor: not-allowed;
2511
+ }
2512
+
2513
+ .disabled\\:opacity-40:disabled {
2514
+ opacity: .4;
2515
+ }
2516
+
2517
+ @media (min-width: 40rem) {
2518
+ .sm\\:grid-cols-2 {
2519
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2520
+ }
2521
+
2522
+ .sm\\:grid-cols-3 {
2523
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2524
+ }
2525
+
2526
+ .sm\\:flex-row {
2527
+ flex-direction: row;
2528
+ }
2529
+ }
2530
+
2531
+ @media (min-width: 48rem) {
2532
+ .md\\:grid-cols-2 {
2533
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2534
+ }
2535
+ }
2536
+
2537
+ @media (min-width: 64rem) {
2538
+ .lg\\:grid-cols-2 {
2539
+ grid-template-columns: repeat(2, minmax(0, 1fr));
2540
+ }
2541
+
2542
+ .lg\\:grid-cols-4 {
2543
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2544
+ }
2545
+ }
2546
+
2547
+ @media (min-width: 80rem) {
2548
+ .xl\\:grid-cols-3 {
2549
+ grid-template-columns: repeat(3, minmax(0, 1fr));
2550
+ }
2551
+
2552
+ .xl\\:grid-cols-\\[minmax\\(0\\,1fr\\)_minmax\\(0\\,1fr\\)_320px\\] {
2553
+ grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 320px;
2554
+ }
2555
+ }
2556
+ }
2557
+
2558
+ @property --tw-translate-x {
2559
+ syntax: "*";
2560
+ inherits: false;
2561
+ initial-value: 0;
2562
+ }
2563
+
2564
+ @property --tw-translate-y {
2565
+ syntax: "*";
2566
+ inherits: false;
2567
+ initial-value: 0;
2568
+ }
2569
+
2570
+ @property --tw-translate-z {
2571
+ syntax: "*";
2572
+ inherits: false;
2573
+ initial-value: 0;
2574
+ }
2575
+
2576
+ @property --tw-rotate-x {
2577
+ syntax: "*";
2578
+ inherits: false
2579
+ }
2580
+
2581
+ @property --tw-rotate-y {
2582
+ syntax: "*";
2583
+ inherits: false
2584
+ }
2585
+
2586
+ @property --tw-rotate-z {
2587
+ syntax: "*";
2588
+ inherits: false
2589
+ }
2590
+
2591
+ @property --tw-skew-x {
2592
+ syntax: "*";
2593
+ inherits: false
2594
+ }
2595
+
2596
+ @property --tw-skew-y {
2597
+ syntax: "*";
2598
+ inherits: false
2599
+ }
2600
+
2601
+ @property --tw-space-y-reverse {
2602
+ syntax: "*";
2603
+ inherits: false;
2604
+ initial-value: 0;
2605
+ }
2606
+
2607
+ @property --tw-border-style {
2608
+ syntax: "*";
2609
+ inherits: false;
2610
+ initial-value: solid;
2611
+ }
2612
+
2613
+ @property --tw-leading {
2614
+ syntax: "*";
2615
+ inherits: false
2616
+ }
2617
+
2618
+ @property --tw-font-weight {
2619
+ syntax: "*";
2620
+ inherits: false
2621
+ }
2622
+
2623
+ @property --tw-tracking {
2624
+ syntax: "*";
2625
+ inherits: false
2626
+ }
2627
+
2628
+ @property --tw-shadow {
2629
+ syntax: "*";
2630
+ inherits: false;
2631
+ initial-value: 0 0 #0000;
2632
+ }
2633
+
2634
+ @property --tw-shadow-color {
2635
+ syntax: "*";
2636
+ inherits: false
2637
+ }
2638
+
2639
+ @property --tw-shadow-alpha {
2640
+ syntax: "<percentage>";
2641
+ inherits: false;
2642
+ initial-value: 100%;
2643
+ }
2644
+
2645
+ @property --tw-inset-shadow {
2646
+ syntax: "*";
2647
+ inherits: false;
2648
+ initial-value: 0 0 #0000;
2649
+ }
2650
+
2651
+ @property --tw-inset-shadow-color {
2652
+ syntax: "*";
2653
+ inherits: false
2654
+ }
2655
+
2656
+ @property --tw-inset-shadow-alpha {
2657
+ syntax: "<percentage>";
2658
+ inherits: false;
2659
+ initial-value: 100%;
2660
+ }
2661
+
2662
+ @property --tw-ring-color {
2663
+ syntax: "*";
2664
+ inherits: false
2665
+ }
2666
+
2667
+ @property --tw-ring-shadow {
2668
+ syntax: "*";
2669
+ inherits: false;
2670
+ initial-value: 0 0 #0000;
2671
+ }
2672
+
2673
+ @property --tw-inset-ring-color {
2674
+ syntax: "*";
2675
+ inherits: false
2676
+ }
2677
+
2678
+ @property --tw-inset-ring-shadow {
2679
+ syntax: "*";
2680
+ inherits: false;
2681
+ initial-value: 0 0 #0000;
2682
+ }
2683
+
2684
+ @property --tw-ring-inset {
2685
+ syntax: "*";
2686
+ inherits: false
2687
+ }
2688
+
2689
+ @property --tw-ring-offset-width {
2690
+ syntax: "<length>";
2691
+ inherits: false;
2692
+ initial-value: 0;
2693
+ }
2694
+
2695
+ @property --tw-ring-offset-color {
2696
+ syntax: "*";
2697
+ inherits: false;
2698
+ initial-value: #fff;
2699
+ }
2700
+
2701
+ @property --tw-ring-offset-shadow {
2702
+ syntax: "*";
2703
+ inherits: false;
2704
+ initial-value: 0 0 #0000;
2705
+ }
2706
+
2707
+ @property --tw-outline-style {
2708
+ syntax: "*";
2709
+ inherits: false;
2710
+ initial-value: solid;
2711
+ }
2712
+
2713
+ @property --tw-duration {
2714
+ syntax: "*";
2715
+ inherits: false
2716
+ }
2717
+
2718
+ @property --tw-scale-x {
2719
+ syntax: "*";
2720
+ inherits: false;
2721
+ initial-value: 1;
2722
+ }
2723
+
2724
+ @property --tw-scale-y {
2725
+ syntax: "*";
2726
+ inherits: false;
2727
+ initial-value: 1;
2728
+ }
2729
+
2730
+ @property --tw-scale-z {
2731
+ syntax: "*";
2732
+ inherits: false;
2733
+ initial-value: 1;
2734
+ }
2735
+
2736
+ @property --tw-blur {
2737
+ syntax: "*";
2738
+ inherits: false
2739
+ }
2740
+
2741
+ @property --tw-brightness {
2742
+ syntax: "*";
2743
+ inherits: false
2744
+ }
2745
+
2746
+ @property --tw-contrast {
2747
+ syntax: "*";
2748
+ inherits: false
2749
+ }
2750
+
2751
+ @property --tw-grayscale {
2752
+ syntax: "*";
2753
+ inherits: false
2754
+ }
2755
+
2756
+ @property --tw-hue-rotate {
2757
+ syntax: "*";
2758
+ inherits: false
2759
+ }
2760
+
2761
+ @property --tw-invert {
2762
+ syntax: "*";
2763
+ inherits: false
2764
+ }
2765
+
2766
+ @property --tw-opacity {
2767
+ syntax: "*";
2768
+ inherits: false
2769
+ }
2770
+
2771
+ @property --tw-saturate {
2772
+ syntax: "*";
2773
+ inherits: false
2774
+ }
2775
+
2776
+ @property --tw-sepia {
2777
+ syntax: "*";
2778
+ inherits: false
2779
+ }
2780
+
2781
+ @property --tw-drop-shadow {
2782
+ syntax: "*";
2783
+ inherits: false
2784
+ }
2785
+
2786
+ @property --tw-drop-shadow-color {
2787
+ syntax: "*";
2788
+ inherits: false
2789
+ }
2790
+
2791
+ @property --tw-drop-shadow-alpha {
2792
+ syntax: "<percentage>";
2793
+ inherits: false;
2794
+ initial-value: 100%;
2795
+ }
2796
+
2797
+ @property --tw-drop-shadow-size {
2798
+ syntax: "*";
2799
+ inherits: false
2800
+ }
2801
+
2802
+ @keyframes spin {
2803
+ to {
2804
+ transform: rotate(360deg);
2805
+ }
2806
+ }
2807
+
2808
+ @keyframes pulse {
2809
+ 50% {
2810
+ opacity: .5;
2811
+ }
2812
+ }
2813
+ `;})();