UNPKG

79.5 kBJavaScriptView Raw
1var OpenProps = {
2 "--animation-fade-in": "fade-in .5s var(--ease-3)",
3 "--animation-fade-in-@": "\n@keyframes fade-in {\n to { opacity: 1 }\n}",
4 "--animation-fade-in-bloom": "fade-in-bloom 2s var(--ease-3)",
5 "--animation-fade-in-bloom-@": "\n@keyframes fade-in-bloom {\n 0% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(2) blur(10px) }\n100% { opacity: 1; filter: brightness(1) blur(0) }\n}",
6 "--animation-fade-in-bloom-@media:dark": "\n@keyframes fade-in-bloom {\n 0% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(0.5) blur(10px) }\n100% { opacity: 1; filter: brightness(1) blur(0) }\n}",
7 "--animation-fade-out": "fade-out .5s var(--ease-3)",
8 "--animation-fade-out-@": "\n@keyframes fade-out {\n to { opacity: 0 }\n}",
9 "--animation-fade-out-bloom": "fade-out-bloom 2s var(--ease-3)",
10 "--animation-fade-out-bloom-@": "\n@keyframes fade-out-bloom {\n100% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(2) blur(10px) }\n 0% { opacity: 1; filter: brightness(1) blur(0) }\n}",
11 "--animation-fade-out-bloom-@media:dark": "\n@keyframes fade-out-bloom {\n100% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(0.5) blur(10px) }\n 0% { opacity: 1; filter: brightness(1) blur(0) }\n}",
12 "--animation-scale-up": "scale-up .5s var(--ease-3)",
13 "--animation-scale-up-@": "\n@keyframes scale-up {\n to { transform: scale(1.25) }\n}",
14 "--animation-scale-down": "scale-down .5s var(--ease-3)",
15 "--animation-scale-down-@": "\n@keyframes scale-down {\n to { transform: scale(.75) }\n}",
16 "--animation-slide-out-up": "slide-out-up .5s var(--ease-3)",
17 "--animation-slide-out-up-@": "\n@keyframes slide-out-up {\n to { transform: translateY(-100%) }\n}",
18 "--animation-slide-out-down": "slide-out-down .5s var(--ease-3)",
19 "--animation-slide-out-down-@": "\n@keyframes slide-out-down {\n to { transform: translateY(100%) }\n}",
20 "--animation-slide-out-right": "slide-out-right .5s var(--ease-3)",
21 "--animation-slide-out-right-@": "\n@keyframes slide-out-right {\n to { transform: translateX(100%) }\n}",
22 "--animation-slide-out-left": "slide-out-left .5s var(--ease-3)",
23 "--animation-slide-out-left-@": "\n@keyframes slide-out-left {\n to { transform: translateX(-100%) }\n}",
24 "--animation-slide-in-up": "slide-in-up .5s var(--ease-3)",
25 "--animation-slide-in-up-@": "\n@keyframes slide-in-up {\n from { transform: translateY(100%) }\n}",
26 "--animation-slide-in-down": "slide-in-down .5s var(--ease-3)",
27 "--animation-slide-in-down-@": "\n@keyframes slide-in-down {\n from { transform: translateY(-100%) }\n}",
28 "--animation-slide-in-right": "slide-in-right .5s var(--ease-3)",
29 "--animation-slide-in-right-@": "\n@keyframes slide-in-right {\n from { transform: translateX(-100%) }\n}",
30 "--animation-slide-in-left": "slide-in-left .5s var(--ease-3)",
31 "--animation-slide-in-left-@": "\n@keyframes slide-in-left {\n from { transform: translateX(100%) }\n}",
32 "--animation-shake-x": "shake-x .75s var(--ease-out-5)",
33 "--animation-shake-x-@": "\n@keyframes shake-x {\n 0%, 100% { transform: translateX(0%) }\n 20% { transform: translateX(-5%) }\n 40% { transform: translateX(5%) }\n 60% { transform: translateX(-5%) }\n 80% { transform: translateX(5%) }\n}",
34 "--animation-shake-y": "shake-y .75s var(--ease-out-5)",
35 "--animation-shake-y-@": "\n@keyframes shake-y {\n 0%, 100% { transform: translateY(0%) }\n 20% { transform: translateY(-5%) }\n 40% { transform: translateY(5%) }\n 60% { transform: translateY(-5%) }\n 80% { transform: translateY(5%) }\n}",
36 "--animation-spin": "spin 2s linear infinite",
37 "--animation-spin-@": "\n@keyframes spin {\n to { transform: rotate(1turn) }\n}",
38 "--animation-ping": "ping 5s var(--ease-out-3) infinite",
39 "--animation-ping-@": "\n@keyframes ping {\n 90%, 100% {\n transform: scale(2);\n opacity: 0;\n }\n}",
40 "--animation-blink": "blink 1s var(--ease-out-3) infinite",
41 "--animation-blink-@": "\n@keyframes blink {\n 0%, 100% {\n opacity: 1\n }\n 50% {\n opacity: .5\n }\n}",
42 "--animation-float": "float 3s var(--ease-in-out-3) infinite",
43 "--animation-float-@": "\n@keyframes float {\n 50% { transform: translateY(-25%) }\n}",
44 "--animation-bounce": "bounce 2s var(--ease-squish-2) infinite",
45 "--animation-bounce-@": "\n@keyframes bounce {\n 25% { transform: translateY(-20%) }\n 40% { transform: translateY(-3%) }\n 0%, 60%, 100% { transform: translateY(0) }\n}",
46 "--animation-pulse": "pulse 2s var(--ease-out-3) infinite",
47 "--animation-pulse-@": "\n@keyframes pulse {\n 50% { transform: scale(.9,.9) }\n}",
48 "--size-000": "-.5rem",
49 "--size-00": "-.25rem",
50 "--size-1": ".25rem",
51 "--size-2": ".5rem",
52 "--size-3": "1rem",
53 "--size-4": "1.25rem",
54 "--size-5": "1.5rem",
55 "--size-6": "1.75rem",
56 "--size-7": "2rem",
57 "--size-8": "3rem",
58 "--size-9": "4rem",
59 "--size-10": "5rem",
60 "--size-11": "7.5rem",
61 "--size-12": "10rem",
62 "--size-13": "15rem",
63 "--size-14": "20rem",
64 "--size-15": "30rem",
65 "--size-fluid-1": "clamp(.5rem, 1vw, 1rem)",
66 "--size-fluid-2": "clamp(1rem, 2vw, 1.5rem)",
67 "--size-fluid-3": "clamp(1.5rem, 3vw, 2rem)",
68 "--size-fluid-4": "clamp(2rem, 4vw, 3rem)",
69 "--size-fluid-5": "clamp(4rem, 5vw, 5rem)",
70 "--size-fluid-6": "clamp(5rem, 7vw, 7.5rem)",
71 "--size-fluid-7": "clamp(7.5rem, 10vw, 10rem)",
72 "--size-fluid-8": "clamp(10rem, 20vw, 15rem)",
73 "--size-fluid-9": "clamp(15rem, 30vw, 20rem)",
74 "--size-fluid-10": "clamp(20rem, 40vw, 30rem)",
75 "--size-content-1": "20ch",
76 "--size-content-2": "45ch",
77 "--size-content-3": "60ch",
78 "--size-header-1": "20ch",
79 "--size-header-2": "25ch",
80 "--size-header-3": "35ch",
81 "--size-xxs": "240px",
82 "--size-xs": "360px",
83 "--size-sm": "480px",
84 "--size-md": "768px",
85 "--size-lg": "1024px",
86 "--size-xl": "1440px",
87 "--size-xxl": "1920px",
88 "--gray-0": "#f8f9fa",
89 "--gray-1": "#f1f3f5",
90 "--gray-2": "#e9ecef",
91 "--gray-3": "#dee2e6",
92 "--gray-4": "#ced4da",
93 "--gray-5": "#adb5bd",
94 "--gray-6": "#868e96",
95 "--gray-7": "#495057",
96 "--gray-8": "#343a40",
97 "--gray-9": "#212529",
98 "--gray-10": "#16191d",
99 "--gray-11": "#0d0f12",
100 "--gray-12": "#030507",
101 "--stone-0": "#f8fafb",
102 "--stone-1": "#f2f4f6",
103 "--stone-2": "#ebedef",
104 "--stone-3": "#e0e4e5",
105 "--stone-4": "#d1d6d8",
106 "--stone-5": "#b1b6b9",
107 "--stone-6": "#979b9d",
108 "--stone-7": "#7e8282",
109 "--stone-8": "#666968",
110 "--stone-9": "#50514f",
111 "--stone-10": "#3a3a37",
112 "--stone-11": "#252521",
113 "--stone-12": "#121210",
114 "--red-0": "#fff5f5",
115 "--red-1": "#ffe3e3",
116 "--red-2": "#ffc9c9",
117 "--red-3": "#ffa8a8",
118 "--red-4": "#ff8787",
119 "--red-5": "#ff6b6b",
120 "--red-6": "#fa5252",
121 "--red-7": "#f03e3e",
122 "--red-8": "#e03131",
123 "--red-9": "#c92a2a",
124 "--red-10": "#b02525",
125 "--red-11": "#962020",
126 "--red-12": "#7d1a1a",
127 "--pink-0": "#fff0f6",
128 "--pink-1": "#ffdeeb",
129 "--pink-2": "#fcc2d7",
130 "--pink-3": "#faa2c1",
131 "--pink-4": "#f783ac",
132 "--pink-5": "#f06595",
133 "--pink-6": "#e64980",
134 "--pink-7": "#d6336c",
135 "--pink-8": "#c2255c",
136 "--pink-9": "#a61e4d",
137 "--pink-10": "#8c1941",
138 "--pink-11": "#731536",
139 "--pink-12": "#59102a",
140 "--purple-0": "#f8f0fc",
141 "--purple-1": "#f3d9fa",
142 "--purple-2": "#eebefa",
143 "--purple-3": "#e599f7",
144 "--purple-4": "#da77f2",
145 "--purple-5": "#cc5de8",
146 "--purple-6": "#be4bdb",
147 "--purple-7": "#ae3ec9",
148 "--purple-8": "#9c36b5",
149 "--purple-9": "#862e9c",
150 "--purple-10": "#702682",
151 "--purple-11": "#5a1e69",
152 "--purple-12": "#44174f",
153 "--violet-0": "#f3f0ff",
154 "--violet-1": "#e5dbff",
155 "--violet-2": "#d0bfff",
156 "--violet-3": "#b197fc",
157 "--violet-4": "#9775fa",
158 "--violet-5": "#845ef7",
159 "--violet-6": "#7950f2",
160 "--violet-7": "#7048e8",
161 "--violet-8": "#6741d9",
162 "--violet-9": "#5f3dc4",
163 "--violet-10": "#5235ab",
164 "--violet-11": "#462d91",
165 "--violet-12": "#3a2578",
166 "--indigo-0": "#edf2ff",
167 "--indigo-1": "#dbe4ff",
168 "--indigo-2": "#bac8ff",
169 "--indigo-3": "#91a7ff",
170 "--indigo-4": "#748ffc",
171 "--indigo-5": "#5c7cfa",
172 "--indigo-6": "#4c6ef5",
173 "--indigo-7": "#4263eb",
174 "--indigo-8": "#3b5bdb",
175 "--indigo-9": "#364fc7",
176 "--indigo-10": "#2f44ad",
177 "--indigo-11": "#283a94",
178 "--indigo-12": "#21307a",
179 "--blue-0": "#e7f5ff",
180 "--blue-1": "#d0ebff",
181 "--blue-2": "#a5d8ff",
182 "--blue-3": "#74c0fc",
183 "--blue-4": "#4dabf7",
184 "--blue-5": "#339af0",
185 "--blue-6": "#228be6",
186 "--blue-7": "#1c7ed6",
187 "--blue-8": "#1971c2",
188 "--blue-9": "#1864ab",
189 "--blue-10": "#145591",
190 "--blue-11": "#114678",
191 "--blue-12": "#0d375e",
192 "--cyan-0": "#e3fafc",
193 "--cyan-1": "#c5f6fa",
194 "--cyan-2": "#99e9f2",
195 "--cyan-3": "#66d9e8",
196 "--cyan-4": "#3bc9db",
197 "--cyan-5": "#22b8cf",
198 "--cyan-6": "#15aabf",
199 "--cyan-7": "#1098ad",
200 "--cyan-8": "#0c8599",
201 "--cyan-9": "#0b7285",
202 "--cyan-10": "#095c6b",
203 "--cyan-11": "#074652",
204 "--cyan-12": "#053038",
205 "--teal-0": "#e6fcf5",
206 "--teal-1": "#c3fae8",
207 "--teal-2": "#96f2d7",
208 "--teal-3": "#63e6be",
209 "--teal-4": "#38d9a9",
210 "--teal-5": "#20c997",
211 "--teal-6": "#12b886",
212 "--teal-7": "#0ca678",
213 "--teal-8": "#099268",
214 "--teal-9": "#087f5b",
215 "--teal-10": "#066649",
216 "--teal-11": "#054d37",
217 "--teal-12": "#033325",
218 "--green-0": "#ebfbee",
219 "--green-1": "#d3f9d8",
220 "--green-2": "#b2f2bb",
221 "--green-3": "#8ce99a",
222 "--green-4": "#69db7c",
223 "--green-5": "#51cf66",
224 "--green-6": "#40c057",
225 "--green-7": "#37b24d",
226 "--green-8": "#2f9e44",
227 "--green-9": "#2b8a3e",
228 "--green-10": "#237032",
229 "--green-11": "#1b5727",
230 "--green-12": "#133d1b",
231 "--lime-0": "#f4fce3",
232 "--lime-1": "#e9fac8",
233 "--lime-2": "#d8f5a2",
234 "--lime-3": "#c0eb75",
235 "--lime-4": "#a9e34b",
236 "--lime-5": "#94d82d",
237 "--lime-6": "#82c91e",
238 "--lime-7": "#74b816",
239 "--lime-8": "#66a80f",
240 "--lime-9": "#5c940d",
241 "--lime-10": "#4c7a0b",
242 "--lime-11": "#3c6109",
243 "--lime-12": "#2c4706",
244 "--yellow-0": "#fff9db",
245 "--yellow-1": "#fff3bf",
246 "--yellow-2": "#ffec99",
247 "--yellow-3": "#ffe066",
248 "--yellow-4": "#ffd43b",
249 "--yellow-5": "#fcc419",
250 "--yellow-6": "#fab005",
251 "--yellow-7": "#f59f00",
252 "--yellow-8": "#f08c00",
253 "--yellow-9": "#e67700",
254 "--yellow-10": "#b35c00",
255 "--yellow-11": "#804200",
256 "--yellow-12": "#663500",
257 "--orange-0": "#fff4e6",
258 "--orange-1": "#ffe8cc",
259 "--orange-2": "#ffd8a8",
260 "--orange-3": "#ffc078",
261 "--orange-4": "#ffa94d",
262 "--orange-5": "#ff922b",
263 "--orange-6": "#fd7e14",
264 "--orange-7": "#f76707",
265 "--orange-8": "#e8590c",
266 "--orange-9": "#d9480f",
267 "--orange-10": "#bf400d",
268 "--orange-11": "#99330b",
269 "--orange-12": "#802b09",
270 "--choco-0": "#fff8dc",
271 "--choco-1": "#fce1bc",
272 "--choco-2": "#f7ca9e",
273 "--choco-3": "#f1b280",
274 "--choco-4": "#e99b62",
275 "--choco-5": "#df8545",
276 "--choco-6": "#d46e25",
277 "--choco-7": "#bd5f1b",
278 "--choco-8": "#a45117",
279 "--choco-9": "#8a4513",
280 "--choco-10": "#703a13",
281 "--choco-11": "#572f12",
282 "--choco-12": "#3d210d",
283 "--brown-0": "#faf4eb",
284 "--brown-1": "#ede0d1",
285 "--brown-2": "#e0cab7",
286 "--brown-3": "#d3b79e",
287 "--brown-4": "#c5a285",
288 "--brown-5": "#b78f6d",
289 "--brown-6": "#a87c56",
290 "--brown-7": "#956b47",
291 "--brown-8": "#825b3a",
292 "--brown-9": "#6f4b2d",
293 "--brown-10": "#5e3a21",
294 "--brown-11": "#4e2b15",
295 "--brown-12": "#422412",
296 "--sand-0": "#f8fafb",
297 "--sand-1": "#e6e4dc",
298 "--sand-2": "#d5cfbd",
299 "--sand-3": "#c2b9a0",
300 "--sand-4": "#aea58c",
301 "--sand-5": "#9a9178",
302 "--sand-6": "#867c65",
303 "--sand-7": "#736a53",
304 "--sand-8": "#5f5746",
305 "--sand-9": "#4b4639",
306 "--sand-10": "#38352d",
307 "--sand-11": "#252521",
308 "--sand-12": "#121210",
309 "--camo-0": "#f9fbe7",
310 "--camo-1": "#e8ed9c",
311 "--camo-2": "#d2df4e",
312 "--camo-3": "#c2ce34",
313 "--camo-4": "#b5bb2e",
314 "--camo-5": "#a7a827",
315 "--camo-6": "#999621",
316 "--camo-7": "#8c851c",
317 "--camo-8": "#7e7416",
318 "--camo-9": "#6d6414",
319 "--camo-10": "#5d5411",
320 "--camo-11": "#4d460e",
321 "--camo-12": "#36300a",
322 "--jungle-0": "#ecfeb0",
323 "--jungle-1": "#def39a",
324 "--jungle-2": "#d0e884",
325 "--jungle-3": "#c2dd6e",
326 "--jungle-4": "#b5d15b",
327 "--jungle-5": "#a8c648",
328 "--jungle-6": "#9bbb36",
329 "--jungle-7": "#8fb024",
330 "--jungle-8": "#84a513",
331 "--jungle-9": "#7a9908",
332 "--jungle-10": "#658006",
333 "--jungle-11": "#516605",
334 "--jungle-12": "#3d4d04",
335 "--gray-0-hsl": "210 17% 98%",
336 "--gray-1-hsl": "210 17% 95%",
337 "--gray-2-hsl": "210 16% 93%",
338 "--gray-3-hsl": "210 14% 89%",
339 "--gray-4-hsl": "210 14% 83%",
340 "--gray-5-hsl": "210 11% 71%",
341 "--gray-6-hsl": "210 7% 56%",
342 "--gray-7-hsl": "210 9% 31%",
343 "--gray-8-hsl": "210 10% 23%",
344 "--gray-9-hsl": "210 11% 15%",
345 "--gray-10-hsl": "214 14% 10%",
346 "--gray-11-hsl": "216 16% 6%",
347 "--gray-12-hsl": "210 40% 2%",
348 "--stone-0-hsl": "200 27% 98%",
349 "--stone-1-hsl": "210 18% 96%",
350 "--stone-2-hsl": "210 11% 93%",
351 "--stone-3-hsl": "192 9% 89%",
352 "--stone-4-hsl": "197 8% 83%",
353 "--stone-5-hsl": "202 5% 71%",
354 "--stone-6-hsl": "200 3% 60%",
355 "--stone-7-hsl": "180 2% 50%",
356 "--stone-8-hsl": "160 1% 41%",
357 "--stone-9-hsl": "90 1% 31%",
358 "--stone-10-hsl": "60 3% 22%",
359 "--stone-11-hsl": "60 6% 14%",
360 "--stone-12-hsl": "60 6% 7%",
361 "--red-0-hsl": "0 100% 98%",
362 "--red-1-hsl": "0 100% 95%",
363 "--red-2-hsl": "0 100% 89%",
364 "--red-3-hsl": "0 100% 83%",
365 "--red-4-hsl": "0 100% 76%",
366 "--red-5-hsl": "0 100% 71%",
367 "--red-6-hsl": "0 94% 65%",
368 "--red-7-hsl": "0 86% 59%",
369 "--red-8-hsl": "0 74% 54%",
370 "--red-9-hsl": "0 65% 48%",
371 "--red-10-hsl": "0 65% 42%",
372 "--red-11-hsl": "0 65% 36%",
373 "--red-12-hsl": "0 66% 30%",
374 "--pink-0-hsl": "336 100% 97%",
375 "--pink-1-hsl": "336 100% 94%",
376 "--pink-2-hsl": "338 91% 87%",
377 "--pink-3-hsl": "339 90% 81%",
378 "--pink-4-hsl": "339 88% 74%",
379 "--pink-5-hsl": "339 82% 67%",
380 "--pink-6-hsl": "339 76% 59%",
381 "--pink-7-hsl": "339 67% 52%",
382 "--pink-8-hsl": "339 68% 45%",
383 "--pink-9-hsl": "339 69% 38%",
384 "--pink-10-hsl": "339 70% 32%",
385 "--pink-11-hsl": "339 69% 27%",
386 "--pink-12-hsl": "339 70% 21%",
387 "--purple-0-hsl": "280 67% 96%",
388 "--purple-1-hsl": "287 77% 92%",
389 "--purple-2-hsl": "288 86% 86%",
390 "--purple-3-hsl": "289 85% 78%",
391 "--purple-4-hsl": "288 83% 71%",
392 "--purple-5-hsl": "288 75% 64%",
393 "--purple-6-hsl": "288 67% 58%",
394 "--purple-7-hsl": "288 56% 52%",
395 "--purple-8-hsl": "288 54% 46%",
396 "--purple-9-hsl": "288 54% 40%",
397 "--purple-10-hsl": "288 55% 33%",
398 "--purple-11-hsl": "288 56% 26%",
399 "--purple-12-hsl": "288 55% 20%",
400 "--violet-0-hsl": "252 100% 97%",
401 "--violet-1-hsl": "257 100% 93%",
402 "--violet-2-hsl": "256 100% 87%",
403 "--violet-3-hsl": "255 94% 79%",
404 "--violet-4-hsl": "255 93% 72%",
405 "--violet-5-hsl": "255 91% 67%",
406 "--violet-6-hsl": "255 86% 63%",
407 "--violet-7-hsl": "255 78% 60%",
408 "--violet-8-hsl": "255 67% 55%",
409 "--violet-9-hsl": "255 53% 50%",
410 "--violet-10-hsl": "255 53% 44%",
411 "--violet-11-hsl": "255 53% 37%",
412 "--violet-12-hsl": "255 53% 31%",
413 "--indigo-0-hsl": "223 100% 96%",
414 "--indigo-1-hsl": "225 100% 93%",
415 "--indigo-2-hsl": "228 100% 86%",
416 "--indigo-3-hsl": "228 100% 78%",
417 "--indigo-4-hsl": "228 96% 72%",
418 "--indigo-5-hsl": "228 94% 67%",
419 "--indigo-6-hsl": "228 89% 63%",
420 "--indigo-7-hsl": "228 81% 59%",
421 "--indigo-8-hsl": "228 69% 55%",
422 "--indigo-9-hsl": "230 57% 50%",
423 "--indigo-10-hsl": "230 57% 43%",
424 "--indigo-11-hsl": "230 57% 37%",
425 "--indigo-12-hsl": "230 57% 30%",
426 "--blue-0-hsl": "205 100% 95%",
427 "--blue-1-hsl": "206 100% 91%",
428 "--blue-2-hsl": "206 100% 82%",
429 "--blue-3-hsl": "206 96% 72%",
430 "--blue-4-hsl": "207 91% 64%",
431 "--blue-5-hsl": "207 86% 57%",
432 "--blue-6-hsl": "208 80% 52%",
433 "--blue-7-hsl": "208 77% 47%",
434 "--blue-8-hsl": "209 77% 43%",
435 "--blue-9-hsl": "209 75% 38%",
436 "--blue-10-hsl": "209 76% 32%",
437 "--blue-11-hsl": "209 75% 27%",
438 "--blue-12-hsl": "209 76% 21%",
439 "--cyan-0-hsl": "185 81% 94%",
440 "--cyan-1-hsl": "185 84% 88%",
441 "--cyan-2-hsl": "186 77% 77%",
442 "--cyan-3-hsl": "187 74% 65%",
443 "--cyan-4-hsl": "187 69% 55%",
444 "--cyan-5-hsl": "188 72% 47%",
445 "--cyan-6-hsl": "187 80% 42%",
446 "--cyan-7-hsl": "188 83% 37%",
447 "--cyan-8-hsl": "189 85% 32%",
448 "--cyan-9-hsl": "189 85% 28%",
449 "--cyan-10-hsl": "189 84% 23%",
450 "--cyan-11-hsl": "190 84% 17%",
451 "--cyan-12-hsl": "189 84% 12%",
452 "--teal-0-hsl": "161 79% 95%",
453 "--teal-1-hsl": "160 85% 87%",
454 "--teal-2-hsl": "162 78% 77%",
455 "--teal-3-hsl": "162 72% 65%",
456 "--teal-4-hsl": "162 68% 54%",
457 "--teal-5-hsl": "162 73% 46%",
458 "--teal-6-hsl": "162 82% 40%",
459 "--teal-7-hsl": "162 87% 35%",
460 "--teal-8-hsl": "162 88% 30%",
461 "--teal-9-hsl": "162 88% 26%",
462 "--teal-10-hsl": "162 89% 21%",
463 "--teal-11-hsl": "162 88% 16%",
464 "--teal-12-hsl": "163 89% 11%",
465 "--green-0-hsl": "131 67% 95%",
466 "--green-1-hsl": "128 76% 90%",
467 "--green-2-hsl": "128 71% 82%",
468 "--green-3-hsl": "129 68% 73%",
469 "--green-4-hsl": "130 61% 64%",
470 "--green-5-hsl": "130 57% 56%",
471 "--green-6-hsl": "131 50% 50%",
472 "--green-7-hsl": "131 53% 46%",
473 "--green-8-hsl": "131 54% 40%",
474 "--green-9-hsl": "132 52% 35%",
475 "--green-10-hsl": "132 52% 29%",
476 "--green-11-hsl": "132 53% 22%",
477 "--green-12-hsl": "131 53% 16%",
478 "--lime-0-hsl": "79 81% 94%",
479 "--lime-1-hsl": "80 83% 88%",
480 "--lime-2-hsl": "81 81% 80%",
481 "--lime-3-hsl": "82 75% 69%",
482 "--lime-4-hsl": "83 73% 59%",
483 "--lime-5-hsl": "84 69% 51%",
484 "--lime-6-hsl": "85 74% 45%",
485 "--lime-7-hsl": "85 79% 40%",
486 "--lime-8-hsl": "86 84% 36%",
487 "--lime-9-hsl": "85 84% 32%",
488 "--lime-10-hsl": "85 83% 26%",
489 "--lime-11-hsl": "85 83% 21%",
490 "--lime-12-hsl": "85 84% 15%",
491 "--yellow-0-hsl": "50 100% 93%",
492 "--yellow-1-hsl": "49 100% 87%",
493 "--yellow-2-hsl": "49 100% 80%",
494 "--yellow-3-hsl": "48 100% 70%",
495 "--yellow-4-hsl": "47 100% 62%",
496 "--yellow-5-hsl": "45 97% 54%",
497 "--yellow-6-hsl": "42 96% 50%",
498 "--yellow-7-hsl": "39 100% 48%",
499 "--yellow-8-hsl": "35 100% 47%",
500 "--yellow-9-hsl": "31 100% 45%",
501 "--yellow-10-hsl": "31 100% 35%",
502 "--yellow-11-hsl": "31 100% 25%",
503 "--yellow-12-hsl": "31 100% 20%",
504 "--orange-0-hsl": "34 100% 95%",
505 "--orange-1-hsl": "33 100% 90%",
506 "--orange-2-hsl": "33 100% 83%",
507 "--orange-3-hsl": "32 100% 74%",
508 "--orange-4-hsl": "31 100% 65%",
509 "--orange-5-hsl": "29 100% 58%",
510 "--orange-6-hsl": "27 98% 54%",
511 "--orange-7-hsl": "24 94% 50%",
512 "--orange-8-hsl": "21 90% 48%",
513 "--orange-9-hsl": "17 87% 45%",
514 "--orange-10-hsl": "17 87% 40%",
515 "--orange-11-hsl": "17 87% 32%",
516 "--orange-12-hsl": "17 87% 27%",
517 "--choco-0-hsl": "48 100% 93%",
518 "--choco-1-hsl": "35 91% 86%",
519 "--choco-2-hsl": "30 85% 79%",
520 "--choco-3-hsl": "27 80% 72%",
521 "--choco-4-hsl": "25 75% 65%",
522 "--choco-5-hsl": "25 71% 57%",
523 "--choco-6-hsl": "25 70% 49%",
524 "--choco-7-hsl": "25 75% 42%",
525 "--choco-8-hsl": "25 75% 37%",
526 "--choco-9-hsl": "25 76% 31%",
527 "--choco-10-hsl": "25 71% 26%",
528 "--choco-11-hsl": "25 66% 21%",
529 "--choco-12-hsl": "25 65% 15%",
530 "--brown-0-hsl": "36 60% 95%",
531 "--brown-1-hsl": "32 44% 87%",
532 "--brown-2-hsl": "28 40% 80%",
533 "--brown-3-hsl": "28 38% 72%",
534 "--brown-4-hsl": "27 36% 65%",
535 "--brown-5-hsl": "28 34% 57%",
536 "--brown-6-hsl": "28 32% 50%",
537 "--brown-7-hsl": "28 35% 43%",
538 "--brown-8-hsl": "28 38% 37%",
539 "--brown-9-hsl": "27 42% 31%",
540 "--brown-10-hsl": "25 48% 25%",
541 "--brown-11-hsl": "23 58% 19%",
542 "--brown-12-hsl": "22 57% 16%",
543 "--sand-0-hsl": "200 27% 98%",
544 "--sand-1-hsl": "48 17% 88%",
545 "--sand-2-hsl": "45 22% 79%",
546 "--sand-3-hsl": "44 22% 69%",
547 "--sand-4-hsl": "44 17% 62%",
548 "--sand-5-hsl": "44 14% 54%",
549 "--sand-6-hsl": "42 14% 46%",
550 "--sand-7-hsl": "43 16% 39%",
551 "--sand-8-hsl": "41 15% 32%",
552 "--sand-9-hsl": "43 14% 26%",
553 "--sand-10-hsl": "44 11% 20%",
554 "--sand-11-hsl": "60 6% 14%",
555 "--sand-12-hsl": "60 6% 7%",
556 "--camo-0-hsl": "66 71% 95%",
557 "--camo-1-hsl": "64 69% 77%",
558 "--camo-2-hsl": "65 69% 59%",
559 "--camo-3-hsl": "65 61% 51%",
560 "--camo-4-hsl": "63 61% 46%",
561 "--camo-5-hsl": "60 62% 41%",
562 "--camo-6-hsl": "59 65% 36%",
563 "--camo-7-hsl": "56 67% 33%",
564 "--camo-8-hsl": "54 70% 29%",
565 "--camo-9-hsl": "54 69% 25%",
566 "--camo-10-hsl": "53 69% 22%",
567 "--camo-11-hsl": "53 69% 18%",
568 "--camo-12-hsl": "52 69% 13%",
569 "--jungle-0-hsl": "74 98% 84%",
570 "--jungle-1-hsl": "74 79% 78%",
571 "--jungle-2-hsl": "74 68% 71%",
572 "--jungle-3-hsl": "75 62% 65%",
573 "--jungle-4-hsl": "74 56% 59%",
574 "--jungle-5-hsl": "74 53% 53%",
575 "--jungle-6-hsl": "74 55% 47%",
576 "--jungle-7-hsl": "74 66% 42%",
577 "--jungle-8-hsl": "74 79% 36%",
578 "--jungle-9-hsl": "73 90% 32%",
579 "--jungle-10-hsl": "73 91% 26%",
580 "--jungle-11-hsl": "73 91% 21%",
581 "--jungle-12-hsl": "73 90% 16%",
582 "--font-sans": "system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif",
583 "--font-serif": "ui-serif,serif",
584 "--font-mono": "Dank Mono,Operator Mono,Inconsolata,Fira Mono,ui-monospace,SF Mono,Monaco,Droid Sans Mono,Source Code Pro,monospace",
585 "--font-weight-1": "100",
586 "--font-weight-2": "200",
587 "--font-weight-3": "300",
588 "--font-weight-4": "400",
589 "--font-weight-5": "500",
590 "--font-weight-6": "600",
591 "--font-weight-7": "700",
592 "--font-weight-8": "800",
593 "--font-weight-9": "900",
594 "--font-lineheight-00": ".95",
595 "--font-lineheight-0": "1.1",
596 "--font-lineheight-1": "1.25",
597 "--font-lineheight-2": "1.375",
598 "--font-lineheight-3": "1.5",
599 "--font-lineheight-4": "1.75",
600 "--font-lineheight-5": "2",
601 "--font-letterspacing-0": "-.05em",
602 "--font-letterspacing-1": ".025em",
603 "--font-letterspacing-2": ".050em",
604 "--font-letterspacing-3": ".075em",
605 "--font-letterspacing-4": ".150em",
606 "--font-letterspacing-5": ".500em",
607 "--font-letterspacing-6": ".750em",
608 "--font-letterspacing-7": "1em",
609 "--font-size-00": ".5rem",
610 "--font-size-0": ".75rem",
611 "--font-size-1": "1rem",
612 "--font-size-2": "1.1rem",
613 "--font-size-3": "1.25rem",
614 "--font-size-4": "1.5rem",
615 "--font-size-5": "2rem",
616 "--font-size-6": "2.5rem",
617 "--font-size-7": "3rem",
618 "--font-size-8": "3.5rem",
619 "--font-size-fluid-0": "clamp(.75rem, 2vw, 1rem)",
620 "--font-size-fluid-1": "clamp(1rem, 4vw, 1.5rem)",
621 "--font-size-fluid-2": "clamp(1.5rem, 6vw, 2.5rem)",
622 "--font-size-fluid-3": "clamp(2rem, 9vw, 3.5rem)",
623 "--border-size-1": "1px",
624 "--border-size-2": "2px",
625 "--border-size-3": "5px",
626 "--border-size-4": "10px",
627 "--border-size-5": "25px",
628 "--radius-1": "2px",
629 "--radius-2": "5px",
630 "--radius-3": "1rem",
631 "--radius-4": "2rem",
632 "--radius-5": "4rem",
633 "--radius-6": "8rem",
634 "--radius-round": "1e5px",
635 "--radius-blob-1": "30% 70% 70% 30% / 53% 30% 70% 47%",
636 "--radius-blob-2": "53% 47% 34% 66% / 63% 46% 54% 37%",
637 "--radius-blob-3": "37% 63% 56% 44% / 49% 56% 44% 51%",
638 "--radius-blob-4": "63% 37% 37% 63% / 43% 37% 63% 57%",
639 "--radius-blob-5": "49% 51% 48% 52% / 57% 44% 56% 43%",
640 "--radius-conditional-1": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-1))",
641 "--radius-conditional-2": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-2))",
642 "--radius-conditional-3": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-3))",
643 "--radius-conditional-4": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-4))",
644 "--radius-conditional-5": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-5))",
645 "--radius-conditional-6": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-6))",
646 "--ratio-square": "1",
647 "--ratio-landscape": "4/3",
648 "--ratio-portrait": "3/4",
649 "--ratio-widescreen": "16/9",
650 "--ratio-ultrawide": "18/5",
651 "--ratio-golden": "1.6180/1",
652 "--ease-1": "cubic-bezier(.25, 0, .5, 1)",
653 "--ease-2": "cubic-bezier(.25, 0, .4, 1)",
654 "--ease-3": "cubic-bezier(.25, 0, .3, 1)",
655 "--ease-4": "cubic-bezier(.25, 0, .2, 1)",
656 "--ease-5": "cubic-bezier(.25, 0, .1, 1)",
657 "--ease-in-1": "cubic-bezier(.25, 0, 1, 1)",
658 "--ease-in-2": "cubic-bezier(.50, 0, 1, 1)",
659 "--ease-in-3": "cubic-bezier(.70, 0, 1, 1)",
660 "--ease-in-4": "cubic-bezier(.90, 0, 1, 1)",
661 "--ease-in-5": "cubic-bezier(1, 0, 1, 1)",
662 "--ease-out-1": "cubic-bezier(0, 0, .75, 1)",
663 "--ease-out-2": "cubic-bezier(0, 0, .50, 1)",
664 "--ease-out-3": "cubic-bezier(0, 0, .3, 1)",
665 "--ease-out-4": "cubic-bezier(0, 0, .1, 1)",
666 "--ease-out-5": "cubic-bezier(0, 0, 0, 1)",
667 "--ease-in-out-1": "cubic-bezier(.1, 0, .9, 1)",
668 "--ease-in-out-2": "cubic-bezier(.3, 0, .7, 1)",
669 "--ease-in-out-3": "cubic-bezier(.5, 0, .5, 1)",
670 "--ease-in-out-4": "cubic-bezier(.7, 0, .3, 1)",
671 "--ease-in-out-5": "cubic-bezier(.9, 0, .1, 1)",
672 "--ease-elastic-1": "cubic-bezier(.5, .75, .75, 1.25)",
673 "--ease-elastic-2": "cubic-bezier(.5, 1, .75, 1.25)",
674 "--ease-elastic-3": "cubic-bezier(.5, 1.25, .75, 1.25)",
675 "--ease-elastic-4": "cubic-bezier(.5, 1.5, .75, 1.25)",
676 "--ease-elastic-5": "cubic-bezier(.5, 1.75, .75, 1.25)",
677 "--ease-squish-1": "cubic-bezier(.5, -.1, .1, 1.5)",
678 "--ease-squish-2": "cubic-bezier(.5, -.3, .1, 1.5)",
679 "--ease-squish-3": "cubic-bezier(.5, -.5, .1, 1.5)",
680 "--ease-squish-4": "cubic-bezier(.5, -.7, .1, 1.5)",
681 "--ease-squish-5": "cubic-bezier(.5, -.9, .1, 1.5)",
682 "--ease-step-1": "steps(2)",
683 "--ease-step-2": "steps(3)",
684 "--ease-step-3": "steps(4)",
685 "--ease-step-4": "steps(7)",
686 "--ease-step-5": "steps(10)",
687 "--squircle-1": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 18.75 18.75, 0 75, 0 S 150, 18.75 150, 75 131.25, 150 75, 150 0, 131.25 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
688 "--squircle-2": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 13.500000000000004 13.500000000000004, 0 75, 0 S 150, 13.500000000000004 150, 75 136.5, 150 75, 150 0, 136.5 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
689 "--squircle-3": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 5.999999999999997 5.999999999999997, 0 75, 0 S 150, 5.999999999999997 150, 75 144, 150 75, 150 0, 144 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
690 "--gradient-1": "linear-gradient(to bottom right,#1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b)",
691 "--gradient-2": "linear-gradient(to bottom right,#48005c, #8300e2, #a269ff)",
692 "--gradient-3": "\n radial-gradient(\n circle at top right, \n hsl(180 100% 50%), hsl(180 100% 50% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(328 100% 54%), hsl(328 100% 54% / 0%)\n )",
693 "--gradient-4": "linear-gradient(to bottom right,#00F5A0,#00D9F5)",
694 "--gradient-5": "conic-gradient(from -270deg at 75% 110%, fuchsia, floralwhite)",
695 "--gradient-6": "conic-gradient(from -90deg at top left, black, white)",
696 "--gradient-7": "linear-gradient(to bottom right,#72C6EF,#004E8F)",
697 "--gradient-8": "conic-gradient(from 90deg at 50% 0%, #111, 50%, #222, #111)",
698 "--gradient-9": "conic-gradient(from .5turn at bottom center, lightblue, white)",
699 "--gradient-10": "conic-gradient(from 90deg at 40% -25%, #ffd700, #f79d03, #ee6907, #e6390a, #de0d0d, #d61039, #cf1261, #c71585, #cf1261, #d61039, #de0d0d, #ee6907, #f79d03, #ffd700, #ffd700, #ffd700)",
700 "--gradient-11": "conic-gradient(at bottom left, deeppink, cyan)",
701 "--gradient-12": "conic-gradient(from 90deg at 25% -10%, #ff4500, #d3f340, #7bee85, #afeeee, #7bee85)",
702 "--gradient-13": "radial-gradient(circle at 50% 200%, #000142, #3b0083, #b300c3, #ff059f, #ff4661, #ffad86, #fff3c7)",
703 "--gradient-14": "conic-gradient(at top right, lime, cyan)",
704 "--gradient-15": "linear-gradient(to bottom right, #c7d2fe, #fecaca, #fef3c7)",
705 "--gradient-16": "radial-gradient(circle at 50% -250%, #374151, #111827, #000)",
706 "--gradient-17": "conic-gradient(from -90deg at 50% -25%, blue, blueviolet)",
707 "--gradient-18": "\n linear-gradient(0deg, hsla(0 100% 50% / 80%), hsla(0 100% 50% / 0) 75%),\n linear-gradient(60deg, hsla(60 100% 50% / 80%), hsla(60 100% 50% / 0) 75%),\n linear-gradient(120deg, hsla(120 100% 50% / 80%), hsla(120 100% 50% / 0) 75%),\n linear-gradient(180deg, hsla(180 100% 50% / 80%), hsla(180 100% 50% / 0) 75%),\n linear-gradient(240deg, hsla(240 100% 50% / 80%), hsla(240 100% 50% / 0) 75%),\n linear-gradient(300deg, hsla(300 100% 50% / 80%), hsla(300 100% 50% / 0) 75%)\n ",
708 "--gradient-19": "linear-gradient(to bottom right,#ffe259,#ffa751)",
709 "--gradient-20": "conic-gradient(from -135deg at -10% center, #ffa500, #ff7715, #ff522a, #ff3f47, #ff5482, #ff69b4)",
710 "--gradient-21": "conic-gradient(from -90deg at 25% 115%, #ff0000, #ff0066, #ff00cc, #cc00ff, #6600ff, #0000ff, #0000ff, #0000ff, #0000ff)",
711 "--gradient-22": "linear-gradient(to bottom right,#acb6e5,#86fde8)",
712 "--gradient-23": "linear-gradient(to bottom right,#536976,#292E49)",
713 "--gradient-24": "conic-gradient(from .5turn at 0% 0%, #00c476, 10%, #82b0ff, 90%, #00c476)",
714 "--gradient-25": "conic-gradient(at 125% 50%, #b78cf7, #ff7c94, #ffcf0d, #ff7c94, #b78cf7)",
715 "--gradient-26": "linear-gradient(to bottom right,#9796f0,#fbc7d4)",
716 "--gradient-27": "conic-gradient(from .5turn at bottom left, deeppink, rebeccapurple)",
717 "--gradient-28": "conic-gradient(from -90deg at 50% 105%, white, orchid)",
718 "--gradient-29": "\n radial-gradient(\n circle at top right, \n hsl(250 100% 85%), hsl(250 100% 85% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(220 90% 75%), hsl(220 90% 75% / 0%)\n )",
719 "--gradient-30": "radial-gradient(\n circle at top right, \n hsl(150 100% 50%), hsl(150 100% 50% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(150 100% 84%), hsl(150 100% 84% / 0%)\n )",
720 "--noise-1": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.005' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
721 "--noise-2": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
722 "--noise-3": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.25' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
723 "--noise-4": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
724 "--noise-5": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
725 "--noise-filter-1": "contrast(300%) brightness(100%)",
726 "--noise-filter-2": "contrast(200%) brightness(150%)",
727 "--noise-filter-3": "contrast(200%) brightness(250%)",
728 "--noise-filter-4": "contrast(200%) brightness(500%)",
729 "--noise-filter-5": "contrast(200%) brightness(1000%)",
730 "--shadow-color": "220 3% 15%",
731 "--shadow-strength": "1%",
732 "--shadow-color-@media:dark": "220 40% 2%",
733 "--shadow-strength-@media:dark": "25%",
734 "--shadow-1": "0 1px 2px -1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
735 "--shadow-2": "\n 0 3px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 7px 14px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%))",
736 "--shadow-3": "\n 0 -1px 3px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 1px 2px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 2px 5px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 4px 12px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 12px 15px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
737 "--shadow-4": "\n 0 -2px 5px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 1px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 2px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 9px 9px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 16px 16px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%))",
738 "--shadow-5": "\n 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 2px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 10px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 20px 20px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 40px 40px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
739 "--shadow-6": "\n 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 3px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 7px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 12px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 22px 18px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 41px 33px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%)),\n 0 100px 80px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
740 "--inner-shadow-0": "inset 0 0 0 1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
741 "--inner-shadow-1": "inset 0 1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
742 "--inner-shadow-2": "inset 0 1px 4px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
743 "--inner-shadow-3": "inset 0 2px 8px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
744 "--inner-shadow-4": "inset 0 2px 14px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
745 "--layer-1": 1,
746 "--layer-2": 2,
747 "--layer-3": 3,
748 "--layer-4": 4,
749 "--layer-5": 5,
750 "--layer-important": 2147483647,
751 "--mask-edge-scoop-bottom": "radial-gradient(20px at 50% 100%,#0000 97%,#000) 50% / calc(1.9 * 20px) 100%",
752 "--mask-edge-scoop-top": "radial-gradient(20px at 50% 0,#0000 97%,#000) 50% / calc(1.9 * 20px) 100%",
753 "--mask-edge-scoop-vertical": "radial-gradient(20px at 50% 20px,#0000 97%,#000) 50% -20px/ calc(1.9 * 20px) 100%",
754 "--mask-edge-scoop-left": "radial-gradient(20px at 0 50%,#0000 97%,#000) 50%/ 100% calc(1.9 * 20px)",
755 "--mask-edge-scoop-right": "radial-gradient(20px at 100% 50%,#0000 97%,#000) 50%/ 100% calc(1.9 * 20px)",
756 "--mask-edge-scoop-horizontal": "radial-gradient(20px at 20px 50%,#0000 97%,#000) -20px/ 100% calc(1.9 * 20px)",
757 "--mask-edge-scalloped": "\n radial-gradient(farthest-side,#000 97%,#0000) 0 0 / 20px 20px round,\n linear-gradient(#000 0 0) 50%/calc(100% - 20px) calc(100% - 20px) no-repeat\n ",
758 "--mask-edge-scalloped-bottom": "\n linear-gradient(to top,#0000 20px,#000 0),\n radial-gradient(20px at top,#000 97%,#0000) bottom / calc(1.9 * 20px) 20px\n ",
759 "--mask-edge-scalloped-top": "\n linear-gradient(to bottom,#0000 20px,#000 0),\n radial-gradient(20px at bottom,#000 97%,#0000) top / calc(1.9 * 20px) 20px\n ",
760 "--mask-edge-scalloped-vertical": "\n linear-gradient(0deg,#0000 calc(2 * 20px),#000 0) 0 20px,\n radial-gradient(20px,#000 97%,#0000) 50% / calc(1.9 * 20px) calc(2 * 20px) repeat space\n ",
761 "--mask-edge-scalloped-left": "\n linear-gradient(to right,#0000 20px,#000 0),\n radial-gradient(20px at right,#000 97%,#0000) left / 20px calc(1.9 * 20px)\n ",
762 "--mask-edge-scalloped-right": "\n linear-gradient(to left,#0000 20px,#000 0),\n radial-gradient(20px at left,#000 97%,#0000) right / 20px calc(1.9 * 20px)\n ",
763 "--mask-edge-scalloped-horizontal": "\n linear-gradient(-90deg,#0000 calc(2 * 20px),#000 0) 20px,\n radial-gradient(20px,#000 97%,#0000) 50% / calc(2 * 20px) calc(1.9 * 20px) space repeat\n ",
764 "--mask-edge-drip-bottom": "\n radial-gradient(20px at bottom,#0000 97%,#000) 50% calc(100% - 20px) / calc(2 * 20px) 100% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 99% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
765 "--mask-edge-drip-top": "\n radial-gradient(20px at top,#0000 97%,#000) 50% 20px / calc(2 * 20px) 100% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 1% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
766 "--mask-edge-drip-vertical": "\n radial-gradient(20px at top ,#0000 97%,#000) 50% 20px / calc(2 * 20px) 51% repeat-x,\n radial-gradient(20px at bottom,#0000 97%,#000) 50% calc(100% - 20px) / calc(2 * 20px) 51% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 1% / calc(4 * 20px) calc(2 * 20px) repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 3*20px) 99% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
767 "--mask-edge-drip-left": "\n radial-gradient(20px at left,#0000 97%,#000) 20px 50% / 100% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 1% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
768 "--mask-edge-drip-right": "\n radial-gradient(20px at right,#0000 97%,#000) calc(100% - 20px) 50% / 100% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 99% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
769 "--mask-edge-drip-horizontal": "\n radial-gradient(20px at left ,#0000 97%,#000) 20px 50% / 51% calc(2 * 20px) repeat-y, \n radial-gradient(20px at right,#0000 97%,#000) calc(100% - 20px) 50% / 51% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 1% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 99% calc(50% - 3*20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
770 "--mask-edge-zig-zag-top": "conic-gradient(from 135deg at top,#0000,#000 1deg 90deg,#0000 91deg) 50% / calc(2 * 20px) 100%",
771 "--mask-edge-zig-zag-bottom": "conic-gradient(from -45deg at bottom,#0000,#000 1deg 90deg,#0000 91deg) 50% / calc(2 * 20px) 100%",
772 "--mask-edge-zig-zag-left": "conic-gradient(from 45deg at left,#0000,#000 1deg 90deg,#0000 91deg) 50% / 100% calc(2 * 20px)",
773 "--mask-edge-zig-zag-right": "conic-gradient(from -135deg at right,#0000,#000 1deg 90deg,#0000 91deg) 50% / 100% calc(2 * 20px)",
774 "--mask-edge-zig-zag-horizontal": "\n conic-gradient(from 45deg at left ,#0000,#000 1deg 90deg,#0000 91deg) left / 51% calc(2 * 20px) repeat-y,\n conic-gradient(from -135deg at right,#0000,#000 1deg 90deg,#0000 91deg) right / 51% calc(2 * 20px) repeat-y\n ",
775 "--mask-edge-zig-zag-vertical": "\n conic-gradient(from 135deg at top ,#0000,#000 1deg 90deg,#0000 91deg) top / calc(2 * 20px) 51% repeat-x,\n conic-gradient(from -45deg at bottom,#0000,#000 1deg 90deg,#0000 91deg) bottom / calc(2 * 20px) 51% repeat-x\n ",
776 "--mask-corner-cut-circles-1": "radial-gradient(1rem at 1rem 1rem,#0000 99%,#000) -1rem -1rem",
777 "--mask-corner-cut-circles-2": "radial-gradient(2rem at 2rem 2rem,#0000 99%,#000) -2rem -2rem",
778 "--mask-corner-cut-circles-3": "radial-gradient(4rem at 4rem 4rem,#0000 99%,#000) -4rem -4rem",
779 "--mask-corner-cut-squares-1": "conic-gradient(at calc(2*1rem) calc(2*1rem),#000 75%,#0000 0) -1rem -1rem",
780 "--mask-corner-cut-squares-2": "conic-gradient(at calc(2*2rem) calc(2*2rem),#000 75%,#0000 0) -2rem -2rem",
781 "--mask-corner-cut-squares-3": "conic-gradient(at calc(2*4rem) calc(2*4rem),#000 75%,#0000 0) -4rem -4rem",
782 "--mask-corner-cut-angles-1": "\n conic-gradient(from -45deg at 1rem 1rem,#0000 25%,#000 0) \n -1rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 1rem calc(100% - 1rem),#0000 25%,#000 0) \n -1rem 100%/100% 51% repeat-x\n ",
783 "--mask-corner-cut-angles-2": "\n conic-gradient(from -45deg at 2rem 2rem,#0000 25%,#000 0) \n -2rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 2rem calc(100% - 2rem),#0000 25%,#000 0) \n -2rem 100%/100% 51% repeat-x\n ",
784 "--mask-corner-cut-angles-3": "\n conic-gradient(from -45deg at 4rem 4rem,#0000 25%,#000 0) \n -4rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 4rem calc(100% - 4rem),#0000 25%,#000 0) \n -4rem 100%/100% 51% repeat-x\n ",
785 "animationFadeIn": "fade-in .5s var(--ease-3)",
786 "animationFadeIn@": "\n@keyframes fade-in {\n to { opacity: 1 }\n}",
787 "animationFadeInBloom": "fade-in-bloom 2s var(--ease-3)",
788 "animationFadeInBloom@": "\n@keyframes fade-in-bloom {\n 0% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(2) blur(10px) }\n100% { opacity: 1; filter: brightness(1) blur(0) }\n}",
789 "animationFadeInBloom@media:dark": "\n@keyframes fade-in-bloom {\n 0% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(0.5) blur(10px) }\n100% { opacity: 1; filter: brightness(1) blur(0) }\n}",
790 "animationFadeOut": "fade-out .5s var(--ease-3)",
791 "animationFadeOut@": "\n@keyframes fade-out {\n to { opacity: 0 }\n}",
792 "animationFadeOutBloom": "fade-out-bloom 2s var(--ease-3)",
793 "animationFadeOutBloom@": "\n@keyframes fade-out-bloom {\n100% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(2) blur(10px) }\n 0% { opacity: 1; filter: brightness(1) blur(0) }\n}",
794 "animationFadeOutBloom@media:dark": "\n@keyframes fade-out-bloom {\n100% { opacity: 0; filter: brightness(1) blur(20px) }\n 10% { opacity: 1; filter: brightness(0.5) blur(10px) }\n 0% { opacity: 1; filter: brightness(1) blur(0) }\n}",
795 "animationScaleUp": "scale-up .5s var(--ease-3)",
796 "animationScaleUp@": "\n@keyframes scale-up {\n to { transform: scale(1.25) }\n}",
797 "animationScaleDown": "scale-down .5s var(--ease-3)",
798 "animationScaleDown@": "\n@keyframes scale-down {\n to { transform: scale(.75) }\n}",
799 "animationSlideOutUp": "slide-out-up .5s var(--ease-3)",
800 "animationSlideOutUp@": "\n@keyframes slide-out-up {\n to { transform: translateY(-100%) }\n}",
801 "animationSlideOutDown": "slide-out-down .5s var(--ease-3)",
802 "animationSlideOutDown@": "\n@keyframes slide-out-down {\n to { transform: translateY(100%) }\n}",
803 "animationSlideOutRight": "slide-out-right .5s var(--ease-3)",
804 "animationSlideOutRight@": "\n@keyframes slide-out-right {\n to { transform: translateX(100%) }\n}",
805 "animationSlideOutLeft": "slide-out-left .5s var(--ease-3)",
806 "animationSlideOutLeft@": "\n@keyframes slide-out-left {\n to { transform: translateX(-100%) }\n}",
807 "animationSlideInUp": "slide-in-up .5s var(--ease-3)",
808 "animationSlideInUp@": "\n@keyframes slide-in-up {\n from { transform: translateY(100%) }\n}",
809 "animationSlideInDown": "slide-in-down .5s var(--ease-3)",
810 "animationSlideInDown@": "\n@keyframes slide-in-down {\n from { transform: translateY(-100%) }\n}",
811 "animationSlideInRight": "slide-in-right .5s var(--ease-3)",
812 "animationSlideInRight@": "\n@keyframes slide-in-right {\n from { transform: translateX(-100%) }\n}",
813 "animationSlideInLeft": "slide-in-left .5s var(--ease-3)",
814 "animationSlideInLeft@": "\n@keyframes slide-in-left {\n from { transform: translateX(100%) }\n}",
815 "animationShakeX": "shake-x .75s var(--ease-out-5)",
816 "animationShakeX@": "\n@keyframes shake-x {\n 0%, 100% { transform: translateX(0%) }\n 20% { transform: translateX(-5%) }\n 40% { transform: translateX(5%) }\n 60% { transform: translateX(-5%) }\n 80% { transform: translateX(5%) }\n}",
817 "animationShakeY": "shake-y .75s var(--ease-out-5)",
818 "animationShakeY@": "\n@keyframes shake-y {\n 0%, 100% { transform: translateY(0%) }\n 20% { transform: translateY(-5%) }\n 40% { transform: translateY(5%) }\n 60% { transform: translateY(-5%) }\n 80% { transform: translateY(5%) }\n}",
819 "animationSpin": "spin 2s linear infinite",
820 "animationSpin@": "\n@keyframes spin {\n to { transform: rotate(1turn) }\n}",
821 "animationPing": "ping 5s var(--ease-out-3) infinite",
822 "animationPing@": "\n@keyframes ping {\n 90%, 100% {\n transform: scale(2);\n opacity: 0;\n }\n}",
823 "animationBlink": "blink 1s var(--ease-out-3) infinite",
824 "animationBlink@": "\n@keyframes blink {\n 0%, 100% {\n opacity: 1\n }\n 50% {\n opacity: .5\n }\n}",
825 "animationFloat": "float 3s var(--ease-in-out-3) infinite",
826 "animationFloat@": "\n@keyframes float {\n 50% { transform: translateY(-25%) }\n}",
827 "animationBounce": "bounce 2s var(--ease-squish-2) infinite",
828 "animationBounce@": "\n@keyframes bounce {\n 25% { transform: translateY(-20%) }\n 40% { transform: translateY(-3%) }\n 0%, 60%, 100% { transform: translateY(0) }\n}",
829 "animationPulse": "pulse 2s var(--ease-out-3) infinite",
830 "animationPulse@": "\n@keyframes pulse {\n 50% { transform: scale(.9,.9) }\n}",
831 "size000": "-.5rem",
832 "size00": "-.25rem",
833 "size1": ".25rem",
834 "size2": ".5rem",
835 "size3": "1rem",
836 "size4": "1.25rem",
837 "size5": "1.5rem",
838 "size6": "1.75rem",
839 "size7": "2rem",
840 "size8": "3rem",
841 "size9": "4rem",
842 "size10": "5rem",
843 "size11": "7.5rem",
844 "size12": "10rem",
845 "size13": "15rem",
846 "size14": "20rem",
847 "size15": "30rem",
848 "sizeFluid1": "clamp(.5rem, 1vw, 1rem)",
849 "sizeFluid2": "clamp(1rem, 2vw, 1.5rem)",
850 "sizeFluid3": "clamp(1.5rem, 3vw, 2rem)",
851 "sizeFluid4": "clamp(2rem, 4vw, 3rem)",
852 "sizeFluid5": "clamp(4rem, 5vw, 5rem)",
853 "sizeFluid6": "clamp(5rem, 7vw, 7.5rem)",
854 "sizeFluid7": "clamp(7.5rem, 10vw, 10rem)",
855 "sizeFluid8": "clamp(10rem, 20vw, 15rem)",
856 "sizeFluid9": "clamp(15rem, 30vw, 20rem)",
857 "sizeFluid10": "clamp(20rem, 40vw, 30rem)",
858 "sizeContent1": "20ch",
859 "sizeContent2": "45ch",
860 "sizeContent3": "60ch",
861 "sizeHeader1": "20ch",
862 "sizeHeader2": "25ch",
863 "sizeHeader3": "35ch",
864 "sizeXxs": "240px",
865 "sizeXs": "360px",
866 "sizeSm": "480px",
867 "sizeMd": "768px",
868 "sizeLg": "1024px",
869 "sizeXl": "1440px",
870 "sizeXxl": "1920px",
871 "gray0": "#f8f9fa",
872 "gray1": "#f1f3f5",
873 "gray2": "#e9ecef",
874 "gray3": "#dee2e6",
875 "gray4": "#ced4da",
876 "gray5": "#adb5bd",
877 "gray6": "#868e96",
878 "gray7": "#495057",
879 "gray8": "#343a40",
880 "gray9": "#212529",
881 "gray10": "#16191d",
882 "gray11": "#0d0f12",
883 "gray12": "#030507",
884 "stone0": "#f8fafb",
885 "stone1": "#f2f4f6",
886 "stone2": "#ebedef",
887 "stone3": "#e0e4e5",
888 "stone4": "#d1d6d8",
889 "stone5": "#b1b6b9",
890 "stone6": "#979b9d",
891 "stone7": "#7e8282",
892 "stone8": "#666968",
893 "stone9": "#50514f",
894 "stone10": "#3a3a37",
895 "stone11": "#252521",
896 "stone12": "#121210",
897 "red0": "#fff5f5",
898 "red1": "#ffe3e3",
899 "red2": "#ffc9c9",
900 "red3": "#ffa8a8",
901 "red4": "#ff8787",
902 "red5": "#ff6b6b",
903 "red6": "#fa5252",
904 "red7": "#f03e3e",
905 "red8": "#e03131",
906 "red9": "#c92a2a",
907 "red10": "#b02525",
908 "red11": "#962020",
909 "red12": "#7d1a1a",
910 "pink0": "#fff0f6",
911 "pink1": "#ffdeeb",
912 "pink2": "#fcc2d7",
913 "pink3": "#faa2c1",
914 "pink4": "#f783ac",
915 "pink5": "#f06595",
916 "pink6": "#e64980",
917 "pink7": "#d6336c",
918 "pink8": "#c2255c",
919 "pink9": "#a61e4d",
920 "pink10": "#8c1941",
921 "pink11": "#731536",
922 "pink12": "#59102a",
923 "purple0": "#f8f0fc",
924 "purple1": "#f3d9fa",
925 "purple2": "#eebefa",
926 "purple3": "#e599f7",
927 "purple4": "#da77f2",
928 "purple5": "#cc5de8",
929 "purple6": "#be4bdb",
930 "purple7": "#ae3ec9",
931 "purple8": "#9c36b5",
932 "purple9": "#862e9c",
933 "purple10": "#702682",
934 "purple11": "#5a1e69",
935 "purple12": "#44174f",
936 "violet0": "#f3f0ff",
937 "violet1": "#e5dbff",
938 "violet2": "#d0bfff",
939 "violet3": "#b197fc",
940 "violet4": "#9775fa",
941 "violet5": "#845ef7",
942 "violet6": "#7950f2",
943 "violet7": "#7048e8",
944 "violet8": "#6741d9",
945 "violet9": "#5f3dc4",
946 "violet10": "#5235ab",
947 "violet11": "#462d91",
948 "violet12": "#3a2578",
949 "indigo0": "#edf2ff",
950 "indigo1": "#dbe4ff",
951 "indigo2": "#bac8ff",
952 "indigo3": "#91a7ff",
953 "indigo4": "#748ffc",
954 "indigo5": "#5c7cfa",
955 "indigo6": "#4c6ef5",
956 "indigo7": "#4263eb",
957 "indigo8": "#3b5bdb",
958 "indigo9": "#364fc7",
959 "indigo10": "#2f44ad",
960 "indigo11": "#283a94",
961 "indigo12": "#21307a",
962 "blue0": "#e7f5ff",
963 "blue1": "#d0ebff",
964 "blue2": "#a5d8ff",
965 "blue3": "#74c0fc",
966 "blue4": "#4dabf7",
967 "blue5": "#339af0",
968 "blue6": "#228be6",
969 "blue7": "#1c7ed6",
970 "blue8": "#1971c2",
971 "blue9": "#1864ab",
972 "blue10": "#145591",
973 "blue11": "#114678",
974 "blue12": "#0d375e",
975 "cyan0": "#e3fafc",
976 "cyan1": "#c5f6fa",
977 "cyan2": "#99e9f2",
978 "cyan3": "#66d9e8",
979 "cyan4": "#3bc9db",
980 "cyan5": "#22b8cf",
981 "cyan6": "#15aabf",
982 "cyan7": "#1098ad",
983 "cyan8": "#0c8599",
984 "cyan9": "#0b7285",
985 "cyan10": "#095c6b",
986 "cyan11": "#074652",
987 "cyan12": "#053038",
988 "teal0": "#e6fcf5",
989 "teal1": "#c3fae8",
990 "teal2": "#96f2d7",
991 "teal3": "#63e6be",
992 "teal4": "#38d9a9",
993 "teal5": "#20c997",
994 "teal6": "#12b886",
995 "teal7": "#0ca678",
996 "teal8": "#099268",
997 "teal9": "#087f5b",
998 "teal10": "#066649",
999 "teal11": "#054d37",
1000 "teal12": "#033325",
1001 "green0": "#ebfbee",
1002 "green1": "#d3f9d8",
1003 "green2": "#b2f2bb",
1004 "green3": "#8ce99a",
1005 "green4": "#69db7c",
1006 "green5": "#51cf66",
1007 "green6": "#40c057",
1008 "green7": "#37b24d",
1009 "green8": "#2f9e44",
1010 "green9": "#2b8a3e",
1011 "green10": "#237032",
1012 "green11": "#1b5727",
1013 "green12": "#133d1b",
1014 "lime0": "#f4fce3",
1015 "lime1": "#e9fac8",
1016 "lime2": "#d8f5a2",
1017 "lime3": "#c0eb75",
1018 "lime4": "#a9e34b",
1019 "lime5": "#94d82d",
1020 "lime6": "#82c91e",
1021 "lime7": "#74b816",
1022 "lime8": "#66a80f",
1023 "lime9": "#5c940d",
1024 "lime10": "#4c7a0b",
1025 "lime11": "#3c6109",
1026 "lime12": "#2c4706",
1027 "yellow0": "#fff9db",
1028 "yellow1": "#fff3bf",
1029 "yellow2": "#ffec99",
1030 "yellow3": "#ffe066",
1031 "yellow4": "#ffd43b",
1032 "yellow5": "#fcc419",
1033 "yellow6": "#fab005",
1034 "yellow7": "#f59f00",
1035 "yellow8": "#f08c00",
1036 "yellow9": "#e67700",
1037 "yellow10": "#b35c00",
1038 "yellow11": "#804200",
1039 "yellow12": "#663500",
1040 "orange0": "#fff4e6",
1041 "orange1": "#ffe8cc",
1042 "orange2": "#ffd8a8",
1043 "orange3": "#ffc078",
1044 "orange4": "#ffa94d",
1045 "orange5": "#ff922b",
1046 "orange6": "#fd7e14",
1047 "orange7": "#f76707",
1048 "orange8": "#e8590c",
1049 "orange9": "#d9480f",
1050 "orange10": "#bf400d",
1051 "orange11": "#99330b",
1052 "orange12": "#802b09",
1053 "choco0": "#fff8dc",
1054 "choco1": "#fce1bc",
1055 "choco2": "#f7ca9e",
1056 "choco3": "#f1b280",
1057 "choco4": "#e99b62",
1058 "choco5": "#df8545",
1059 "choco6": "#d46e25",
1060 "choco7": "#bd5f1b",
1061 "choco8": "#a45117",
1062 "choco9": "#8a4513",
1063 "choco10": "#703a13",
1064 "choco11": "#572f12",
1065 "choco12": "#3d210d",
1066 "brown0": "#faf4eb",
1067 "brown1": "#ede0d1",
1068 "brown2": "#e0cab7",
1069 "brown3": "#d3b79e",
1070 "brown4": "#c5a285",
1071 "brown5": "#b78f6d",
1072 "brown6": "#a87c56",
1073 "brown7": "#956b47",
1074 "brown8": "#825b3a",
1075 "brown9": "#6f4b2d",
1076 "brown10": "#5e3a21",
1077 "brown11": "#4e2b15",
1078 "brown12": "#422412",
1079 "sand0": "#f8fafb",
1080 "sand1": "#e6e4dc",
1081 "sand2": "#d5cfbd",
1082 "sand3": "#c2b9a0",
1083 "sand4": "#aea58c",
1084 "sand5": "#9a9178",
1085 "sand6": "#867c65",
1086 "sand7": "#736a53",
1087 "sand8": "#5f5746",
1088 "sand9": "#4b4639",
1089 "sand10": "#38352d",
1090 "sand11": "#252521",
1091 "sand12": "#121210",
1092 "camo0": "#f9fbe7",
1093 "camo1": "#e8ed9c",
1094 "camo2": "#d2df4e",
1095 "camo3": "#c2ce34",
1096 "camo4": "#b5bb2e",
1097 "camo5": "#a7a827",
1098 "camo6": "#999621",
1099 "camo7": "#8c851c",
1100 "camo8": "#7e7416",
1101 "camo9": "#6d6414",
1102 "camo10": "#5d5411",
1103 "camo11": "#4d460e",
1104 "camo12": "#36300a",
1105 "jungle0": "#ecfeb0",
1106 "jungle1": "#def39a",
1107 "jungle2": "#d0e884",
1108 "jungle3": "#c2dd6e",
1109 "jungle4": "#b5d15b",
1110 "jungle5": "#a8c648",
1111 "jungle6": "#9bbb36",
1112 "jungle7": "#8fb024",
1113 "jungle8": "#84a513",
1114 "jungle9": "#7a9908",
1115 "jungle10": "#658006",
1116 "jungle11": "#516605",
1117 "jungle12": "#3d4d04",
1118 "gray0Hsl": "210 17% 98%",
1119 "gray1Hsl": "210 17% 95%",
1120 "gray2Hsl": "210 16% 93%",
1121 "gray3Hsl": "210 14% 89%",
1122 "gray4Hsl": "210 14% 83%",
1123 "gray5Hsl": "210 11% 71%",
1124 "gray6Hsl": "210 7% 56%",
1125 "gray7Hsl": "210 9% 31%",
1126 "gray8Hsl": "210 10% 23%",
1127 "gray9Hsl": "210 11% 15%",
1128 "gray10Hsl": "214 14% 10%",
1129 "gray11Hsl": "216 16% 6%",
1130 "gray12Hsl": "210 40% 2%",
1131 "stone0Hsl": "200 27% 98%",
1132 "stone1Hsl": "210 18% 96%",
1133 "stone2Hsl": "210 11% 93%",
1134 "stone3Hsl": "192 9% 89%",
1135 "stone4Hsl": "197 8% 83%",
1136 "stone5Hsl": "202 5% 71%",
1137 "stone6Hsl": "200 3% 60%",
1138 "stone7Hsl": "180 2% 50%",
1139 "stone8Hsl": "160 1% 41%",
1140 "stone9Hsl": "90 1% 31%",
1141 "stone10Hsl": "60 3% 22%",
1142 "stone11Hsl": "60 6% 14%",
1143 "stone12Hsl": "60 6% 7%",
1144 "red0Hsl": "0 100% 98%",
1145 "red1Hsl": "0 100% 95%",
1146 "red2Hsl": "0 100% 89%",
1147 "red3Hsl": "0 100% 83%",
1148 "red4Hsl": "0 100% 76%",
1149 "red5Hsl": "0 100% 71%",
1150 "red6Hsl": "0 94% 65%",
1151 "red7Hsl": "0 86% 59%",
1152 "red8Hsl": "0 74% 54%",
1153 "red9Hsl": "0 65% 48%",
1154 "red10Hsl": "0 65% 42%",
1155 "red11Hsl": "0 65% 36%",
1156 "red12Hsl": "0 66% 30%",
1157 "pink0Hsl": "336 100% 97%",
1158 "pink1Hsl": "336 100% 94%",
1159 "pink2Hsl": "338 91% 87%",
1160 "pink3Hsl": "339 90% 81%",
1161 "pink4Hsl": "339 88% 74%",
1162 "pink5Hsl": "339 82% 67%",
1163 "pink6Hsl": "339 76% 59%",
1164 "pink7Hsl": "339 67% 52%",
1165 "pink8Hsl": "339 68% 45%",
1166 "pink9Hsl": "339 69% 38%",
1167 "pink10Hsl": "339 70% 32%",
1168 "pink11Hsl": "339 69% 27%",
1169 "pink12Hsl": "339 70% 21%",
1170 "purple0Hsl": "280 67% 96%",
1171 "purple1Hsl": "287 77% 92%",
1172 "purple2Hsl": "288 86% 86%",
1173 "purple3Hsl": "289 85% 78%",
1174 "purple4Hsl": "288 83% 71%",
1175 "purple5Hsl": "288 75% 64%",
1176 "purple6Hsl": "288 67% 58%",
1177 "purple7Hsl": "288 56% 52%",
1178 "purple8Hsl": "288 54% 46%",
1179 "purple9Hsl": "288 54% 40%",
1180 "purple10Hsl": "288 55% 33%",
1181 "purple11Hsl": "288 56% 26%",
1182 "purple12Hsl": "288 55% 20%",
1183 "violet0Hsl": "252 100% 97%",
1184 "violet1Hsl": "257 100% 93%",
1185 "violet2Hsl": "256 100% 87%",
1186 "violet3Hsl": "255 94% 79%",
1187 "violet4Hsl": "255 93% 72%",
1188 "violet5Hsl": "255 91% 67%",
1189 "violet6Hsl": "255 86% 63%",
1190 "violet7Hsl": "255 78% 60%",
1191 "violet8Hsl": "255 67% 55%",
1192 "violet9Hsl": "255 53% 50%",
1193 "violet10Hsl": "255 53% 44%",
1194 "violet11Hsl": "255 53% 37%",
1195 "violet12Hsl": "255 53% 31%",
1196 "indigo0Hsl": "223 100% 96%",
1197 "indigo1Hsl": "225 100% 93%",
1198 "indigo2Hsl": "228 100% 86%",
1199 "indigo3Hsl": "228 100% 78%",
1200 "indigo4Hsl": "228 96% 72%",
1201 "indigo5Hsl": "228 94% 67%",
1202 "indigo6Hsl": "228 89% 63%",
1203 "indigo7Hsl": "228 81% 59%",
1204 "indigo8Hsl": "228 69% 55%",
1205 "indigo9Hsl": "230 57% 50%",
1206 "indigo10Hsl": "230 57% 43%",
1207 "indigo11Hsl": "230 57% 37%",
1208 "indigo12Hsl": "230 57% 30%",
1209 "blue0Hsl": "205 100% 95%",
1210 "blue1Hsl": "206 100% 91%",
1211 "blue2Hsl": "206 100% 82%",
1212 "blue3Hsl": "206 96% 72%",
1213 "blue4Hsl": "207 91% 64%",
1214 "blue5Hsl": "207 86% 57%",
1215 "blue6Hsl": "208 80% 52%",
1216 "blue7Hsl": "208 77% 47%",
1217 "blue8Hsl": "209 77% 43%",
1218 "blue9Hsl": "209 75% 38%",
1219 "blue10Hsl": "209 76% 32%",
1220 "blue11Hsl": "209 75% 27%",
1221 "blue12Hsl": "209 76% 21%",
1222 "cyan0Hsl": "185 81% 94%",
1223 "cyan1Hsl": "185 84% 88%",
1224 "cyan2Hsl": "186 77% 77%",
1225 "cyan3Hsl": "187 74% 65%",
1226 "cyan4Hsl": "187 69% 55%",
1227 "cyan5Hsl": "188 72% 47%",
1228 "cyan6Hsl": "187 80% 42%",
1229 "cyan7Hsl": "188 83% 37%",
1230 "cyan8Hsl": "189 85% 32%",
1231 "cyan9Hsl": "189 85% 28%",
1232 "cyan10Hsl": "189 84% 23%",
1233 "cyan11Hsl": "190 84% 17%",
1234 "cyan12Hsl": "189 84% 12%",
1235 "teal0Hsl": "161 79% 95%",
1236 "teal1Hsl": "160 85% 87%",
1237 "teal2Hsl": "162 78% 77%",
1238 "teal3Hsl": "162 72% 65%",
1239 "teal4Hsl": "162 68% 54%",
1240 "teal5Hsl": "162 73% 46%",
1241 "teal6Hsl": "162 82% 40%",
1242 "teal7Hsl": "162 87% 35%",
1243 "teal8Hsl": "162 88% 30%",
1244 "teal9Hsl": "162 88% 26%",
1245 "teal10Hsl": "162 89% 21%",
1246 "teal11Hsl": "162 88% 16%",
1247 "teal12Hsl": "163 89% 11%",
1248 "green0Hsl": "131 67% 95%",
1249 "green1Hsl": "128 76% 90%",
1250 "green2Hsl": "128 71% 82%",
1251 "green3Hsl": "129 68% 73%",
1252 "green4Hsl": "130 61% 64%",
1253 "green5Hsl": "130 57% 56%",
1254 "green6Hsl": "131 50% 50%",
1255 "green7Hsl": "131 53% 46%",
1256 "green8Hsl": "131 54% 40%",
1257 "green9Hsl": "132 52% 35%",
1258 "green10Hsl": "132 52% 29%",
1259 "green11Hsl": "132 53% 22%",
1260 "green12Hsl": "131 53% 16%",
1261 "lime0Hsl": "79 81% 94%",
1262 "lime1Hsl": "80 83% 88%",
1263 "lime2Hsl": "81 81% 80%",
1264 "lime3Hsl": "82 75% 69%",
1265 "lime4Hsl": "83 73% 59%",
1266 "lime5Hsl": "84 69% 51%",
1267 "lime6Hsl": "85 74% 45%",
1268 "lime7Hsl": "85 79% 40%",
1269 "lime8Hsl": "86 84% 36%",
1270 "lime9Hsl": "85 84% 32%",
1271 "lime10Hsl": "85 83% 26%",
1272 "lime11Hsl": "85 83% 21%",
1273 "lime12Hsl": "85 84% 15%",
1274 "yellow0Hsl": "50 100% 93%",
1275 "yellow1Hsl": "49 100% 87%",
1276 "yellow2Hsl": "49 100% 80%",
1277 "yellow3Hsl": "48 100% 70%",
1278 "yellow4Hsl": "47 100% 62%",
1279 "yellow5Hsl": "45 97% 54%",
1280 "yellow6Hsl": "42 96% 50%",
1281 "yellow7Hsl": "39 100% 48%",
1282 "yellow8Hsl": "35 100% 47%",
1283 "yellow9Hsl": "31 100% 45%",
1284 "yellow10Hsl": "31 100% 35%",
1285 "yellow11Hsl": "31 100% 25%",
1286 "yellow12Hsl": "31 100% 20%",
1287 "orange0Hsl": "34 100% 95%",
1288 "orange1Hsl": "33 100% 90%",
1289 "orange2Hsl": "33 100% 83%",
1290 "orange3Hsl": "32 100% 74%",
1291 "orange4Hsl": "31 100% 65%",
1292 "orange5Hsl": "29 100% 58%",
1293 "orange6Hsl": "27 98% 54%",
1294 "orange7Hsl": "24 94% 50%",
1295 "orange8Hsl": "21 90% 48%",
1296 "orange9Hsl": "17 87% 45%",
1297 "orange10Hsl": "17 87% 40%",
1298 "orange11Hsl": "17 87% 32%",
1299 "orange12Hsl": "17 87% 27%",
1300 "choco0Hsl": "48 100% 93%",
1301 "choco1Hsl": "35 91% 86%",
1302 "choco2Hsl": "30 85% 79%",
1303 "choco3Hsl": "27 80% 72%",
1304 "choco4Hsl": "25 75% 65%",
1305 "choco5Hsl": "25 71% 57%",
1306 "choco6Hsl": "25 70% 49%",
1307 "choco7Hsl": "25 75% 42%",
1308 "choco8Hsl": "25 75% 37%",
1309 "choco9Hsl": "25 76% 31%",
1310 "choco10Hsl": "25 71% 26%",
1311 "choco11Hsl": "25 66% 21%",
1312 "choco12Hsl": "25 65% 15%",
1313 "brown0Hsl": "36 60% 95%",
1314 "brown1Hsl": "32 44% 87%",
1315 "brown2Hsl": "28 40% 80%",
1316 "brown3Hsl": "28 38% 72%",
1317 "brown4Hsl": "27 36% 65%",
1318 "brown5Hsl": "28 34% 57%",
1319 "brown6Hsl": "28 32% 50%",
1320 "brown7Hsl": "28 35% 43%",
1321 "brown8Hsl": "28 38% 37%",
1322 "brown9Hsl": "27 42% 31%",
1323 "brown10Hsl": "25 48% 25%",
1324 "brown11Hsl": "23 58% 19%",
1325 "brown12Hsl": "22 57% 16%",
1326 "sand0Hsl": "200 27% 98%",
1327 "sand1Hsl": "48 17% 88%",
1328 "sand2Hsl": "45 22% 79%",
1329 "sand3Hsl": "44 22% 69%",
1330 "sand4Hsl": "44 17% 62%",
1331 "sand5Hsl": "44 14% 54%",
1332 "sand6Hsl": "42 14% 46%",
1333 "sand7Hsl": "43 16% 39%",
1334 "sand8Hsl": "41 15% 32%",
1335 "sand9Hsl": "43 14% 26%",
1336 "sand10Hsl": "44 11% 20%",
1337 "sand11Hsl": "60 6% 14%",
1338 "sand12Hsl": "60 6% 7%",
1339 "camo0Hsl": "66 71% 95%",
1340 "camo1Hsl": "64 69% 77%",
1341 "camo2Hsl": "65 69% 59%",
1342 "camo3Hsl": "65 61% 51%",
1343 "camo4Hsl": "63 61% 46%",
1344 "camo5Hsl": "60 62% 41%",
1345 "camo6Hsl": "59 65% 36%",
1346 "camo7Hsl": "56 67% 33%",
1347 "camo8Hsl": "54 70% 29%",
1348 "camo9Hsl": "54 69% 25%",
1349 "camo10Hsl": "53 69% 22%",
1350 "camo11Hsl": "53 69% 18%",
1351 "camo12Hsl": "52 69% 13%",
1352 "jungle0Hsl": "74 98% 84%",
1353 "jungle1Hsl": "74 79% 78%",
1354 "jungle2Hsl": "74 68% 71%",
1355 "jungle3Hsl": "75 62% 65%",
1356 "jungle4Hsl": "74 56% 59%",
1357 "jungle5Hsl": "74 53% 53%",
1358 "jungle6Hsl": "74 55% 47%",
1359 "jungle7Hsl": "74 66% 42%",
1360 "jungle8Hsl": "74 79% 36%",
1361 "jungle9Hsl": "73 90% 32%",
1362 "jungle10Hsl": "73 91% 26%",
1363 "jungle11Hsl": "73 91% 21%",
1364 "jungle12Hsl": "73 90% 16%",
1365 "fontSans": "system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif",
1366 "fontSerif": "ui-serif,serif",
1367 "fontMono": "Dank Mono,Operator Mono,Inconsolata,Fira Mono,ui-monospace,SF Mono,Monaco,Droid Sans Mono,Source Code Pro,monospace",
1368 "fontWeight1": "100",
1369 "fontWeight2": "200",
1370 "fontWeight3": "300",
1371 "fontWeight4": "400",
1372 "fontWeight5": "500",
1373 "fontWeight6": "600",
1374 "fontWeight7": "700",
1375 "fontWeight8": "800",
1376 "fontWeight9": "900",
1377 "fontLineheight00": ".95",
1378 "fontLineheight0": "1.1",
1379 "fontLineheight1": "1.25",
1380 "fontLineheight2": "1.375",
1381 "fontLineheight3": "1.5",
1382 "fontLineheight4": "1.75",
1383 "fontLineheight5": "2",
1384 "fontLetterspacing0": "-.05em",
1385 "fontLetterspacing1": ".025em",
1386 "fontLetterspacing2": ".050em",
1387 "fontLetterspacing3": ".075em",
1388 "fontLetterspacing4": ".150em",
1389 "fontLetterspacing5": ".500em",
1390 "fontLetterspacing6": ".750em",
1391 "fontLetterspacing7": "1em",
1392 "fontSize00": ".5rem",
1393 "fontSize0": ".75rem",
1394 "fontSize1": "1rem",
1395 "fontSize2": "1.1rem",
1396 "fontSize3": "1.25rem",
1397 "fontSize4": "1.5rem",
1398 "fontSize5": "2rem",
1399 "fontSize6": "2.5rem",
1400 "fontSize7": "3rem",
1401 "fontSize8": "3.5rem",
1402 "fontSizeFluid0": "clamp(.75rem, 2vw, 1rem)",
1403 "fontSizeFluid1": "clamp(1rem, 4vw, 1.5rem)",
1404 "fontSizeFluid2": "clamp(1.5rem, 6vw, 2.5rem)",
1405 "fontSizeFluid3": "clamp(2rem, 9vw, 3.5rem)",
1406 "borderSize1": "1px",
1407 "borderSize2": "2px",
1408 "borderSize3": "5px",
1409 "borderSize4": "10px",
1410 "borderSize5": "25px",
1411 "radius1": "2px",
1412 "radius2": "5px",
1413 "radius3": "1rem",
1414 "radius4": "2rem",
1415 "radius5": "4rem",
1416 "radius6": "8rem",
1417 "radiusRound": "1e5px",
1418 "radiusBlob1": "30% 70% 70% 30% / 53% 30% 70% 47%",
1419 "radiusBlob2": "53% 47% 34% 66% / 63% 46% 54% 37%",
1420 "radiusBlob3": "37% 63% 56% 44% / 49% 56% 44% 51%",
1421 "radiusBlob4": "63% 37% 37% 63% / 43% 37% 63% 57%",
1422 "radiusBlob5": "49% 51% 48% 52% / 57% 44% 56% 43%",
1423 "radiusConditional1": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-1))",
1424 "radiusConditional2": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-2))",
1425 "radiusConditional3": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-3))",
1426 "radiusConditional4": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-4))",
1427 "radiusConditional5": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-5))",
1428 "radiusConditional6": "clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-6))",
1429 "ratioSquare": "1",
1430 "ratioLandscape": "4/3",
1431 "ratioPortrait": "3/4",
1432 "ratioWidescreen": "16/9",
1433 "ratioUltrawide": "18/5",
1434 "ratioGolden": "1.6180/1",
1435 "ease1": "cubic-bezier(.25, 0, .5, 1)",
1436 "ease2": "cubic-bezier(.25, 0, .4, 1)",
1437 "ease3": "cubic-bezier(.25, 0, .3, 1)",
1438 "ease4": "cubic-bezier(.25, 0, .2, 1)",
1439 "ease5": "cubic-bezier(.25, 0, .1, 1)",
1440 "easeIn1": "cubic-bezier(.25, 0, 1, 1)",
1441 "easeIn2": "cubic-bezier(.50, 0, 1, 1)",
1442 "easeIn3": "cubic-bezier(.70, 0, 1, 1)",
1443 "easeIn4": "cubic-bezier(.90, 0, 1, 1)",
1444 "easeIn5": "cubic-bezier(1, 0, 1, 1)",
1445 "easeOut1": "cubic-bezier(0, 0, .75, 1)",
1446 "easeOut2": "cubic-bezier(0, 0, .50, 1)",
1447 "easeOut3": "cubic-bezier(0, 0, .3, 1)",
1448 "easeOut4": "cubic-bezier(0, 0, .1, 1)",
1449 "easeOut5": "cubic-bezier(0, 0, 0, 1)",
1450 "easeInOut1": "cubic-bezier(.1, 0, .9, 1)",
1451 "easeInOut2": "cubic-bezier(.3, 0, .7, 1)",
1452 "easeInOut3": "cubic-bezier(.5, 0, .5, 1)",
1453 "easeInOut4": "cubic-bezier(.7, 0, .3, 1)",
1454 "easeInOut5": "cubic-bezier(.9, 0, .1, 1)",
1455 "easeElastic1": "cubic-bezier(.5, .75, .75, 1.25)",
1456 "easeElastic2": "cubic-bezier(.5, 1, .75, 1.25)",
1457 "easeElastic3": "cubic-bezier(.5, 1.25, .75, 1.25)",
1458 "easeElastic4": "cubic-bezier(.5, 1.5, .75, 1.25)",
1459 "easeElastic5": "cubic-bezier(.5, 1.75, .75, 1.25)",
1460 "easeSquish1": "cubic-bezier(.5, -.1, .1, 1.5)",
1461 "easeSquish2": "cubic-bezier(.5, -.3, .1, 1.5)",
1462 "easeSquish3": "cubic-bezier(.5, -.5, .1, 1.5)",
1463 "easeSquish4": "cubic-bezier(.5, -.7, .1, 1.5)",
1464 "easeSquish5": "cubic-bezier(.5, -.9, .1, 1.5)",
1465 "easeStep1": "steps(2)",
1466 "easeStep2": "steps(3)",
1467 "easeStep3": "steps(4)",
1468 "easeStep4": "steps(7)",
1469 "easeStep5": "steps(10)",
1470 "squircle1": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 18.75 18.75, 0 75, 0 S 150, 18.75 150, 75 131.25, 150 75, 150 0, 131.25 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
1471 "squircle2": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 13.500000000000004 13.500000000000004, 0 75, 0 S 150, 13.500000000000004 150, 75 136.5, 150 75, 150 0, 136.5 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
1472 "squircle3": "url(\"data:image/svg+xml,%3Csvg viewbox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d=' M 0, 75 C 0, 5.999999999999997 5.999999999999997, 0 75, 0 S 150, 5.999999999999997 150, 75 144, 150 75, 150 0, 144 0, 75 ' fill='%23FADB5F' transform='rotate( 0, 100, 100 ) translate( 25 25 )'%3E%3C/path%3E%3C/svg%3E\")",
1473 "gradient1": "linear-gradient(to bottom right,#1f005c, #5b0060, #870160, #ac255e, #ca485c, #e16b5c, #f39060, #ffb56b)",
1474 "gradient2": "linear-gradient(to bottom right,#48005c, #8300e2, #a269ff)",
1475 "gradient3": "\n radial-gradient(\n circle at top right, \n hsl(180 100% 50%), hsl(180 100% 50% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(328 100% 54%), hsl(328 100% 54% / 0%)\n )",
1476 "gradient4": "linear-gradient(to bottom right,#00F5A0,#00D9F5)",
1477 "gradient5": "conic-gradient(from -270deg at 75% 110%, fuchsia, floralwhite)",
1478 "gradient6": "conic-gradient(from -90deg at top left, black, white)",
1479 "gradient7": "linear-gradient(to bottom right,#72C6EF,#004E8F)",
1480 "gradient8": "conic-gradient(from 90deg at 50% 0%, #111, 50%, #222, #111)",
1481 "gradient9": "conic-gradient(from .5turn at bottom center, lightblue, white)",
1482 "gradient10": "conic-gradient(from 90deg at 40% -25%, #ffd700, #f79d03, #ee6907, #e6390a, #de0d0d, #d61039, #cf1261, #c71585, #cf1261, #d61039, #de0d0d, #ee6907, #f79d03, #ffd700, #ffd700, #ffd700)",
1483 "gradient11": "conic-gradient(at bottom left, deeppink, cyan)",
1484 "gradient12": "conic-gradient(from 90deg at 25% -10%, #ff4500, #d3f340, #7bee85, #afeeee, #7bee85)",
1485 "gradient13": "radial-gradient(circle at 50% 200%, #000142, #3b0083, #b300c3, #ff059f, #ff4661, #ffad86, #fff3c7)",
1486 "gradient14": "conic-gradient(at top right, lime, cyan)",
1487 "gradient15": "linear-gradient(to bottom right, #c7d2fe, #fecaca, #fef3c7)",
1488 "gradient16": "radial-gradient(circle at 50% -250%, #374151, #111827, #000)",
1489 "gradient17": "conic-gradient(from -90deg at 50% -25%, blue, blueviolet)",
1490 "gradient18": "\n linear-gradient(0deg, hsla(0 100% 50% / 80%), hsla(0 100% 50% / 0) 75%),\n linear-gradient(60deg, hsla(60 100% 50% / 80%), hsla(60 100% 50% / 0) 75%),\n linear-gradient(120deg, hsla(120 100% 50% / 80%), hsla(120 100% 50% / 0) 75%),\n linear-gradient(180deg, hsla(180 100% 50% / 80%), hsla(180 100% 50% / 0) 75%),\n linear-gradient(240deg, hsla(240 100% 50% / 80%), hsla(240 100% 50% / 0) 75%),\n linear-gradient(300deg, hsla(300 100% 50% / 80%), hsla(300 100% 50% / 0) 75%)\n ",
1491 "gradient19": "linear-gradient(to bottom right,#ffe259,#ffa751)",
1492 "gradient20": "conic-gradient(from -135deg at -10% center, #ffa500, #ff7715, #ff522a, #ff3f47, #ff5482, #ff69b4)",
1493 "gradient21": "conic-gradient(from -90deg at 25% 115%, #ff0000, #ff0066, #ff00cc, #cc00ff, #6600ff, #0000ff, #0000ff, #0000ff, #0000ff)",
1494 "gradient22": "linear-gradient(to bottom right,#acb6e5,#86fde8)",
1495 "gradient23": "linear-gradient(to bottom right,#536976,#292E49)",
1496 "gradient24": "conic-gradient(from .5turn at 0% 0%, #00c476, 10%, #82b0ff, 90%, #00c476)",
1497 "gradient25": "conic-gradient(at 125% 50%, #b78cf7, #ff7c94, #ffcf0d, #ff7c94, #b78cf7)",
1498 "gradient26": "linear-gradient(to bottom right,#9796f0,#fbc7d4)",
1499 "gradient27": "conic-gradient(from .5turn at bottom left, deeppink, rebeccapurple)",
1500 "gradient28": "conic-gradient(from -90deg at 50% 105%, white, orchid)",
1501 "gradient29": "\n radial-gradient(\n circle at top right, \n hsl(250 100% 85%), hsl(250 100% 85% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(220 90% 75%), hsl(220 90% 75% / 0%)\n )",
1502 "gradient30": "radial-gradient(\n circle at top right, \n hsl(150 100% 50%), hsl(150 100% 50% / 0%)\n ),\n radial-gradient(\n circle at bottom left, \n hsl(150 100% 84%), hsl(150 100% 84% / 0%)\n )",
1503 "noise1": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.005' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
1504 "noise2": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
1505 "noise3": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.25' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
1506 "noise4": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
1507 "noise5": "url(\"data:image/svg+xml,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E\")",
1508 "noiseFilter1": "contrast(300%) brightness(100%)",
1509 "noiseFilter2": "contrast(200%) brightness(150%)",
1510 "noiseFilter3": "contrast(200%) brightness(250%)",
1511 "noiseFilter4": "contrast(200%) brightness(500%)",
1512 "noiseFilter5": "contrast(200%) brightness(1000%)",
1513 "shadowColor": "220 3% 15%",
1514 "shadowStrength": "1%",
1515 "shadowColor@media:dark": "220 40% 2%",
1516 "shadowStrength@media:dark": "25%",
1517 "shadow1": "0 1px 2px -1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1518 "shadow2": "\n 0 3px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 7px 14px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%))",
1519 "shadow3": "\n 0 -1px 3px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 1px 2px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 2px 5px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 4px 12px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 12px 15px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
1520 "shadow4": "\n 0 -2px 5px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 1px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 2px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 9px 9px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 16px 16px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%))",
1521 "shadow5": "\n 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 2px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 10px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 20px 20px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 40px 40px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
1522 "shadow6": "\n 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),\n 0 3px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 7px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),\n 0 12px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),\n 0 22px 18px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),\n 0 41px 33px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%)),\n 0 100px 80px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%))",
1523 "innerShadow0": "inset 0 0 0 1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1524 "innerShadow1": "inset 0 1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1525 "innerShadow2": "inset 0 1px 4px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1526 "innerShadow3": "inset 0 2px 8px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1527 "innerShadow4": "inset 0 2px 14px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%))",
1528 "layer1": 1,
1529 "layer2": 2,
1530 "layer3": 3,
1531 "layer4": 4,
1532 "layer5": 5,
1533 "layerImportant": 2147483647,
1534 "maskEdgeScoopBottom": "radial-gradient(20px at 50% 100%,#0000 97%,#000) 50% / calc(1.9 * 20px) 100%",
1535 "maskEdgeScoopTop": "radial-gradient(20px at 50% 0,#0000 97%,#000) 50% / calc(1.9 * 20px) 100%",
1536 "maskEdgeScoopVertical": "radial-gradient(20px at 50% 20px,#0000 97%,#000) 50% -20px/ calc(1.9 * 20px) 100%",
1537 "maskEdgeScoopLeft": "radial-gradient(20px at 0 50%,#0000 97%,#000) 50%/ 100% calc(1.9 * 20px)",
1538 "maskEdgeScoopRight": "radial-gradient(20px at 100% 50%,#0000 97%,#000) 50%/ 100% calc(1.9 * 20px)",
1539 "maskEdgeScoopHorizontal": "radial-gradient(20px at 20px 50%,#0000 97%,#000) -20px/ 100% calc(1.9 * 20px)",
1540 "maskEdgeScalloped": "\n radial-gradient(farthest-side,#000 97%,#0000) 0 0 / 20px 20px round,\n linear-gradient(#000 0 0) 50%/calc(100% - 20px) calc(100% - 20px) no-repeat\n ",
1541 "maskEdgeScallopedBottom": "\n linear-gradient(to top,#0000 20px,#000 0),\n radial-gradient(20px at top,#000 97%,#0000) bottom / calc(1.9 * 20px) 20px\n ",
1542 "maskEdgeScallopedTop": "\n linear-gradient(to bottom,#0000 20px,#000 0),\n radial-gradient(20px at bottom,#000 97%,#0000) top / calc(1.9 * 20px) 20px\n ",
1543 "maskEdgeScallopedVertical": "\n linear-gradient(0deg,#0000 calc(2 * 20px),#000 0) 0 20px,\n radial-gradient(20px,#000 97%,#0000) 50% / calc(1.9 * 20px) calc(2 * 20px) repeat space\n ",
1544 "maskEdgeScallopedLeft": "\n linear-gradient(to right,#0000 20px,#000 0),\n radial-gradient(20px at right,#000 97%,#0000) left / 20px calc(1.9 * 20px)\n ",
1545 "maskEdgeScallopedRight": "\n linear-gradient(to left,#0000 20px,#000 0),\n radial-gradient(20px at left,#000 97%,#0000) right / 20px calc(1.9 * 20px)\n ",
1546 "maskEdgeScallopedHorizontal": "\n linear-gradient(-90deg,#0000 calc(2 * 20px),#000 0) 20px,\n radial-gradient(20px,#000 97%,#0000) 50% / calc(2 * 20px) calc(1.9 * 20px) space repeat\n ",
1547 "maskEdgeDripBottom": "\n radial-gradient(20px at bottom,#0000 97%,#000) 50% calc(100% - 20px) / calc(2 * 20px) 100% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 99% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
1548 "maskEdgeDripTop": "\n radial-gradient(20px at top,#0000 97%,#000) 50% 20px / calc(2 * 20px) 100% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 1% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
1549 "maskEdgeDripVertical": "\n radial-gradient(20px at top ,#0000 97%,#000) 50% 20px / calc(2 * 20px) 51% repeat-x,\n radial-gradient(20px at bottom,#0000 97%,#000) 50% calc(100% - 20px) / calc(2 * 20px) 51% repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 20px) 1% / calc(4 * 20px) calc(2 * 20px) repeat-x,\n radial-gradient(20px at 25% 50%,#000 97%,#0000) calc(50% - 3*20px) 99% / calc(4 * 20px) calc(2 * 20px) repeat-x\n ",
1550 "maskEdgeDripLeft": "\n radial-gradient(20px at left,#0000 97%,#000) 20px 50% / 100% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 1% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
1551 "maskEdgeDripRight": "\n radial-gradient(20px at right,#0000 97%,#000) calc(100% - 20px) 50% / 100% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 99% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
1552 "maskEdgeDripHorizontal": "\n radial-gradient(20px at left ,#0000 97%,#000) 20px 50% / 51% calc(2 * 20px) repeat-y, \n radial-gradient(20px at right,#0000 97%,#000) calc(100% - 20px) 50% / 51% calc(2 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 1% calc(50% - 20px) / calc(2 * 20px) calc(4 * 20px) repeat-y,\n radial-gradient(20px at 50% 25%,#000 97%,#0000) 99% calc(50% - 3*20px) / calc(2 * 20px) calc(4 * 20px) repeat-y\n ",
1553 "maskEdgeZigZagTop": "conic-gradient(from 135deg at top,#0000,#000 1deg 90deg,#0000 91deg) 50% / calc(2 * 20px) 100%",
1554 "maskEdgeZigZagBottom": "conic-gradient(from -45deg at bottom,#0000,#000 1deg 90deg,#0000 91deg) 50% / calc(2 * 20px) 100%",
1555 "maskEdgeZigZagLeft": "conic-gradient(from 45deg at left,#0000,#000 1deg 90deg,#0000 91deg) 50% / 100% calc(2 * 20px)",
1556 "maskEdgeZigZagRight": "conic-gradient(from -135deg at right,#0000,#000 1deg 90deg,#0000 91deg) 50% / 100% calc(2 * 20px)",
1557 "maskEdgeZigZagHorizontal": "\n conic-gradient(from 45deg at left ,#0000,#000 1deg 90deg,#0000 91deg) left / 51% calc(2 * 20px) repeat-y,\n conic-gradient(from -135deg at right,#0000,#000 1deg 90deg,#0000 91deg) right / 51% calc(2 * 20px) repeat-y\n ",
1558 "maskEdgeZigZagVertical": "\n conic-gradient(from 135deg at top ,#0000,#000 1deg 90deg,#0000 91deg) top / calc(2 * 20px) 51% repeat-x,\n conic-gradient(from -45deg at bottom,#0000,#000 1deg 90deg,#0000 91deg) bottom / calc(2 * 20px) 51% repeat-x\n ",
1559 "maskCornerCutCircles1": "radial-gradient(1rem at 1rem 1rem,#0000 99%,#000) -1rem -1rem",
1560 "maskCornerCutCircles2": "radial-gradient(2rem at 2rem 2rem,#0000 99%,#000) -2rem -2rem",
1561 "maskCornerCutCircles3": "radial-gradient(4rem at 4rem 4rem,#0000 99%,#000) -4rem -4rem",
1562 "maskCornerCutSquares1": "conic-gradient(at calc(2*1rem) calc(2*1rem),#000 75%,#0000 0) -1rem -1rem",
1563 "maskCornerCutSquares2": "conic-gradient(at calc(2*2rem) calc(2*2rem),#000 75%,#0000 0) -2rem -2rem",
1564 "maskCornerCutSquares3": "conic-gradient(at calc(2*4rem) calc(2*4rem),#000 75%,#0000 0) -4rem -4rem",
1565 "maskCornerCutAngles1": "\n conic-gradient(from -45deg at 1rem 1rem,#0000 25%,#000 0) \n -1rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 1rem calc(100% - 1rem),#0000 25%,#000 0) \n -1rem 100%/100% 51% repeat-x\n ",
1566 "maskCornerCutAngles2": "\n conic-gradient(from -45deg at 2rem 2rem,#0000 25%,#000 0) \n -2rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 2rem calc(100% - 2rem),#0000 25%,#000 0) \n -2rem 100%/100% 51% repeat-x\n ",
1567 "maskCornerCutAngles3": "\n conic-gradient(from -45deg at 4rem 4rem,#0000 25%,#000 0) \n -4rem 0 /100% 51% repeat-x,\n conic-gradient(from 135deg at 4rem calc(100% - 4rem),#0000 25%,#000 0) \n -4rem 100%/100% 51% repeat-x\n "
1568}
\No newline at end of file