vowel 0.0.2 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/.prettierrc +8 -0
  2. package/.vscode/settings.json +3 -0
  3. package/README.md +123 -27
  4. package/bin.js +30 -0
  5. package/content/.cache.json +627 -0
  6. package/content/.obsidian/app.json +3 -0
  7. package/content/.obsidian/appearance.json +3 -0
  8. package/content/.obsidian/core-plugins-migration.json +30 -0
  9. package/content/.obsidian/core-plugins.json +20 -0
  10. package/content/.obsidian/workspace.json +168 -0
  11. package/content/about.md +3 -0
  12. package/content/assets/open-props.css +1630 -0
  13. package/content/assets/styles-2.css +128 -0
  14. package/content/assets/styles-3.css +275 -0
  15. package/content/docs/file-structure.md +31 -0
  16. package/content/docs/folder-settings.md +22 -0
  17. package/content/docs/home.md +8 -0
  18. package/content/docs/images.md +10 -0
  19. package/content/docs/pages.md +64 -0
  20. package/content/docs/quickstart.md +52 -0
  21. package/content/docs/run-build-deploy.md +20 -0
  22. package/content/docs/settings.md +4 -0
  23. package/content/docs/styling.md +10 -0
  24. package/content/docs/taxonomies.md +37 -0
  25. package/content/home.md +73 -0
  26. package/content/roadmap.md +81 -0
  27. package/content/settings.md +12 -0
  28. package/content/vercel.json +5 -0
  29. package/jsconfig.json +18 -0
  30. package/package.json +37 -19
  31. package/server.js +80 -0
  32. package/src/app.d.ts +12 -0
  33. package/src/app.html +12 -0
  34. package/src/lib/components/Breadcrumbs.svelte +19 -0
  35. package/src/lib/components/DefaultStyles.svelte +126 -0
  36. package/src/lib/components/FrontMatterTaxonomy.svelte +48 -0
  37. package/src/lib/components/Frontmatter.svelte +54 -0
  38. package/src/lib/components/FrontmatterProperty.svelte +72 -0
  39. package/src/lib/components/Markdown/Image.svelte +48 -0
  40. package/src/lib/components/Markdown/Link.svelte +10 -0
  41. package/src/lib/components/Markdown/LinkPreview.svelte +39 -0
  42. package/src/lib/components/Markdown/Text.svelte +6 -0
  43. package/src/lib/components/Markdown/index.svelte +84 -0
  44. package/src/lib/components/Markdown/validators.js +29 -0
  45. package/src/lib/components/Nav.svelte +39 -0
  46. package/src/lib/components/Page.svelte +59 -0
  47. package/src/lib/components/Sitemap.svelte +38 -0
  48. package/src/lib/components/index.js +9 -0
  49. package/src/lib/index.js +1 -0
  50. package/src/lib/utilities/buildURL.js +18 -0
  51. package/src/lib/utilities/checkFileExists.js +16 -0
  52. package/src/lib/utilities/createFolderClass.js +4 -0
  53. package/src/lib/utilities/createPageClass.js +4 -0
  54. package/src/lib/utilities/getFileLabel.js +18 -0
  55. package/src/lib/utilities/getFolder.js +16 -0
  56. package/src/lib/utilities/getFolderLabel.js +8 -0
  57. package/src/lib/utilities/getPage.js +24 -0
  58. package/src/lib/utilities/getPagesByFolder.js +93 -0
  59. package/src/lib/utilities/index.js +20 -0
  60. package/src/lib/utilities/isActiveLink.js +12 -0
  61. package/src/lib/utilities/isObject.js +8 -0
  62. package/src/lib/utilities/loadCache.js +28 -0
  63. package/src/lib/utilities/mutateMarkdownAST.js +59 -0
  64. package/src/lib/utilities/mutateMarkdownFrontmatter.js +115 -0
  65. package/src/lib/utilities/parseDate.js +43 -0
  66. package/src/lib/utilities/processMarkdownFiles.js +212 -0
  67. package/src/lib/utilities/readMarkdownFile.js +134 -0
  68. package/src/lib/utilities/regexPatterns.js +12 -0
  69. package/src/lib/utilities/resolveHomeDirPath.js +5 -0
  70. package/src/lib/utilities/writeCache.js +14 -0
  71. package/src/routes/[...path]/+layout.server.js +71 -0
  72. package/src/routes/[...path]/+page.server.js +22 -0
  73. package/src/routes/[...path]/+page.svelte +125 -0
  74. package/src/routes/feed.xml/+server.js +120 -0
  75. package/src/routes/robots.txt/+server.js +54 -0
  76. package/src/routes/sitemap.xml/+server.js +68 -0
  77. package/static/favicon.png +0 -0
  78. package/static/styles.css +0 -0
  79. package/svelte.config.js +32 -0
  80. package/vercel.json +5 -0
  81. package/vite.config.js +72 -0
  82. package/index.js +0 -28
@@ -0,0 +1,1630 @@
1
+ :where(html) {
2
+ --link: var(--indigo-7);
3
+ --link-visited: var(--purple-7);
4
+ --text-1: var(--gray-12);
5
+ --text-2: var(--gray-7);
6
+ --surface-1: var(--gray-0);
7
+ --surface-2: var(--gray-2);
8
+ --surface-3: var(--gray-3);
9
+ --surface-4: var(--gray-4);
10
+ --scrollthumb-color: var(--gray-7);
11
+ -webkit-text-size-adjust: none;
12
+ accent-color: var(--brand, var(--link));
13
+ background-color: var(--surface-1);
14
+ block-size: 100%;
15
+ caret-color: var(--brand, var(--link));
16
+ color: var(--text-1);
17
+ color-scheme: light;
18
+ font-family: var(--font-sans);
19
+ line-height: var(--font-lineheight-3);
20
+ scrollbar-color: var(--scrollthumb-color) transparent;
21
+ }
22
+ @media (dynamic-range: high) or (color-gamut: p3) {
23
+ @supports (color: color(display-p3 0 0 0)) {
24
+ :where(html) {
25
+ --link: color(display-p3 0.1 0.4 1);
26
+ --link-visited: color(display-p3 0.6 0.2 1);
27
+ }
28
+ }
29
+ }
30
+ :where(html) :where(dialog) {
31
+ background-color: var(--surface-1);
32
+ }
33
+ :where(html) :where(button, .btn) {
34
+ --_highlight: var(--_highlight-light);
35
+ --_bg: var(--_bg-light);
36
+ --_ink-shadow: var(--_ink-shadow-light);
37
+ }
38
+ :where(html) :where(button, .btn) :where([type="reset"]) {
39
+ --_text: var(--red-6);
40
+ --_border: var(--red-3);
41
+ }
42
+ :where(html)
43
+ :where(
44
+ button,
45
+ .btn,
46
+ input:is([type="button"], [type="submit"], [type="reset"])
47
+ )[disabled] {
48
+ --_text: var(--gray-6);
49
+ }
50
+ :where(html)
51
+ :where(
52
+ textarea,
53
+ select,
54
+ input:not([type="button"], [type="submit"], [type="reset"])
55
+ ) {
56
+ background-color: var(--surface-2);
57
+ }
58
+ @media (prefers-color-scheme: dark) {
59
+ :where(html) {
60
+ --link: var(--indigo-3);
61
+ --link-visited: var(--purple-3);
62
+ --text-1: var(--gray-1);
63
+ --text-2: var(--gray-4);
64
+ --surface-1: var(--gray-9);
65
+ --surface-2: var(--gray-8);
66
+ --surface-3: var(--gray-7);
67
+ --surface-4: var(--gray-6);
68
+ --scrollthumb-color: var(--gray-6);
69
+ --shadow-strength: 10%;
70
+ --shadow-color: 220 40% 2%;
71
+ color-scheme: dark;
72
+ }
73
+ }
74
+ :where(a[href]) {
75
+ color: var(--brand, var(--link));
76
+ }
77
+ :where(a[href]):where(:visited) {
78
+ color: var(--link-visited);
79
+ }
80
+ :focus-visible {
81
+ outline-color: var(--brand, var(--link));
82
+ }
83
+ *,
84
+ :after,
85
+ :before {
86
+ box-sizing: border-box;
87
+ }
88
+ :where(:not(dialog)) {
89
+ margin: 0;
90
+ }
91
+ :where(:not(fieldset, progress, meter)) {
92
+ background-origin: border-box;
93
+ background-repeat: no-repeat;
94
+ border-style: solid;
95
+ border-width: 0;
96
+ }
97
+ @media (prefers-reduced-motion: no-preference) {
98
+ :where(html) {
99
+ scroll-behavior: smooth;
100
+ }
101
+ }
102
+ @media (prefers-reduced-motion: no-preference) {
103
+ :where(:focus-visible) {
104
+ transition: outline-offset 145ms var(--ease-2);
105
+ }
106
+ :where(:not(:active):focus-visible) {
107
+ transition-duration: 0.25s;
108
+ }
109
+ }
110
+ :where(:not(:active):focus-visible) {
111
+ outline-offset: 5px;
112
+ }
113
+ :where(body) {
114
+ min-block-size: 100%;
115
+ }
116
+ :where(h1, h2, h3, h4, h5, h6) {
117
+ text-wrap: balance;
118
+ font-weight: var(--font-weight-9);
119
+ line-height: var(--font-lineheight-1);
120
+ }
121
+ :where(h1) {
122
+ font-size: var(--font-size-8);
123
+ max-inline-size: var(--size-header-1);
124
+ }
125
+ :where(h2) {
126
+ font-size: var(--font-size-6);
127
+ max-inline-size: var(--size-header-2);
128
+ }
129
+ :where(h3) {
130
+ font-size: var(--font-size-5);
131
+ }
132
+ :where(h4) {
133
+ font-size: var(--font-size-4);
134
+ }
135
+ :where(h5) {
136
+ font-size: var(--font-size-3);
137
+ }
138
+ :where(h3, h4, h5, h6, dt) {
139
+ max-inline-size: var(--size-header-3);
140
+ }
141
+ :where(p, ul, ol, dl, h6) {
142
+ font-size: var(--font-size-2);
143
+ }
144
+ :where(a, u, ins, abbr) {
145
+ text-underline-offset: 1px;
146
+ }
147
+ @supports (-moz-appearance: none) {
148
+ :where(a, u, ins, abbr) {
149
+ text-underline-offset: 2px;
150
+ }
151
+ }
152
+ :where(
153
+ a[href],
154
+ area,
155
+ button,
156
+ input:not(
157
+ [type="text"],
158
+ [type="email"],
159
+ [type="number"],
160
+ [type="password"],
161
+ [type=""],
162
+ [type="tel"],
163
+ [type="url"]
164
+ ),
165
+ label[for],
166
+ select,
167
+ summary,
168
+ [tabindex]:not([tabindex*="-"])
169
+ ) {
170
+ cursor: pointer;
171
+ }
172
+ :where(
173
+ a[href],
174
+ area,
175
+ button,
176
+ input,
177
+ label[for],
178
+ select,
179
+ summary,
180
+ textarea,
181
+ [tabindex]:not([tabindex*="-"])
182
+ ) {
183
+ -webkit-tap-highlight-color: transparent;
184
+ touch-action: manipulation;
185
+ }
186
+ :where(a) {
187
+ margin-block: calc(var(--size-1) * -1);
188
+ margin-inline: calc(var(--size-1) * -1);
189
+ padding-block: var(--size-1);
190
+ padding-inline: var(--size-1);
191
+ }
192
+ :where(a):where([href]) {
193
+ text-decoration-color: var(--indigo-2);
194
+ }
195
+ :where(a):where([href]):where(:visited) {
196
+ text-decoration-color: var(--purple-2);
197
+ }
198
+ :where(a):where(:not(:hover)) {
199
+ text-decoration: inherit;
200
+ }
201
+ :where(img, svg, video, canvas, audio, iframe, embed, object) {
202
+ display: block;
203
+ }
204
+ :where(img, svg, video) {
205
+ block-size: auto;
206
+ max-inline-size: 100%;
207
+ }
208
+ :where(input, button, textarea, select),
209
+ :where(input[type="file"])::-webkit-file-upload-button {
210
+ color: inherit;
211
+ font: inherit;
212
+ font-size: inherit;
213
+ letter-spacing: inherit;
214
+ }
215
+ ::placeholder {
216
+ color: var(--gray-7);
217
+ opacity: 0.75;
218
+ }
219
+ :where(input:not([type="range"]), textarea) {
220
+ padding-block: var(--size-1);
221
+ padding-inline: var(--size-2);
222
+ }
223
+ :where(select) {
224
+ padding-block: 0.75ch;
225
+ padding-inline: var(--size-relative-4) 0;
226
+ }
227
+ :where(
228
+ textarea,
229
+ select,
230
+ input:not([type="button"], [type="submit"], [type="reset"])
231
+ ) {
232
+ background-color: var(--surface-2);
233
+ border-radius: var(--radius-2);
234
+ }
235
+ :where(textarea) {
236
+ resize: block;
237
+ }
238
+ :where(input[type="checkbox"], input[type="radio"]) {
239
+ block-size: var(--size-3);
240
+ inline-size: var(--size-3);
241
+ }
242
+ :where(svg:not([width])) {
243
+ inline-size: var(--size-10);
244
+ }
245
+ :where(code, kbd, samp, pre) {
246
+ font-family: var(--font-mono);
247
+ }
248
+ :where(:not(pre) > code, kbd) {
249
+ white-space: nowrap;
250
+ }
251
+ :where(pre) {
252
+ direction: ltr;
253
+ max-inline-size: max-content;
254
+ min-inline-size: 0;
255
+ white-space: pre;
256
+ writing-mode: lr;
257
+ }
258
+ :where(:not(pre) > code) {
259
+ background: var(--surface-2);
260
+ border-radius: var(--radius-2);
261
+ padding: var(--size-1) var(--size-2);
262
+ writing-mode: lr;
263
+ }
264
+ :where(kbd, var) {
265
+ border-color: var(--surface-4);
266
+ border-radius: var(--radius-2);
267
+ border-width: var(--border-size-1);
268
+ padding: var(--size-1) var(--size-2);
269
+ }
270
+ :where(mark) {
271
+ border-radius: var(--radius-2);
272
+ padding-inline: var(--size-1);
273
+ }
274
+ :where(ol, ul) {
275
+ padding-inline-start: var(--size-8);
276
+ }
277
+ :where(li) {
278
+ padding-inline-start: var(--size-2);
279
+ }
280
+ :where(li, dd, figcaption) {
281
+ max-inline-size: var(--size-content-2);
282
+ }
283
+ :where(p) {
284
+ text-wrap: pretty;
285
+ max-inline-size: var(--size-content-3);
286
+ }
287
+ :where(dt, summary) {
288
+ font-weight: var(--font-weight-7);
289
+ }
290
+ :where(dt:not(:first-of-type)) {
291
+ margin-block-start: var(--size-5);
292
+ }
293
+ :where(small) {
294
+ font-size: max(0.5em, var(--font-size-0));
295
+ max-inline-size: var(--size-content-1);
296
+ }
297
+ :where(hr) {
298
+ background-color: var(--surface-3);
299
+ height: var(--border-size-2);
300
+ margin-block: var(--size-fluid-5);
301
+ }
302
+ :where(figure) {
303
+ display: grid;
304
+ gap: var(--size-2);
305
+ place-items: center;
306
+ }
307
+ :where(figure) > :where(figcaption) {
308
+ text-wrap: balance;
309
+ font-size: var(--font-size-1);
310
+ }
311
+ :where(blockquote, :not(blockquote) > cite) {
312
+ border-inline-start-width: var(--border-size-3);
313
+ }
314
+ :where(blockquote) {
315
+ display: grid;
316
+ gap: var(--size-3);
317
+ max-inline-size: var(--size-content-2);
318
+ padding-block: var(--size-3);
319
+ padding-inline: var(--size-4);
320
+ }
321
+ :where(:not(blockquote) > cite) {
322
+ padding-inline-start: var(--size-2);
323
+ }
324
+ :where(summary) {
325
+ background: var(--surface-3);
326
+ border-radius: var(--radius-2);
327
+ margin: calc(var(--size-2) * -1) calc(var(--size-3) * -1);
328
+ padding: var(--size-2) var(--size-3);
329
+ }
330
+ :where(details) {
331
+ background: var(--surface-2);
332
+ border-radius: var(--radius-2);
333
+ padding-block: var(--size-2);
334
+ padding-inline: var(--size-3);
335
+ }
336
+ :where(details[open] > summary) {
337
+ border-end-end-radius: 0;
338
+ border-end-start-radius: 0;
339
+ margin-bottom: var(--size-2);
340
+ }
341
+ :where(fieldset) {
342
+ border: var(--border-size-1) solid var(--surface-4);
343
+ border-radius: var(--radius-2);
344
+ }
345
+ :where(del) {
346
+ background: var(--red-9);
347
+ color: var(--red-2);
348
+ }
349
+ :where(ins) {
350
+ background: var(--green-9);
351
+ color: var(--green-1);
352
+ }
353
+ :where(abbr) {
354
+ text-decoration-color: var(--blue-5);
355
+ }
356
+ :where(dialog) {
357
+ background-color: var(--surface-1);
358
+ border-radius: var(--radius-3);
359
+ box-shadow: var(--shadow-6);
360
+ color: inherit;
361
+ }
362
+ :where(dialog)::backdrop {
363
+ backdrop-filter: blur(25px);
364
+ }
365
+ :where(html[\:has\(dialog\[open\]\)]) {
366
+ overflow: hidden;
367
+ }
368
+ :where(html:has(dialog[open])) {
369
+ overflow: hidden;
370
+ }
371
+ :where(menu) {
372
+ display: flex;
373
+ gap: var(--size-3);
374
+ padding-inline-start: 0;
375
+ }
376
+ :where(sup) {
377
+ font-size: 0.5em;
378
+ }
379
+ :where(table) {
380
+ --nice-inner-radius: calc(var(--radius-3) - 2px);
381
+ background: var(--surface-2);
382
+ border: 1px solid var(--surface-2);
383
+ border-radius: var(--radius-3);
384
+ width: fit-content;
385
+ }
386
+ :where(table[\:not-has\(tfoot\)] tr:last-child td:first-child) {
387
+ border-end-start-radius: var(--nice-inner-radius);
388
+ }
389
+ :where(table:not(:has(tfoot)) tr:last-child td:first-child) {
390
+ border-end-start-radius: var(--nice-inner-radius);
391
+ }
392
+ :where(table[\:not-has\(tfoot\)] tr:last-child td:last-child) {
393
+ border-end-end-radius: var(--nice-inner-radius);
394
+ }
395
+ :where(table:not(:has(tfoot)) tr:last-child td:last-child) {
396
+ border-end-end-radius: var(--nice-inner-radius);
397
+ }
398
+ :where(table thead tr:first-child th:first-child) {
399
+ border-start-start-radius: var(--nice-inner-radius);
400
+ }
401
+ :where(table thead tr:first-child th:last-child) {
402
+ border-start-end-radius: var(--nice-inner-radius);
403
+ }
404
+ :where(tfoot tr:last-child :is(th, td):first-of-type) {
405
+ border-end-start-radius: var(--nice-inner-radius);
406
+ }
407
+ :where(tfoot tr:last-child :is(th, td):last-of-type) {
408
+ border-end-end-radius: var(--nice-inner-radius);
409
+ }
410
+ :where(th) {
411
+ background-color: var(--surface-2);
412
+ color: var(--text-1);
413
+ }
414
+ :where(table :is(a, button, [contenteditable]):is(:focus-visible)) {
415
+ outline-offset: -2px;
416
+ }
417
+ :where(td) {
418
+ text-wrap: pretty;
419
+ background: var(--surface-1);
420
+ max-inline-size: var(--size-content-2);
421
+ }
422
+ :where(td, th) {
423
+ padding: var(--size-2);
424
+ text-align: left;
425
+ }
426
+ :where(:is(td, th):not([align])) {
427
+ text-align: center;
428
+ }
429
+ :where(thead) {
430
+ border-collapse: collapse;
431
+ }
432
+ :where(table tr:hover td),
433
+ :where(tbody tr:nth-child(2n):hover td) {
434
+ background-color: var(--gray-10);
435
+ }
436
+ @media (prefers-color-scheme: light) {
437
+ :where(table tr:hover td),
438
+ :where(tbody tr:nth-child(2n):hover td) {
439
+ background-color: #fff;
440
+ }
441
+ }
442
+ :where(table > caption) {
443
+ margin: var(--size-3);
444
+ }
445
+ :where(tfoot button) {
446
+ padding-block: var(--size-1);
447
+ padding-inline: var(--size-3);
448
+ }
449
+ @media (prefers-color-scheme: dark) {
450
+ :where(
451
+ textarea,
452
+ select,
453
+ input:not([type="button"], [type="submit"], [type="reset"])
454
+ ) {
455
+ background-color: #171a1c;
456
+ }
457
+ :where(dialog) {
458
+ background-color: var(--surface-2);
459
+ }
460
+ ::placeholder {
461
+ color: var(--gray-6);
462
+ }
463
+ }
464
+
465
+ :where(html) {
466
+ --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
467
+ Noto Sans, sans-serif, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans,
468
+ sans-serif;
469
+ --font-serif: ui-serif, serif;
470
+ --font-mono: Dank Mono, Operator Mono, Inconsolata, Fira Mono, ui-monospace,
471
+ SF Mono, Monaco, Droid Sans Mono, Source Code Pro, monospace;
472
+ --font-weight-1: 100;
473
+ --font-weight-2: 200;
474
+ --font-weight-3: 300;
475
+ --font-weight-4: 400;
476
+ --font-weight-5: 500;
477
+ --font-weight-6: 600;
478
+ --font-weight-7: 700;
479
+ --font-weight-8: 800;
480
+ --font-weight-9: 900;
481
+ --font-lineheight-00: 0.95;
482
+ --font-lineheight-0: 1.1;
483
+ --font-lineheight-1: 1.25;
484
+ --font-lineheight-2: 1.375;
485
+ --font-lineheight-3: 1.5;
486
+ --font-lineheight-4: 1.75;
487
+ --font-lineheight-5: 2;
488
+ --font-letterspacing-0: -0.05em;
489
+ --font-letterspacing-1: 0.025em;
490
+ --font-letterspacing-2: 0.05em;
491
+ --font-letterspacing-3: 0.075em;
492
+ --font-letterspacing-4: 0.15em;
493
+ --font-letterspacing-5: 0.5em;
494
+ --font-letterspacing-6: 0.75em;
495
+ --font-letterspacing-7: 1em;
496
+ --font-size-00: 0.5rem;
497
+ --font-size-0: 0.75rem;
498
+ --font-size-1: 1rem;
499
+ --font-size-2: 1.1rem;
500
+ --font-size-3: 1.25rem;
501
+ --font-size-4: 1.5rem;
502
+ --font-size-5: 2rem;
503
+ --font-size-6: 2.5rem;
504
+ --font-size-7: 3rem;
505
+ --font-size-8: 3.5rem;
506
+ --font-size-fluid-0: clamp(0.75rem, 2vw, 1rem);
507
+ --font-size-fluid-1: clamp(1rem, 4vw, 1.5rem);
508
+ --font-size-fluid-2: clamp(1.5rem, 6vw, 2.5rem);
509
+ --font-size-fluid-3: clamp(2rem, 9vw, 3.5rem);
510
+ --size-000: -0.5rem;
511
+ --size-00: -0.25rem;
512
+ --size-1: 0.25rem;
513
+ --size-2: 0.5rem;
514
+ --size-3: 1rem;
515
+ --size-4: 1.25rem;
516
+ --size-5: 1.5rem;
517
+ --size-6: 1.75rem;
518
+ --size-7: 2rem;
519
+ --size-8: 3rem;
520
+ --size-9: 4rem;
521
+ --size-10: 5rem;
522
+ --size-11: 7.5rem;
523
+ --size-12: 10rem;
524
+ --size-13: 15rem;
525
+ --size-14: 20rem;
526
+ --size-15: 30rem;
527
+ --size-fluid-1: clamp(0.5rem, 1vw, 1rem);
528
+ --size-fluid-2: clamp(1rem, 2vw, 1.5rem);
529
+ --size-fluid-3: clamp(1.5rem, 3vw, 2rem);
530
+ --size-fluid-4: clamp(2rem, 4vw, 3rem);
531
+ --size-fluid-5: clamp(4rem, 5vw, 5rem);
532
+ --size-fluid-6: clamp(5rem, 7vw, 7.5rem);
533
+ --size-fluid-7: clamp(7.5rem, 10vw, 10rem);
534
+ --size-fluid-8: clamp(10rem, 20vw, 15rem);
535
+ --size-fluid-9: clamp(15rem, 30vw, 20rem);
536
+ --size-fluid-10: clamp(20rem, 40vw, 30rem);
537
+ --size-content-1: 20ch;
538
+ --size-content-2: 45ch;
539
+ --size-content-3: 60ch;
540
+ --size-header-1: 20ch;
541
+ --size-header-2: 25ch;
542
+ --size-header-3: 35ch;
543
+ --size-xxs: 240px;
544
+ --size-xs: 360px;
545
+ --size-sm: 480px;
546
+ --size-md: 768px;
547
+ --size-lg: 1024px;
548
+ --size-xl: 1440px;
549
+ --size-xxl: 1920px;
550
+ --size-relative-000: -0.5ch;
551
+ --size-relative-00: -0.25ch;
552
+ --size-relative-1: 0.25ch;
553
+ --size-relative-2: 0.5ch;
554
+ --size-relative-3: 1ch;
555
+ --size-relative-4: 1.25ch;
556
+ --size-relative-5: 1.5ch;
557
+ --size-relative-6: 1.75ch;
558
+ --size-relative-7: 2ch;
559
+ --size-relative-8: 3ch;
560
+ --size-relative-9: 4ch;
561
+ --size-relative-10: 5ch;
562
+ --size-relative-11: 7.5ch;
563
+ --size-relative-12: 10ch;
564
+ --size-relative-13: 15ch;
565
+ --size-relative-14: 20ch;
566
+ --size-relative-15: 30ch;
567
+ --ease-1: cubic-bezier(0.25, 0, 0.5, 1);
568
+ --ease-2: cubic-bezier(0.25, 0, 0.4, 1);
569
+ --ease-3: cubic-bezier(0.25, 0, 0.3, 1);
570
+ --ease-4: cubic-bezier(0.25, 0, 0.2, 1);
571
+ --ease-5: cubic-bezier(0.25, 0, 0.1, 1);
572
+ --ease-in-1: cubic-bezier(0.25, 0, 1, 1);
573
+ --ease-in-2: cubic-bezier(0.5, 0, 1, 1);
574
+ --ease-in-3: cubic-bezier(0.7, 0, 1, 1);
575
+ --ease-in-4: cubic-bezier(0.9, 0, 1, 1);
576
+ --ease-in-5: cubic-bezier(1, 0, 1, 1);
577
+ --ease-out-1: cubic-bezier(0, 0, 0.75, 1);
578
+ --ease-out-2: cubic-bezier(0, 0, 0.5, 1);
579
+ --ease-out-3: cubic-bezier(0, 0, 0.3, 1);
580
+ --ease-out-4: cubic-bezier(0, 0, 0.1, 1);
581
+ --ease-out-5: cubic-bezier(0, 0, 0, 1);
582
+ --ease-in-out-1: cubic-bezier(0.1, 0, 0.9, 1);
583
+ --ease-in-out-2: cubic-bezier(0.3, 0, 0.7, 1);
584
+ --ease-in-out-3: cubic-bezier(0.5, 0, 0.5, 1);
585
+ --ease-in-out-4: cubic-bezier(0.7, 0, 0.3, 1);
586
+ --ease-in-out-5: cubic-bezier(0.9, 0, 0.1, 1);
587
+ --ease-elastic-out-1: cubic-bezier(0.5, 0.75, 0.75, 1.25);
588
+ --ease-elastic-out-2: cubic-bezier(0.5, 1, 0.75, 1.25);
589
+ --ease-elastic-out-3: cubic-bezier(0.5, 1.25, 0.75, 1.25);
590
+ --ease-elastic-out-4: cubic-bezier(0.5, 1.5, 0.75, 1.25);
591
+ --ease-elastic-out-5: cubic-bezier(0.5, 1.75, 0.75, 1.25);
592
+ --ease-elastic-in-1: cubic-bezier(0.5, -0.25, 0.75, 1);
593
+ --ease-elastic-in-2: cubic-bezier(0.5, -0.5, 0.75, 1);
594
+ --ease-elastic-in-3: cubic-bezier(0.5, -0.75, 0.75, 1);
595
+ --ease-elastic-in-4: cubic-bezier(0.5, -1, 0.75, 1);
596
+ --ease-elastic-in-5: cubic-bezier(0.5, -1.25, 0.75, 1);
597
+ --ease-elastic-in-out-1: cubic-bezier(0.5, -0.1, 0.1, 1.5);
598
+ --ease-elastic-in-out-2: cubic-bezier(0.5, -0.3, 0.1, 1.5);
599
+ --ease-elastic-in-out-3: cubic-bezier(0.5, -0.5, 0.1, 1.5);
600
+ --ease-elastic-in-out-4: cubic-bezier(0.5, -0.7, 0.1, 1.5);
601
+ --ease-elastic-in-out-5: cubic-bezier(0.5, -0.9, 0.1, 1.5);
602
+ --ease-step-1: steps(2);
603
+ --ease-step-2: steps(3);
604
+ --ease-step-3: steps(4);
605
+ --ease-step-4: steps(7);
606
+ --ease-step-5: steps(10);
607
+ --ease-elastic-1: var(--ease-elastic-out-1);
608
+ --ease-elastic-2: var(--ease-elastic-out-2);
609
+ --ease-elastic-3: var(--ease-elastic-out-3);
610
+ --ease-elastic-4: var(--ease-elastic-out-4);
611
+ --ease-elastic-5: var(--ease-elastic-out-5);
612
+ --ease-squish-1: var(--ease-elastic-in-out-1);
613
+ --ease-squish-2: var(--ease-elastic-in-out-2);
614
+ --ease-squish-3: var(--ease-elastic-in-out-3);
615
+ --ease-squish-4: var(--ease-elastic-in-out-4);
616
+ --ease-squish-5: var(--ease-elastic-in-out-5);
617
+ --ease-spring-1: linear(
618
+ 0,
619
+ 0.006,
620
+ 0.025 2.8%,
621
+ 0.101 6.1%,
622
+ 0.539 18.9%,
623
+ 0.721 25.3%,
624
+ 0.849 31.5%,
625
+ 0.937 38.1%,
626
+ 0.968 41.8%,
627
+ 0.991 45.7%,
628
+ 1.006 50.1%,
629
+ 1.015 55%,
630
+ 1.017 63.9%,
631
+ 1.001
632
+ );
633
+ --ease-spring-2: linear(
634
+ 0,
635
+ 0.007,
636
+ 0.029 2.2%,
637
+ 0.118 4.7%,
638
+ 0.625 14.4%,
639
+ 0.826 19%,
640
+ 0.902,
641
+ 0.962,
642
+ 1.008 26.1%,
643
+ 1.041 28.7%,
644
+ 1.064 32.1%,
645
+ 1.07 36%,
646
+ 1.061 40.5%,
647
+ 1.015 53.4%,
648
+ 0.999 61.6%,
649
+ 0.995 71.2%,
650
+ 1
651
+ );
652
+ --ease-spring-3: linear(
653
+ 0,
654
+ 0.009,
655
+ 0.035 2.1%,
656
+ 0.141 4.4%,
657
+ 0.723 12.9%,
658
+ 0.938 16.7%,
659
+ 1.017,
660
+ 1.077,
661
+ 1.121,
662
+ 1.149 24.3%,
663
+ 1.159,
664
+ 1.163,
665
+ 1.161,
666
+ 1.154 29.9%,
667
+ 1.129 32.8%,
668
+ 1.051 39.6%,
669
+ 1.017 43.1%,
670
+ 0.991,
671
+ 0.977 51%,
672
+ 0.974 53.8%,
673
+ 0.975 57.1%,
674
+ 0.997 69.8%,
675
+ 1.003 76.9%,
676
+ 1
677
+ );
678
+ --ease-spring-4: linear(
679
+ 0,
680
+ 0.009,
681
+ 0.037 1.7%,
682
+ 0.153 3.6%,
683
+ 0.776 10.3%,
684
+ 1.001,
685
+ 1.142 16%,
686
+ 1.185,
687
+ 1.209 19%,
688
+ 1.215 19.9% 20.8%,
689
+ 1.199,
690
+ 1.165 25%,
691
+ 1.056 30.3%,
692
+ 1.008 33%,
693
+ 0.973,
694
+ 0.955 39.2%,
695
+ 0.953 41.1%,
696
+ 0.957 43.3%,
697
+ 0.998 53.3%,
698
+ 1.009 59.1% 63.7%,
699
+ 0.998 78.9%,
700
+ 1
701
+ );
702
+ --ease-spring-5: linear(
703
+ 0,
704
+ 0.01,
705
+ 0.04 1.6%,
706
+ 0.161 3.3%,
707
+ 0.816 9.4%,
708
+ 1.046,
709
+ 1.189 14.4%,
710
+ 1.231,
711
+ 1.254 17%,
712
+ 1.259,
713
+ 1.257 18.6%,
714
+ 1.236,
715
+ 1.194 22.3%,
716
+ 1.057 27%,
717
+ 0.999 29.4%,
718
+ 0.955 32.1%,
719
+ 0.942,
720
+ 0.935 34.9%,
721
+ 0.933,
722
+ 0.939 38.4%,
723
+ 1 47.3%,
724
+ 1.011,
725
+ 1.017 52.6%,
726
+ 1.016 56.4%,
727
+ 1 65.2%,
728
+ 0.996 70.2%,
729
+ 1.001 87.2%,
730
+ 1
731
+ );
732
+ --ease-bounce-1: linear(
733
+ 0,
734
+ 0.004,
735
+ 0.016,
736
+ 0.035,
737
+ 0.063,
738
+ 0.098,
739
+ 0.141,
740
+ 0.191,
741
+ 0.25,
742
+ 0.316,
743
+ 0.391 36.8%,
744
+ 0.563,
745
+ 0.766,
746
+ 1 58.8%,
747
+ 0.946,
748
+ 0.908 69.1%,
749
+ 0.895,
750
+ 0.885,
751
+ 0.879,
752
+ 0.878,
753
+ 0.879,
754
+ 0.885,
755
+ 0.895,
756
+ 0.908 89.7%,
757
+ 0.946,
758
+ 1
759
+ );
760
+ --ease-bounce-2: linear(
761
+ 0,
762
+ 0.004,
763
+ 0.016,
764
+ 0.035,
765
+ 0.063,
766
+ 0.098,
767
+ 0.141 15.1%,
768
+ 0.25,
769
+ 0.391,
770
+ 0.562,
771
+ 0.765,
772
+ 1,
773
+ 0.892 45.2%,
774
+ 0.849,
775
+ 0.815,
776
+ 0.788,
777
+ 0.769,
778
+ 0.757,
779
+ 0.753,
780
+ 0.757,
781
+ 0.769,
782
+ 0.788,
783
+ 0.815,
784
+ 0.85,
785
+ 0.892 75.2%,
786
+ 1 80.2%,
787
+ 0.973,
788
+ 0.954,
789
+ 0.943,
790
+ 0.939,
791
+ 0.943,
792
+ 0.954,
793
+ 0.973,
794
+ 1
795
+ );
796
+ --ease-bounce-3: linear(
797
+ 0,
798
+ 0.004,
799
+ 0.016,
800
+ 0.035,
801
+ 0.062,
802
+ 0.098,
803
+ 0.141 11.4%,
804
+ 0.25,
805
+ 0.39,
806
+ 0.562,
807
+ 0.764,
808
+ 1 30.3%,
809
+ 0.847 34.8%,
810
+ 0.787,
811
+ 0.737,
812
+ 0.699,
813
+ 0.672,
814
+ 0.655,
815
+ 0.65,
816
+ 0.656,
817
+ 0.672,
818
+ 0.699,
819
+ 0.738,
820
+ 0.787,
821
+ 0.847 61.7%,
822
+ 1 66.2%,
823
+ 0.946,
824
+ 0.908,
825
+ 0.885 74.2%,
826
+ 0.879,
827
+ 0.878,
828
+ 0.879,
829
+ 0.885 79.5%,
830
+ 0.908,
831
+ 0.946,
832
+ 1 87.4%,
833
+ 0.981,
834
+ 0.968,
835
+ 0.96,
836
+ 0.957,
837
+ 0.96,
838
+ 0.968,
839
+ 0.981,
840
+ 1
841
+ );
842
+ --ease-bounce-4: linear(
843
+ 0,
844
+ 0.004,
845
+ 0.016 3%,
846
+ 0.062,
847
+ 0.141,
848
+ 0.25,
849
+ 0.391,
850
+ 0.562 18.2%,
851
+ 1 24.3%,
852
+ 0.81,
853
+ 0.676 32.3%,
854
+ 0.629,
855
+ 0.595,
856
+ 0.575,
857
+ 0.568,
858
+ 0.575,
859
+ 0.595,
860
+ 0.629,
861
+ 0.676 48.2%,
862
+ 0.811,
863
+ 1 56.2%,
864
+ 0.918,
865
+ 0.86,
866
+ 0.825,
867
+ 0.814,
868
+ 0.825,
869
+ 0.86,
870
+ 0.918,
871
+ 1 77.2%,
872
+ 0.94 80.6%,
873
+ 0.925,
874
+ 0.92,
875
+ 0.925,
876
+ 0.94 87.5%,
877
+ 1 90.9%,
878
+ 0.974,
879
+ 0.965,
880
+ 0.974,
881
+ 1
882
+ );
883
+ --ease-bounce-5: linear(
884
+ 0,
885
+ 0.004,
886
+ 0.016 2.5%,
887
+ 0.063,
888
+ 0.141,
889
+ 0.25 10.1%,
890
+ 0.562,
891
+ 1 20.2%,
892
+ 0.783,
893
+ 0.627,
894
+ 0.534 30.9%,
895
+ 0.511,
896
+ 0.503,
897
+ 0.511,
898
+ 0.534 38%,
899
+ 0.627,
900
+ 0.782,
901
+ 1 48.7%,
902
+ 0.892,
903
+ 0.815,
904
+ 0.769 56.3%,
905
+ 0.757,
906
+ 0.753,
907
+ 0.757,
908
+ 0.769 61.3%,
909
+ 0.815,
910
+ 0.892,
911
+ 1 68.8%,
912
+ 0.908 72.4%,
913
+ 0.885,
914
+ 0.878,
915
+ 0.885,
916
+ 0.908 79.4%,
917
+ 1 83%,
918
+ 0.954 85.5%,
919
+ 0.943,
920
+ 0.939,
921
+ 0.943,
922
+ 0.954 90.5%,
923
+ 1 93%,
924
+ 0.977,
925
+ 0.97,
926
+ 0.977,
927
+ 1
928
+ );
929
+ --layer-1: 1;
930
+ --layer-2: 2;
931
+ --layer-3: 3;
932
+ --layer-4: 4;
933
+ --layer-5: 5;
934
+ --layer-important: 2147483647;
935
+ --shadow-color: 220 3% 15%;
936
+ --shadow-strength: 1%;
937
+ --inner-shadow-highlight: inset 0 -0.5px 0 0 #fff,
938
+ inset 0 0.5px 0 0 rgba(0, 0, 0, 0.067);
939
+ --shadow-1: 0 1px 2px -1px hsl(var(--shadow-color) /
940
+ calc(var(--shadow-strength) + 9%));
941
+ --shadow-2: 0 3px 5px -2px hsl(var(--shadow-color) /
942
+ calc(var(--shadow-strength) + 3%)),
943
+ 0 7px 14px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%));
944
+ --shadow-3: 0 -1px 3px 0 hsl(var(--shadow-color) /
945
+ calc(var(--shadow-strength) + 2%)),
946
+ 0 1px 2px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)),
947
+ 0 2px 5px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
948
+ 0 4px 12px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
949
+ 0 12px 15px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
950
+ --shadow-4: 0 -2px 5px 0 hsl(var(--shadow-color) /
951
+ calc(var(--shadow-strength) + 2%)),
952
+ 0 1px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
953
+ 0 2px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
954
+ 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
955
+ 0 9px 9px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
956
+ 0 16px 16px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%));
957
+ --shadow-5: 0 -1px 2px 0 hsl(var(--shadow-color) /
958
+ calc(var(--shadow-strength) + 2%)),
959
+ 0 2px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
960
+ 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
961
+ 0 10px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
962
+ 0 20px 20px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
963
+ 0 40px 40px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
964
+ --shadow-6: 0 -1px 2px 0 hsl(var(--shadow-color) /
965
+ calc(var(--shadow-strength) + 2%)),
966
+ 0 3px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
967
+ 0 7px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)),
968
+ 0 12px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)),
969
+ 0 22px 18px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)),
970
+ 0 41px 33px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%)),
971
+ 0 100px 80px -2px hsl(var(--shadow-color) /
972
+ calc(var(--shadow-strength) + 7%));
973
+ --inner-shadow-0: inset 0 0 0 1px
974
+ hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
975
+ --inner-shadow-1: inset 0 1px 2px 0
976
+ hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)),
977
+ var(--inner-shadow-highlight);
978
+ --inner-shadow-2: inset 0 1px 4px 0
979
+ hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)),
980
+ var(--inner-shadow-highlight);
981
+ --inner-shadow-3: inset 0 2px 8px 0
982
+ hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)),
983
+ var(--inner-shadow-highlight);
984
+ --inner-shadow-4: inset 0 2px 14px 0
985
+ hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%)),
986
+ var(--inner-shadow-highlight);
987
+ --ratio-square: 1;
988
+ --ratio-landscape: 4/3;
989
+ --ratio-portrait: 3/4;
990
+ --ratio-widescreen: 16/9;
991
+ --ratio-ultrawide: 18/5;
992
+ --ratio-golden: 1.618/1;
993
+ --gray-0: #f8f9fa;
994
+ --gray-1: #f1f3f5;
995
+ --gray-2: #e9ecef;
996
+ --gray-3: #dee2e6;
997
+ --gray-4: #ced4da;
998
+ --gray-5: #adb5bd;
999
+ --gray-6: #868e96;
1000
+ --gray-7: #495057;
1001
+ --gray-8: #343a40;
1002
+ --gray-9: #212529;
1003
+ --gray-10: #16191d;
1004
+ --gray-11: #0d0f12;
1005
+ --gray-12: #030507;
1006
+ --stone-0: #f8fafb;
1007
+ --stone-1: #f2f4f6;
1008
+ --stone-2: #ebedef;
1009
+ --stone-3: #e0e4e5;
1010
+ --stone-4: #d1d6d8;
1011
+ --stone-5: #b1b6b9;
1012
+ --stone-6: #979b9d;
1013
+ --stone-7: #7e8282;
1014
+ --stone-8: #666968;
1015
+ --stone-9: #50514f;
1016
+ --stone-10: #3a3a37;
1017
+ --stone-11: #252521;
1018
+ --stone-12: #121210;
1019
+ --red-0: #fff5f5;
1020
+ --red-1: #ffe3e3;
1021
+ --red-2: #ffc9c9;
1022
+ --red-3: #ffa8a8;
1023
+ --red-4: #ff8787;
1024
+ --red-5: #ff6b6b;
1025
+ --red-6: #fa5252;
1026
+ --red-7: #f03e3e;
1027
+ --red-8: #e03131;
1028
+ --red-9: #c92a2a;
1029
+ --red-10: #b02525;
1030
+ --red-11: #962020;
1031
+ --red-12: #7d1a1a;
1032
+ --pink-0: #fff0f6;
1033
+ --pink-1: #ffdeeb;
1034
+ --pink-2: #fcc2d7;
1035
+ --pink-3: #faa2c1;
1036
+ --pink-4: #f783ac;
1037
+ --pink-5: #f06595;
1038
+ --pink-6: #e64980;
1039
+ --pink-7: #d6336c;
1040
+ --pink-8: #c2255c;
1041
+ --pink-9: #a61e4d;
1042
+ --pink-10: #8c1941;
1043
+ --pink-11: #731536;
1044
+ --pink-12: #59102a;
1045
+ --purple-0: #f8f0fc;
1046
+ --purple-1: #f3d9fa;
1047
+ --purple-2: #eebefa;
1048
+ --purple-3: #e599f7;
1049
+ --purple-4: #da77f2;
1050
+ --purple-5: #cc5de8;
1051
+ --purple-6: #be4bdb;
1052
+ --purple-7: #ae3ec9;
1053
+ --purple-8: #9c36b5;
1054
+ --purple-9: #862e9c;
1055
+ --purple-10: #702682;
1056
+ --purple-11: #5a1e69;
1057
+ --purple-12: #44174f;
1058
+ --violet-0: #f3f0ff;
1059
+ --violet-1: #e5dbff;
1060
+ --violet-2: #d0bfff;
1061
+ --violet-3: #b197fc;
1062
+ --violet-4: #9775fa;
1063
+ --violet-5: #845ef7;
1064
+ --violet-6: #7950f2;
1065
+ --violet-7: #7048e8;
1066
+ --violet-8: #6741d9;
1067
+ --violet-9: #5f3dc4;
1068
+ --violet-10: #5235ab;
1069
+ --violet-11: #462d91;
1070
+ --violet-12: #3a2578;
1071
+ --indigo-0: #edf2ff;
1072
+ --indigo-1: #dbe4ff;
1073
+ --indigo-2: #bac8ff;
1074
+ --indigo-3: #91a7ff;
1075
+ --indigo-4: #748ffc;
1076
+ --indigo-5: #5c7cfa;
1077
+ --indigo-6: #4c6ef5;
1078
+ --indigo-7: #4263eb;
1079
+ --indigo-8: #3b5bdb;
1080
+ --indigo-9: #364fc7;
1081
+ --indigo-10: #2f44ad;
1082
+ --indigo-11: #283a94;
1083
+ --indigo-12: #21307a;
1084
+ --blue-0: #e7f5ff;
1085
+ --blue-1: #d0ebff;
1086
+ --blue-2: #a5d8ff;
1087
+ --blue-3: #74c0fc;
1088
+ --blue-4: #4dabf7;
1089
+ --blue-5: #339af0;
1090
+ --blue-6: #228be6;
1091
+ --blue-7: #1c7ed6;
1092
+ --blue-8: #1971c2;
1093
+ --blue-9: #1864ab;
1094
+ --blue-10: #145591;
1095
+ --blue-11: #114678;
1096
+ --blue-12: #0d375e;
1097
+ --cyan-0: #e3fafc;
1098
+ --cyan-1: #c5f6fa;
1099
+ --cyan-2: #99e9f2;
1100
+ --cyan-3: #66d9e8;
1101
+ --cyan-4: #3bc9db;
1102
+ --cyan-5: #22b8cf;
1103
+ --cyan-6: #15aabf;
1104
+ --cyan-7: #1098ad;
1105
+ --cyan-8: #0c8599;
1106
+ --cyan-9: #0b7285;
1107
+ --cyan-10: #095c6b;
1108
+ --cyan-11: #074652;
1109
+ --cyan-12: #053038;
1110
+ --teal-0: #e6fcf5;
1111
+ --teal-1: #c3fae8;
1112
+ --teal-2: #96f2d7;
1113
+ --teal-3: #63e6be;
1114
+ --teal-4: #38d9a9;
1115
+ --teal-5: #20c997;
1116
+ --teal-6: #12b886;
1117
+ --teal-7: #0ca678;
1118
+ --teal-8: #099268;
1119
+ --teal-9: #087f5b;
1120
+ --teal-10: #066649;
1121
+ --teal-11: #054d37;
1122
+ --teal-12: #033325;
1123
+ --green-0: #ebfbee;
1124
+ --green-1: #d3f9d8;
1125
+ --green-2: #b2f2bb;
1126
+ --green-3: #8ce99a;
1127
+ --green-4: #69db7c;
1128
+ --green-5: #51cf66;
1129
+ --green-6: #40c057;
1130
+ --green-7: #37b24d;
1131
+ --green-8: #2f9e44;
1132
+ --green-9: #2b8a3e;
1133
+ --green-10: #237032;
1134
+ --green-11: #1b5727;
1135
+ --green-12: #133d1b;
1136
+ --lime-0: #f4fce3;
1137
+ --lime-1: #e9fac8;
1138
+ --lime-2: #d8f5a2;
1139
+ --lime-3: #c0eb75;
1140
+ --lime-4: #a9e34b;
1141
+ --lime-5: #94d82d;
1142
+ --lime-6: #82c91e;
1143
+ --lime-7: #74b816;
1144
+ --lime-8: #66a80f;
1145
+ --lime-9: #5c940d;
1146
+ --lime-10: #4c7a0b;
1147
+ --lime-11: #3c6109;
1148
+ --lime-12: #2c4706;
1149
+ --yellow-0: #fff9db;
1150
+ --yellow-1: #fff3bf;
1151
+ --yellow-2: #ffec99;
1152
+ --yellow-3: #ffe066;
1153
+ --yellow-4: #ffd43b;
1154
+ --yellow-5: #fcc419;
1155
+ --yellow-6: #fab005;
1156
+ --yellow-7: #f59f00;
1157
+ --yellow-8: #f08c00;
1158
+ --yellow-9: #e67700;
1159
+ --yellow-10: #b35c00;
1160
+ --yellow-11: #804200;
1161
+ --yellow-12: #663500;
1162
+ --orange-0: #fff4e6;
1163
+ --orange-1: #ffe8cc;
1164
+ --orange-2: #ffd8a8;
1165
+ --orange-3: #ffc078;
1166
+ --orange-4: #ffa94d;
1167
+ --orange-5: #ff922b;
1168
+ --orange-6: #fd7e14;
1169
+ --orange-7: #f76707;
1170
+ --orange-8: #e8590c;
1171
+ --orange-9: #d9480f;
1172
+ --orange-10: #bf400d;
1173
+ --orange-11: #99330b;
1174
+ --orange-12: #802b09;
1175
+ --choco-0: #fff8dc;
1176
+ --choco-1: #fce1bc;
1177
+ --choco-2: #f7ca9e;
1178
+ --choco-3: #f1b280;
1179
+ --choco-4: #e99b62;
1180
+ --choco-5: #df8545;
1181
+ --choco-6: #d46e25;
1182
+ --choco-7: #bd5f1b;
1183
+ --choco-8: #a45117;
1184
+ --choco-9: #8a4513;
1185
+ --choco-10: #703a13;
1186
+ --choco-11: #572f12;
1187
+ --choco-12: #3d210d;
1188
+ --brown-0: #faf4eb;
1189
+ --brown-1: #ede0d1;
1190
+ --brown-2: #e0cab7;
1191
+ --brown-3: #d3b79e;
1192
+ --brown-4: #c5a285;
1193
+ --brown-5: #b78f6d;
1194
+ --brown-6: #a87c56;
1195
+ --brown-7: #956b47;
1196
+ --brown-8: #825b3a;
1197
+ --brown-9: #6f4b2d;
1198
+ --brown-10: #5e3a21;
1199
+ --brown-11: #4e2b15;
1200
+ --brown-12: #422412;
1201
+ --sand-0: #f8fafb;
1202
+ --sand-1: #e6e4dc;
1203
+ --sand-2: #d5cfbd;
1204
+ --sand-3: #c2b9a0;
1205
+ --sand-4: #aea58c;
1206
+ --sand-5: #9a9178;
1207
+ --sand-6: #867c65;
1208
+ --sand-7: #736a53;
1209
+ --sand-8: #5f5746;
1210
+ --sand-9: #4b4639;
1211
+ --sand-10: #38352d;
1212
+ --sand-11: #252521;
1213
+ --sand-12: #121210;
1214
+ --camo-0: #f9fbe7;
1215
+ --camo-1: #e8ed9c;
1216
+ --camo-2: #d2df4e;
1217
+ --camo-3: #c2ce34;
1218
+ --camo-4: #b5bb2e;
1219
+ --camo-5: #a7a827;
1220
+ --camo-6: #999621;
1221
+ --camo-7: #8c851c;
1222
+ --camo-8: #7e7416;
1223
+ --camo-9: #6d6414;
1224
+ --camo-10: #5d5411;
1225
+ --camo-11: #4d460e;
1226
+ --camo-12: #36300a;
1227
+ --jungle-0: #ecfeb0;
1228
+ --jungle-1: #def39a;
1229
+ --jungle-2: #d0e884;
1230
+ --jungle-3: #c2dd6e;
1231
+ --jungle-4: #b5d15b;
1232
+ --jungle-5: #a8c648;
1233
+ --jungle-6: #9bbb36;
1234
+ --jungle-7: #8fb024;
1235
+ --jungle-8: #84a513;
1236
+ --jungle-9: #7a9908;
1237
+ --jungle-10: #658006;
1238
+ --jungle-11: #516605;
1239
+ --jungle-12: #3d4d04;
1240
+ --gradient-1: linear-gradient(
1241
+ to bottom right,
1242
+ #1f005c,
1243
+ #5b0060,
1244
+ #870160,
1245
+ #ac255e,
1246
+ #ca485c,
1247
+ #e16b5c,
1248
+ #f39060,
1249
+ #ffb56b
1250
+ );
1251
+ --gradient-2: linear-gradient(to bottom right, #48005c, #8300e2, #a269ff);
1252
+ --gradient-3: radial-gradient(circle at top right, #0ff, rgba(0, 255, 255, 0)),
1253
+ radial-gradient(circle at bottom left, #ff1492, rgba(255, 20, 146, 0));
1254
+ --gradient-4: linear-gradient(to bottom right, #00f5a0, #00d9f5);
1255
+ --gradient-5: conic-gradient(from -270deg at 75% 110%, #f0f, #fffaf0);
1256
+ --gradient-6: conic-gradient(from -90deg at top left, #000, #fff);
1257
+ --gradient-7: linear-gradient(to bottom right, #72c6ef, #004e8f);
1258
+ --gradient-8: conic-gradient(from 90deg at 50% 0%, #111, 50%, #222, #111);
1259
+ --gradient-9: conic-gradient(from 0.5turn at bottom center, #add8e6, #fff);
1260
+ --gradient-10: conic-gradient(
1261
+ from 90deg at 40% -25%,
1262
+ gold,
1263
+ #f79d03,
1264
+ #ee6907,
1265
+ #e6390a,
1266
+ #de0d0d,
1267
+ #d61039,
1268
+ #cf1261,
1269
+ #c71585,
1270
+ #cf1261,
1271
+ #d61039,
1272
+ #de0d0d,
1273
+ #ee6907,
1274
+ #f79d03,
1275
+ gold,
1276
+ gold,
1277
+ gold
1278
+ );
1279
+ --gradient-11: conic-gradient(at bottom left, #ff1493, cyan);
1280
+ --gradient-12: conic-gradient(
1281
+ from 90deg at 25% -10%,
1282
+ #ff4500,
1283
+ #d3f340,
1284
+ #7bee85,
1285
+ #afeeee,
1286
+ #7bee85
1287
+ );
1288
+ --gradient-13: radial-gradient(
1289
+ circle at 50% 200%,
1290
+ #000142,
1291
+ #3b0083,
1292
+ #b300c3,
1293
+ #ff059f,
1294
+ #ff4661,
1295
+ #ffad86,
1296
+ #fff3c7
1297
+ );
1298
+ --gradient-14: conic-gradient(at top right, lime, cyan);
1299
+ --gradient-15: linear-gradient(to bottom right, #c7d2fe, #fecaca, #fef3c7);
1300
+ --gradient-16: radial-gradient(circle at 50% -250%, #374151, #111827, #000);
1301
+ --gradient-17: conic-gradient(from -90deg at 50% -25%, blue, #8a2be2);
1302
+ --gradient-18: linear-gradient(
1303
+ 0deg,
1304
+ rgba(255, 0, 0, 0.8),
1305
+ rgba(255, 0, 0, 0) 75%
1306
+ ),
1307
+ linear-gradient(60deg, rgba(255, 255, 0, 0.8), rgba(255, 255, 0, 0) 75%),
1308
+ linear-gradient(120deg, rgba(0, 255, 0, 0.8), rgba(0, 255, 0, 0) 75%),
1309
+ linear-gradient(180deg, rgba(0, 255, 255, 0.8), rgba(0, 255, 255, 0) 75%),
1310
+ linear-gradient(240deg, rgba(0, 0, 255, 0.8), rgba(0, 0, 255, 0) 75%),
1311
+ linear-gradient(300deg, rgba(255, 0, 255, 0.8), rgba(255, 0, 255, 0) 75%);
1312
+ --gradient-19: linear-gradient(to bottom right, #ffe259, #ffa751);
1313
+ --gradient-20: conic-gradient(
1314
+ from -135deg at -10% center,
1315
+ orange,
1316
+ #ff7715,
1317
+ #ff522a,
1318
+ #ff3f47,
1319
+ #ff5482,
1320
+ #ff69b4
1321
+ );
1322
+ --gradient-21: conic-gradient(
1323
+ from -90deg at 25% 115%,
1324
+ red,
1325
+ #f06,
1326
+ #f0c,
1327
+ #c0f,
1328
+ #60f,
1329
+ #00f,
1330
+ #00f,
1331
+ #00f,
1332
+ #00f
1333
+ );
1334
+ --gradient-22: linear-gradient(to bottom right, #acb6e5, #86fde8);
1335
+ --gradient-23: linear-gradient(to bottom right, #536976, #292e49);
1336
+ --gradient-24: conic-gradient(
1337
+ from 0.5turn at 0% 0%,
1338
+ #00c476,
1339
+ 10%,
1340
+ #82b0ff,
1341
+ 90%,
1342
+ #00c476
1343
+ );
1344
+ --gradient-25: conic-gradient(
1345
+ at 125% 50%,
1346
+ #b78cf7,
1347
+ #ff7c94,
1348
+ #ffcf0d,
1349
+ #ff7c94,
1350
+ #b78cf7
1351
+ );
1352
+ --gradient-26: linear-gradient(to bottom right, #9796f0, #fbc7d4);
1353
+ --gradient-27: conic-gradient(from 0.5turn at bottom left, #ff1493, #639);
1354
+ --gradient-28: conic-gradient(from -90deg at 50% 105%, #fff, orchid);
1355
+ --gradient-29: radial-gradient(
1356
+ circle at top right,
1357
+ #bfb3ff,
1358
+ rgba(191, 179, 255, 0)
1359
+ ),
1360
+ radial-gradient(circle at bottom left, #86acf9, rgba(134, 172, 249, 0));
1361
+ --gradient-30: radial-gradient(
1362
+ circle at top right,
1363
+ #00ff80,
1364
+ rgba(0, 255, 128, 0)
1365
+ ),
1366
+ radial-gradient(circle at bottom left, #adffd6, rgba(173, 255, 214, 0));
1367
+ --noise-1: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.005' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
1368
+ --noise-2: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.05' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
1369
+ --noise-3: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.25' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
1370
+ --noise-4: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
1371
+ --noise-5: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 2056 2056' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
1372
+ --noise-filter-1: contrast(300%) brightness(100%);
1373
+ --noise-filter-2: contrast(200%) brightness(150%);
1374
+ --noise-filter-3: contrast(200%) brightness(250%);
1375
+ --noise-filter-4: contrast(200%) brightness(500%);
1376
+ --noise-filter-5: contrast(200%) brightness(1000%);
1377
+ --animation-fade-in: fade-in 0.5s var(--ease-3);
1378
+ --animation-fade-in-bloom: fade-in-bloom 2s var(--ease-3);
1379
+ --animation-fade-out: fade-out 0.5s var(--ease-3);
1380
+ --animation-fade-out-bloom: fade-out-bloom 2s var(--ease-3);
1381
+ --animation-scale-up: scale-up 0.5s var(--ease-3);
1382
+ --animation-scale-down: scale-down 0.5s var(--ease-3);
1383
+ --animation-slide-out-up: slide-out-up 0.5s var(--ease-3);
1384
+ --animation-slide-out-down: slide-out-down 0.5s var(--ease-3);
1385
+ --animation-slide-out-right: slide-out-right 0.5s var(--ease-3);
1386
+ --animation-slide-out-left: slide-out-left 0.5s var(--ease-3);
1387
+ --animation-slide-in-up: slide-in-up 0.5s var(--ease-3);
1388
+ --animation-slide-in-down: slide-in-down 0.5s var(--ease-3);
1389
+ --animation-slide-in-right: slide-in-right 0.5s var(--ease-3);
1390
+ --animation-slide-in-left: slide-in-left 0.5s var(--ease-3);
1391
+ --animation-shake-x: shake-x 0.75s var(--ease-out-5);
1392
+ --animation-shake-y: shake-y 0.75s var(--ease-out-5);
1393
+ --animation-spin: spin 2s linear infinite;
1394
+ --animation-ping: ping 5s var(--ease-out-3) infinite;
1395
+ --animation-blink: blink 1s var(--ease-out-3) infinite;
1396
+ --animation-float: float 3s var(--ease-in-out-3) infinite;
1397
+ --animation-bounce: bounce 2s var(--ease-squish-2) infinite;
1398
+ --animation-pulse: pulse 2s var(--ease-out-3) infinite;
1399
+ --border-size-1: 1px;
1400
+ --border-size-2: 2px;
1401
+ --border-size-3: 5px;
1402
+ --border-size-4: 10px;
1403
+ --border-size-5: 25px;
1404
+ --radius-1: 2px;
1405
+ --radius-2: 5px;
1406
+ --radius-3: 1rem;
1407
+ --radius-4: 2rem;
1408
+ --radius-5: 4rem;
1409
+ --radius-6: 8rem;
1410
+ --radius-round: 1e5px;
1411
+ --radius-blob-1: 30% 70% 70% 30%/53% 30% 70% 47%;
1412
+ --radius-blob-2: 53% 47% 34% 66%/63% 46% 54% 37%;
1413
+ --radius-blob-3: 37% 63% 56% 44%/49% 56% 44% 51%;
1414
+ --radius-blob-4: 63% 37% 37% 63%/43% 37% 63% 57%;
1415
+ --radius-blob-5: 49% 51% 48% 52%/57% 44% 56% 43%;
1416
+ --radius-conditional-1: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-1));
1417
+ --radius-conditional-2: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-2));
1418
+ --radius-conditional-3: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-3));
1419
+ --radius-conditional-4: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-4));
1420
+ --radius-conditional-5: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-5));
1421
+ --radius-conditional-6: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-6));
1422
+ }
1423
+ @media (prefers-color-scheme: dark) {
1424
+ :where(html) {
1425
+ --shadow-color: 220 40% 2%;
1426
+ --shadow-strength: 25%;
1427
+ --inner-shadow-highlight: inset 0 -0.5px 0 0 hsla(0, 0%, 100%, 0.067),
1428
+ inset 0 0.5px 0 0 rgba(0, 0, 0, 0.467);
1429
+ }
1430
+ }
1431
+ @keyframes fade-in {
1432
+ to {
1433
+ opacity: 1;
1434
+ }
1435
+ }
1436
+ @keyframes fade-in-bloom {
1437
+ 0% {
1438
+ filter: brightness(1) blur(20px);
1439
+ opacity: 0;
1440
+ }
1441
+ 10% {
1442
+ filter: brightness(2) blur(10px);
1443
+ opacity: 1;
1444
+ }
1445
+ to {
1446
+ filter: brightness(1) blur(0);
1447
+ opacity: 1;
1448
+ }
1449
+ }
1450
+ @keyframes fade-out {
1451
+ to {
1452
+ opacity: 0;
1453
+ }
1454
+ }
1455
+ @keyframes fade-out-bloom {
1456
+ to {
1457
+ filter: brightness(1) blur(20px);
1458
+ opacity: 0;
1459
+ }
1460
+ 10% {
1461
+ filter: brightness(2) blur(10px);
1462
+ opacity: 1;
1463
+ }
1464
+ 0% {
1465
+ filter: brightness(1) blur(0);
1466
+ opacity: 1;
1467
+ }
1468
+ }
1469
+ @keyframes scale-up {
1470
+ to {
1471
+ transform: scale(1.25);
1472
+ }
1473
+ }
1474
+ @keyframes scale-down {
1475
+ to {
1476
+ transform: scale(0.75);
1477
+ }
1478
+ }
1479
+ @keyframes slide-out-up {
1480
+ to {
1481
+ transform: translateY(-100%);
1482
+ }
1483
+ }
1484
+ @keyframes slide-out-down {
1485
+ to {
1486
+ transform: translateY(100%);
1487
+ }
1488
+ }
1489
+ @keyframes slide-out-right {
1490
+ to {
1491
+ transform: translateX(100%);
1492
+ }
1493
+ }
1494
+ @keyframes slide-out-left {
1495
+ to {
1496
+ transform: translateX(-100%);
1497
+ }
1498
+ }
1499
+ @keyframes slide-in-up {
1500
+ 0% {
1501
+ transform: translateY(100%);
1502
+ }
1503
+ }
1504
+ @keyframes slide-in-down {
1505
+ 0% {
1506
+ transform: translateY(-100%);
1507
+ }
1508
+ }
1509
+ @keyframes slide-in-right {
1510
+ 0% {
1511
+ transform: translateX(-100%);
1512
+ }
1513
+ }
1514
+ @keyframes slide-in-left {
1515
+ 0% {
1516
+ transform: translateX(100%);
1517
+ }
1518
+ }
1519
+ @keyframes shake-x {
1520
+ 0%,
1521
+ to {
1522
+ transform: translateX(0);
1523
+ }
1524
+ 20% {
1525
+ transform: translateX(-5%);
1526
+ }
1527
+ 40% {
1528
+ transform: translateX(5%);
1529
+ }
1530
+ 60% {
1531
+ transform: translateX(-5%);
1532
+ }
1533
+ 80% {
1534
+ transform: translateX(5%);
1535
+ }
1536
+ }
1537
+ @keyframes shake-y {
1538
+ 0%,
1539
+ to {
1540
+ transform: translateY(0);
1541
+ }
1542
+ 20% {
1543
+ transform: translateY(-5%);
1544
+ }
1545
+ 40% {
1546
+ transform: translateY(5%);
1547
+ }
1548
+ 60% {
1549
+ transform: translateY(-5%);
1550
+ }
1551
+ 80% {
1552
+ transform: translateY(5%);
1553
+ }
1554
+ }
1555
+ @keyframes spin {
1556
+ to {
1557
+ transform: rotate(1turn);
1558
+ }
1559
+ }
1560
+ @keyframes ping {
1561
+ 90%,
1562
+ to {
1563
+ opacity: 0;
1564
+ transform: scale(2);
1565
+ }
1566
+ }
1567
+ @keyframes blink {
1568
+ 0%,
1569
+ to {
1570
+ opacity: 1;
1571
+ }
1572
+ 50% {
1573
+ opacity: 0.5;
1574
+ }
1575
+ }
1576
+ @keyframes float {
1577
+ 50% {
1578
+ transform: translateY(-25%);
1579
+ }
1580
+ }
1581
+ @keyframes bounce {
1582
+ 25% {
1583
+ transform: translateY(-20%);
1584
+ }
1585
+ 40% {
1586
+ transform: translateY(-3%);
1587
+ }
1588
+ 0%,
1589
+ 60%,
1590
+ to {
1591
+ transform: translateY(0);
1592
+ }
1593
+ }
1594
+ @keyframes pulse {
1595
+ 50% {
1596
+ transform: scale(0.9);
1597
+ }
1598
+ }
1599
+ @media (prefers-color-scheme: dark) {
1600
+ @keyframes fade-in-bloom {
1601
+ 0% {
1602
+ filter: brightness(1) blur(20px);
1603
+ opacity: 0;
1604
+ }
1605
+ 10% {
1606
+ filter: brightness(0.5) blur(10px);
1607
+ opacity: 1;
1608
+ }
1609
+ to {
1610
+ filter: brightness(1) blur(0);
1611
+ opacity: 1;
1612
+ }
1613
+ }
1614
+ }
1615
+ @media (prefers-color-scheme: dark) {
1616
+ @keyframes fade-out-bloom {
1617
+ to {
1618
+ filter: brightness(1) blur(20px);
1619
+ opacity: 0;
1620
+ }
1621
+ 10% {
1622
+ filter: brightness(0.5) blur(10px);
1623
+ opacity: 1;
1624
+ }
1625
+ 0% {
1626
+ filter: brightness(1) blur(0);
1627
+ opacity: 1;
1628
+ }
1629
+ }
1630
+ }