@marigold/theme-docs 2.2.6 → 2.2.8

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.
package/dist/preset.mjs DELETED
@@ -1,1179 +0,0 @@
1
- import {
2
- screens
3
- } from "./chunk-P3IZ5IPQ.mjs";
4
- import {
5
- __commonJS,
6
- __toESM,
7
- colors
8
- } from "./chunk-QYJP3VXC.mjs";
9
-
10
- // ../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/util/cloneDeep.js
11
- var require_cloneDeep = __commonJS({
12
- "../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/util/cloneDeep.js"(exports) {
13
- "use strict";
14
- Object.defineProperty(exports, "__esModule", {
15
- value: true
16
- });
17
- Object.defineProperty(exports, "cloneDeep", {
18
- enumerable: true,
19
- get: function() {
20
- return cloneDeep;
21
- }
22
- });
23
- function cloneDeep(value) {
24
- if (Array.isArray(value)) {
25
- return value.map((child) => cloneDeep(child));
26
- }
27
- if (typeof value === "object" && value !== null) {
28
- return Object.fromEntries(Object.entries(value).map(([k, v]) => [
29
- k,
30
- cloneDeep(v)
31
- ]));
32
- }
33
- return value;
34
- }
35
- }
36
- });
37
-
38
- // ../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/stubs/config.full.js
39
- var require_config_full = __commonJS({
40
- "../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/stubs/config.full.js"(exports, module) {
41
- "use strict";
42
- module.exports = {
43
- content: [],
44
- presets: [],
45
- darkMode: "media",
46
- // or 'class'
47
- theme: {
48
- accentColor: ({ theme }) => ({
49
- ...theme("colors"),
50
- auto: "auto"
51
- }),
52
- animation: {
53
- none: "none",
54
- spin: "spin 1s linear infinite",
55
- ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
56
- pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
57
- bounce: "bounce 1s infinite"
58
- },
59
- aria: {
60
- busy: 'busy="true"',
61
- checked: 'checked="true"',
62
- disabled: 'disabled="true"',
63
- expanded: 'expanded="true"',
64
- hidden: 'hidden="true"',
65
- pressed: 'pressed="true"',
66
- readonly: 'readonly="true"',
67
- required: 'required="true"',
68
- selected: 'selected="true"'
69
- },
70
- aspectRatio: {
71
- auto: "auto",
72
- square: "1 / 1",
73
- video: "16 / 9"
74
- },
75
- backdropBlur: ({ theme }) => theme("blur"),
76
- backdropBrightness: ({ theme }) => theme("brightness"),
77
- backdropContrast: ({ theme }) => theme("contrast"),
78
- backdropGrayscale: ({ theme }) => theme("grayscale"),
79
- backdropHueRotate: ({ theme }) => theme("hueRotate"),
80
- backdropInvert: ({ theme }) => theme("invert"),
81
- backdropOpacity: ({ theme }) => theme("opacity"),
82
- backdropSaturate: ({ theme }) => theme("saturate"),
83
- backdropSepia: ({ theme }) => theme("sepia"),
84
- backgroundColor: ({ theme }) => theme("colors"),
85
- backgroundImage: {
86
- none: "none",
87
- "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
88
- "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
89
- "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
90
- "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
91
- "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
92
- "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
93
- "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
94
- "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
95
- },
96
- backgroundOpacity: ({ theme }) => theme("opacity"),
97
- backgroundPosition: {
98
- bottom: "bottom",
99
- center: "center",
100
- left: "left",
101
- "left-bottom": "left bottom",
102
- "left-top": "left top",
103
- right: "right",
104
- "right-bottom": "right bottom",
105
- "right-top": "right top",
106
- top: "top"
107
- },
108
- backgroundSize: {
109
- auto: "auto",
110
- cover: "cover",
111
- contain: "contain"
112
- },
113
- blur: {
114
- 0: "0",
115
- none: "",
116
- sm: "4px",
117
- DEFAULT: "8px",
118
- md: "12px",
119
- lg: "16px",
120
- xl: "24px",
121
- "2xl": "40px",
122
- "3xl": "64px"
123
- },
124
- borderColor: ({ theme }) => ({
125
- ...theme("colors"),
126
- DEFAULT: theme("colors.gray.200", "currentColor")
127
- }),
128
- borderOpacity: ({ theme }) => theme("opacity"),
129
- borderRadius: {
130
- none: "0px",
131
- sm: "0.125rem",
132
- DEFAULT: "0.25rem",
133
- md: "0.375rem",
134
- lg: "0.5rem",
135
- xl: "0.75rem",
136
- "2xl": "1rem",
137
- "3xl": "1.5rem",
138
- full: "9999px"
139
- },
140
- borderSpacing: ({ theme }) => ({
141
- ...theme("spacing")
142
- }),
143
- borderWidth: {
144
- DEFAULT: "1px",
145
- 0: "0px",
146
- 2: "2px",
147
- 4: "4px",
148
- 8: "8px"
149
- },
150
- boxShadow: {
151
- sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
152
- DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
153
- md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
154
- lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
155
- xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
156
- "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
157
- inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
158
- none: "none"
159
- },
160
- boxShadowColor: ({ theme }) => theme("colors"),
161
- brightness: {
162
- 0: "0",
163
- 50: ".5",
164
- 75: ".75",
165
- 90: ".9",
166
- 95: ".95",
167
- 100: "1",
168
- 105: "1.05",
169
- 110: "1.1",
170
- 125: "1.25",
171
- 150: "1.5",
172
- 200: "2"
173
- },
174
- caretColor: ({ theme }) => theme("colors"),
175
- colors: ({ colors: colors2 }) => ({
176
- inherit: colors2.inherit,
177
- current: colors2.current,
178
- transparent: colors2.transparent,
179
- black: colors2.black,
180
- white: colors2.white,
181
- slate: colors2.slate,
182
- gray: colors2.gray,
183
- zinc: colors2.zinc,
184
- neutral: colors2.neutral,
185
- stone: colors2.stone,
186
- red: colors2.red,
187
- orange: colors2.orange,
188
- amber: colors2.amber,
189
- yellow: colors2.yellow,
190
- lime: colors2.lime,
191
- green: colors2.green,
192
- emerald: colors2.emerald,
193
- teal: colors2.teal,
194
- cyan: colors2.cyan,
195
- sky: colors2.sky,
196
- blue: colors2.blue,
197
- indigo: colors2.indigo,
198
- violet: colors2.violet,
199
- purple: colors2.purple,
200
- fuchsia: colors2.fuchsia,
201
- pink: colors2.pink,
202
- rose: colors2.rose
203
- }),
204
- columns: {
205
- auto: "auto",
206
- 1: "1",
207
- 2: "2",
208
- 3: "3",
209
- 4: "4",
210
- 5: "5",
211
- 6: "6",
212
- 7: "7",
213
- 8: "8",
214
- 9: "9",
215
- 10: "10",
216
- 11: "11",
217
- 12: "12",
218
- "3xs": "16rem",
219
- "2xs": "18rem",
220
- xs: "20rem",
221
- sm: "24rem",
222
- md: "28rem",
223
- lg: "32rem",
224
- xl: "36rem",
225
- "2xl": "42rem",
226
- "3xl": "48rem",
227
- "4xl": "56rem",
228
- "5xl": "64rem",
229
- "6xl": "72rem",
230
- "7xl": "80rem"
231
- },
232
- container: {},
233
- content: {
234
- none: "none"
235
- },
236
- contrast: {
237
- 0: "0",
238
- 50: ".5",
239
- 75: ".75",
240
- 100: "1",
241
- 125: "1.25",
242
- 150: "1.5",
243
- 200: "2"
244
- },
245
- cursor: {
246
- auto: "auto",
247
- default: "default",
248
- pointer: "pointer",
249
- wait: "wait",
250
- text: "text",
251
- move: "move",
252
- help: "help",
253
- "not-allowed": "not-allowed",
254
- none: "none",
255
- "context-menu": "context-menu",
256
- progress: "progress",
257
- cell: "cell",
258
- crosshair: "crosshair",
259
- "vertical-text": "vertical-text",
260
- alias: "alias",
261
- copy: "copy",
262
- "no-drop": "no-drop",
263
- grab: "grab",
264
- grabbing: "grabbing",
265
- "all-scroll": "all-scroll",
266
- "col-resize": "col-resize",
267
- "row-resize": "row-resize",
268
- "n-resize": "n-resize",
269
- "e-resize": "e-resize",
270
- "s-resize": "s-resize",
271
- "w-resize": "w-resize",
272
- "ne-resize": "ne-resize",
273
- "nw-resize": "nw-resize",
274
- "se-resize": "se-resize",
275
- "sw-resize": "sw-resize",
276
- "ew-resize": "ew-resize",
277
- "ns-resize": "ns-resize",
278
- "nesw-resize": "nesw-resize",
279
- "nwse-resize": "nwse-resize",
280
- "zoom-in": "zoom-in",
281
- "zoom-out": "zoom-out"
282
- },
283
- divideColor: ({ theme }) => theme("borderColor"),
284
- divideOpacity: ({ theme }) => theme("borderOpacity"),
285
- divideWidth: ({ theme }) => theme("borderWidth"),
286
- dropShadow: {
287
- sm: "0 1px 1px rgb(0 0 0 / 0.05)",
288
- DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
289
- md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
290
- lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
291
- xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
292
- "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
293
- none: "0 0 #0000"
294
- },
295
- fill: ({ theme }) => ({
296
- none: "none",
297
- ...theme("colors")
298
- }),
299
- flex: {
300
- 1: "1 1 0%",
301
- auto: "1 1 auto",
302
- initial: "0 1 auto",
303
- none: "none"
304
- },
305
- flexBasis: ({ theme }) => ({
306
- auto: "auto",
307
- ...theme("spacing"),
308
- "1/2": "50%",
309
- "1/3": "33.333333%",
310
- "2/3": "66.666667%",
311
- "1/4": "25%",
312
- "2/4": "50%",
313
- "3/4": "75%",
314
- "1/5": "20%",
315
- "2/5": "40%",
316
- "3/5": "60%",
317
- "4/5": "80%",
318
- "1/6": "16.666667%",
319
- "2/6": "33.333333%",
320
- "3/6": "50%",
321
- "4/6": "66.666667%",
322
- "5/6": "83.333333%",
323
- "1/12": "8.333333%",
324
- "2/12": "16.666667%",
325
- "3/12": "25%",
326
- "4/12": "33.333333%",
327
- "5/12": "41.666667%",
328
- "6/12": "50%",
329
- "7/12": "58.333333%",
330
- "8/12": "66.666667%",
331
- "9/12": "75%",
332
- "10/12": "83.333333%",
333
- "11/12": "91.666667%",
334
- full: "100%"
335
- }),
336
- flexGrow: {
337
- 0: "0",
338
- DEFAULT: "1"
339
- },
340
- flexShrink: {
341
- 0: "0",
342
- DEFAULT: "1"
343
- },
344
- fontFamily: {
345
- sans: [
346
- "ui-sans-serif",
347
- "system-ui",
348
- "sans-serif",
349
- '"Apple Color Emoji"',
350
- '"Segoe UI Emoji"',
351
- '"Segoe UI Symbol"',
352
- '"Noto Color Emoji"'
353
- ],
354
- serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
355
- mono: [
356
- "ui-monospace",
357
- "SFMono-Regular",
358
- "Menlo",
359
- "Monaco",
360
- "Consolas",
361
- '"Liberation Mono"',
362
- '"Courier New"',
363
- "monospace"
364
- ]
365
- },
366
- fontSize: {
367
- xs: ["0.75rem", { lineHeight: "1rem" }],
368
- sm: ["0.875rem", { lineHeight: "1.25rem" }],
369
- base: ["1rem", { lineHeight: "1.5rem" }],
370
- lg: ["1.125rem", { lineHeight: "1.75rem" }],
371
- xl: ["1.25rem", { lineHeight: "1.75rem" }],
372
- "2xl": ["1.5rem", { lineHeight: "2rem" }],
373
- "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
374
- "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
375
- "5xl": ["3rem", { lineHeight: "1" }],
376
- "6xl": ["3.75rem", { lineHeight: "1" }],
377
- "7xl": ["4.5rem", { lineHeight: "1" }],
378
- "8xl": ["6rem", { lineHeight: "1" }],
379
- "9xl": ["8rem", { lineHeight: "1" }]
380
- },
381
- fontWeight: {
382
- thin: "100",
383
- extralight: "200",
384
- light: "300",
385
- normal: "400",
386
- medium: "500",
387
- semibold: "600",
388
- bold: "700",
389
- extrabold: "800",
390
- black: "900"
391
- },
392
- gap: ({ theme }) => theme("spacing"),
393
- gradientColorStops: ({ theme }) => theme("colors"),
394
- gradientColorStopPositions: {
395
- "0%": "0%",
396
- "5%": "5%",
397
- "10%": "10%",
398
- "15%": "15%",
399
- "20%": "20%",
400
- "25%": "25%",
401
- "30%": "30%",
402
- "35%": "35%",
403
- "40%": "40%",
404
- "45%": "45%",
405
- "50%": "50%",
406
- "55%": "55%",
407
- "60%": "60%",
408
- "65%": "65%",
409
- "70%": "70%",
410
- "75%": "75%",
411
- "80%": "80%",
412
- "85%": "85%",
413
- "90%": "90%",
414
- "95%": "95%",
415
- "100%": "100%"
416
- },
417
- grayscale: {
418
- 0: "0",
419
- DEFAULT: "100%"
420
- },
421
- gridAutoColumns: {
422
- auto: "auto",
423
- min: "min-content",
424
- max: "max-content",
425
- fr: "minmax(0, 1fr)"
426
- },
427
- gridAutoRows: {
428
- auto: "auto",
429
- min: "min-content",
430
- max: "max-content",
431
- fr: "minmax(0, 1fr)"
432
- },
433
- gridColumn: {
434
- auto: "auto",
435
- "span-1": "span 1 / span 1",
436
- "span-2": "span 2 / span 2",
437
- "span-3": "span 3 / span 3",
438
- "span-4": "span 4 / span 4",
439
- "span-5": "span 5 / span 5",
440
- "span-6": "span 6 / span 6",
441
- "span-7": "span 7 / span 7",
442
- "span-8": "span 8 / span 8",
443
- "span-9": "span 9 / span 9",
444
- "span-10": "span 10 / span 10",
445
- "span-11": "span 11 / span 11",
446
- "span-12": "span 12 / span 12",
447
- "span-full": "1 / -1"
448
- },
449
- gridColumnEnd: {
450
- auto: "auto",
451
- 1: "1",
452
- 2: "2",
453
- 3: "3",
454
- 4: "4",
455
- 5: "5",
456
- 6: "6",
457
- 7: "7",
458
- 8: "8",
459
- 9: "9",
460
- 10: "10",
461
- 11: "11",
462
- 12: "12",
463
- 13: "13"
464
- },
465
- gridColumnStart: {
466
- auto: "auto",
467
- 1: "1",
468
- 2: "2",
469
- 3: "3",
470
- 4: "4",
471
- 5: "5",
472
- 6: "6",
473
- 7: "7",
474
- 8: "8",
475
- 9: "9",
476
- 10: "10",
477
- 11: "11",
478
- 12: "12",
479
- 13: "13"
480
- },
481
- gridRow: {
482
- auto: "auto",
483
- "span-1": "span 1 / span 1",
484
- "span-2": "span 2 / span 2",
485
- "span-3": "span 3 / span 3",
486
- "span-4": "span 4 / span 4",
487
- "span-5": "span 5 / span 5",
488
- "span-6": "span 6 / span 6",
489
- "span-7": "span 7 / span 7",
490
- "span-8": "span 8 / span 8",
491
- "span-9": "span 9 / span 9",
492
- "span-10": "span 10 / span 10",
493
- "span-11": "span 11 / span 11",
494
- "span-12": "span 12 / span 12",
495
- "span-full": "1 / -1"
496
- },
497
- gridRowEnd: {
498
- auto: "auto",
499
- 1: "1",
500
- 2: "2",
501
- 3: "3",
502
- 4: "4",
503
- 5: "5",
504
- 6: "6",
505
- 7: "7",
506
- 8: "8",
507
- 9: "9",
508
- 10: "10",
509
- 11: "11",
510
- 12: "12",
511
- 13: "13"
512
- },
513
- gridRowStart: {
514
- auto: "auto",
515
- 1: "1",
516
- 2: "2",
517
- 3: "3",
518
- 4: "4",
519
- 5: "5",
520
- 6: "6",
521
- 7: "7",
522
- 8: "8",
523
- 9: "9",
524
- 10: "10",
525
- 11: "11",
526
- 12: "12",
527
- 13: "13"
528
- },
529
- gridTemplateColumns: {
530
- none: "none",
531
- subgrid: "subgrid",
532
- 1: "repeat(1, minmax(0, 1fr))",
533
- 2: "repeat(2, minmax(0, 1fr))",
534
- 3: "repeat(3, minmax(0, 1fr))",
535
- 4: "repeat(4, minmax(0, 1fr))",
536
- 5: "repeat(5, minmax(0, 1fr))",
537
- 6: "repeat(6, minmax(0, 1fr))",
538
- 7: "repeat(7, minmax(0, 1fr))",
539
- 8: "repeat(8, minmax(0, 1fr))",
540
- 9: "repeat(9, minmax(0, 1fr))",
541
- 10: "repeat(10, minmax(0, 1fr))",
542
- 11: "repeat(11, minmax(0, 1fr))",
543
- 12: "repeat(12, minmax(0, 1fr))"
544
- },
545
- gridTemplateRows: {
546
- none: "none",
547
- subgrid: "subgrid",
548
- 1: "repeat(1, minmax(0, 1fr))",
549
- 2: "repeat(2, minmax(0, 1fr))",
550
- 3: "repeat(3, minmax(0, 1fr))",
551
- 4: "repeat(4, minmax(0, 1fr))",
552
- 5: "repeat(5, minmax(0, 1fr))",
553
- 6: "repeat(6, minmax(0, 1fr))",
554
- 7: "repeat(7, minmax(0, 1fr))",
555
- 8: "repeat(8, minmax(0, 1fr))",
556
- 9: "repeat(9, minmax(0, 1fr))",
557
- 10: "repeat(10, minmax(0, 1fr))",
558
- 11: "repeat(11, minmax(0, 1fr))",
559
- 12: "repeat(12, minmax(0, 1fr))"
560
- },
561
- height: ({ theme }) => ({
562
- auto: "auto",
563
- ...theme("spacing"),
564
- "1/2": "50%",
565
- "1/3": "33.333333%",
566
- "2/3": "66.666667%",
567
- "1/4": "25%",
568
- "2/4": "50%",
569
- "3/4": "75%",
570
- "1/5": "20%",
571
- "2/5": "40%",
572
- "3/5": "60%",
573
- "4/5": "80%",
574
- "1/6": "16.666667%",
575
- "2/6": "33.333333%",
576
- "3/6": "50%",
577
- "4/6": "66.666667%",
578
- "5/6": "83.333333%",
579
- full: "100%",
580
- screen: "100vh",
581
- svh: "100svh",
582
- lvh: "100lvh",
583
- dvh: "100dvh",
584
- min: "min-content",
585
- max: "max-content",
586
- fit: "fit-content"
587
- }),
588
- hueRotate: {
589
- 0: "0deg",
590
- 15: "15deg",
591
- 30: "30deg",
592
- 60: "60deg",
593
- 90: "90deg",
594
- 180: "180deg"
595
- },
596
- inset: ({ theme }) => ({
597
- auto: "auto",
598
- ...theme("spacing"),
599
- "1/2": "50%",
600
- "1/3": "33.333333%",
601
- "2/3": "66.666667%",
602
- "1/4": "25%",
603
- "2/4": "50%",
604
- "3/4": "75%",
605
- full: "100%"
606
- }),
607
- invert: {
608
- 0: "0",
609
- DEFAULT: "100%"
610
- },
611
- keyframes: {
612
- spin: {
613
- to: {
614
- transform: "rotate(360deg)"
615
- }
616
- },
617
- ping: {
618
- "75%, 100%": {
619
- transform: "scale(2)",
620
- opacity: "0"
621
- }
622
- },
623
- pulse: {
624
- "50%": {
625
- opacity: ".5"
626
- }
627
- },
628
- bounce: {
629
- "0%, 100%": {
630
- transform: "translateY(-25%)",
631
- animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
632
- },
633
- "50%": {
634
- transform: "none",
635
- animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
636
- }
637
- }
638
- },
639
- letterSpacing: {
640
- tighter: "-0.05em",
641
- tight: "-0.025em",
642
- normal: "0em",
643
- wide: "0.025em",
644
- wider: "0.05em",
645
- widest: "0.1em"
646
- },
647
- lineHeight: {
648
- none: "1",
649
- tight: "1.25",
650
- snug: "1.375",
651
- normal: "1.5",
652
- relaxed: "1.625",
653
- loose: "2",
654
- 3: ".75rem",
655
- 4: "1rem",
656
- 5: "1.25rem",
657
- 6: "1.5rem",
658
- 7: "1.75rem",
659
- 8: "2rem",
660
- 9: "2.25rem",
661
- 10: "2.5rem"
662
- },
663
- listStyleType: {
664
- none: "none",
665
- disc: "disc",
666
- decimal: "decimal"
667
- },
668
- listStyleImage: {
669
- none: "none"
670
- },
671
- margin: ({ theme }) => ({
672
- auto: "auto",
673
- ...theme("spacing")
674
- }),
675
- lineClamp: {
676
- 1: "1",
677
- 2: "2",
678
- 3: "3",
679
- 4: "4",
680
- 5: "5",
681
- 6: "6"
682
- },
683
- maxHeight: ({ theme }) => ({
684
- ...theme("spacing"),
685
- none: "none",
686
- full: "100%",
687
- screen: "100vh",
688
- svh: "100svh",
689
- lvh: "100lvh",
690
- dvh: "100dvh",
691
- min: "min-content",
692
- max: "max-content",
693
- fit: "fit-content"
694
- }),
695
- maxWidth: ({ theme, breakpoints }) => ({
696
- ...theme("spacing"),
697
- none: "none",
698
- xs: "20rem",
699
- sm: "24rem",
700
- md: "28rem",
701
- lg: "32rem",
702
- xl: "36rem",
703
- "2xl": "42rem",
704
- "3xl": "48rem",
705
- "4xl": "56rem",
706
- "5xl": "64rem",
707
- "6xl": "72rem",
708
- "7xl": "80rem",
709
- full: "100%",
710
- min: "min-content",
711
- max: "max-content",
712
- fit: "fit-content",
713
- prose: "65ch",
714
- ...breakpoints(theme("screens"))
715
- }),
716
- minHeight: ({ theme }) => ({
717
- ...theme("spacing"),
718
- full: "100%",
719
- screen: "100vh",
720
- svh: "100svh",
721
- lvh: "100lvh",
722
- dvh: "100dvh",
723
- min: "min-content",
724
- max: "max-content",
725
- fit: "fit-content"
726
- }),
727
- minWidth: ({ theme }) => ({
728
- ...theme("spacing"),
729
- full: "100%",
730
- min: "min-content",
731
- max: "max-content",
732
- fit: "fit-content"
733
- }),
734
- objectPosition: {
735
- bottom: "bottom",
736
- center: "center",
737
- left: "left",
738
- "left-bottom": "left bottom",
739
- "left-top": "left top",
740
- right: "right",
741
- "right-bottom": "right bottom",
742
- "right-top": "right top",
743
- top: "top"
744
- },
745
- opacity: {
746
- 0: "0",
747
- 5: "0.05",
748
- 10: "0.1",
749
- 15: "0.15",
750
- 20: "0.2",
751
- 25: "0.25",
752
- 30: "0.3",
753
- 35: "0.35",
754
- 40: "0.4",
755
- 45: "0.45",
756
- 50: "0.5",
757
- 55: "0.55",
758
- 60: "0.6",
759
- 65: "0.65",
760
- 70: "0.7",
761
- 75: "0.75",
762
- 80: "0.8",
763
- 85: "0.85",
764
- 90: "0.9",
765
- 95: "0.95",
766
- 100: "1"
767
- },
768
- order: {
769
- first: "-9999",
770
- last: "9999",
771
- none: "0",
772
- 1: "1",
773
- 2: "2",
774
- 3: "3",
775
- 4: "4",
776
- 5: "5",
777
- 6: "6",
778
- 7: "7",
779
- 8: "8",
780
- 9: "9",
781
- 10: "10",
782
- 11: "11",
783
- 12: "12"
784
- },
785
- outlineColor: ({ theme }) => theme("colors"),
786
- outlineOffset: {
787
- 0: "0px",
788
- 1: "1px",
789
- 2: "2px",
790
- 4: "4px",
791
- 8: "8px"
792
- },
793
- outlineWidth: {
794
- 0: "0px",
795
- 1: "1px",
796
- 2: "2px",
797
- 4: "4px",
798
- 8: "8px"
799
- },
800
- padding: ({ theme }) => theme("spacing"),
801
- placeholderColor: ({ theme }) => theme("colors"),
802
- placeholderOpacity: ({ theme }) => theme("opacity"),
803
- ringColor: ({ theme }) => ({
804
- DEFAULT: theme("colors.blue.500", "#3b82f6"),
805
- ...theme("colors")
806
- }),
807
- ringOffsetColor: ({ theme }) => theme("colors"),
808
- ringOffsetWidth: {
809
- 0: "0px",
810
- 1: "1px",
811
- 2: "2px",
812
- 4: "4px",
813
- 8: "8px"
814
- },
815
- ringOpacity: ({ theme }) => ({
816
- DEFAULT: "0.5",
817
- ...theme("opacity")
818
- }),
819
- ringWidth: {
820
- DEFAULT: "3px",
821
- 0: "0px",
822
- 1: "1px",
823
- 2: "2px",
824
- 4: "4px",
825
- 8: "8px"
826
- },
827
- rotate: {
828
- 0: "0deg",
829
- 1: "1deg",
830
- 2: "2deg",
831
- 3: "3deg",
832
- 6: "6deg",
833
- 12: "12deg",
834
- 45: "45deg",
835
- 90: "90deg",
836
- 180: "180deg"
837
- },
838
- saturate: {
839
- 0: "0",
840
- 50: ".5",
841
- 100: "1",
842
- 150: "1.5",
843
- 200: "2"
844
- },
845
- scale: {
846
- 0: "0",
847
- 50: ".5",
848
- 75: ".75",
849
- 90: ".9",
850
- 95: ".95",
851
- 100: "1",
852
- 105: "1.05",
853
- 110: "1.1",
854
- 125: "1.25",
855
- 150: "1.5"
856
- },
857
- screens: {
858
- sm: "640px",
859
- md: "768px",
860
- lg: "1024px",
861
- xl: "1280px",
862
- "2xl": "1536px"
863
- },
864
- scrollMargin: ({ theme }) => ({
865
- ...theme("spacing")
866
- }),
867
- scrollPadding: ({ theme }) => theme("spacing"),
868
- sepia: {
869
- 0: "0",
870
- DEFAULT: "100%"
871
- },
872
- skew: {
873
- 0: "0deg",
874
- 1: "1deg",
875
- 2: "2deg",
876
- 3: "3deg",
877
- 6: "6deg",
878
- 12: "12deg"
879
- },
880
- space: ({ theme }) => ({
881
- ...theme("spacing")
882
- }),
883
- spacing: {
884
- px: "1px",
885
- 0: "0px",
886
- 0.5: "0.125rem",
887
- 1: "0.25rem",
888
- 1.5: "0.375rem",
889
- 2: "0.5rem",
890
- 2.5: "0.625rem",
891
- 3: "0.75rem",
892
- 3.5: "0.875rem",
893
- 4: "1rem",
894
- 5: "1.25rem",
895
- 6: "1.5rem",
896
- 7: "1.75rem",
897
- 8: "2rem",
898
- 9: "2.25rem",
899
- 10: "2.5rem",
900
- 11: "2.75rem",
901
- 12: "3rem",
902
- 14: "3.5rem",
903
- 16: "4rem",
904
- 20: "5rem",
905
- 24: "6rem",
906
- 28: "7rem",
907
- 32: "8rem",
908
- 36: "9rem",
909
- 40: "10rem",
910
- 44: "11rem",
911
- 48: "12rem",
912
- 52: "13rem",
913
- 56: "14rem",
914
- 60: "15rem",
915
- 64: "16rem",
916
- 72: "18rem",
917
- 80: "20rem",
918
- 96: "24rem"
919
- },
920
- stroke: ({ theme }) => ({
921
- none: "none",
922
- ...theme("colors")
923
- }),
924
- strokeWidth: {
925
- 0: "0",
926
- 1: "1",
927
- 2: "2"
928
- },
929
- supports: {},
930
- data: {},
931
- textColor: ({ theme }) => theme("colors"),
932
- textDecorationColor: ({ theme }) => theme("colors"),
933
- textDecorationThickness: {
934
- auto: "auto",
935
- "from-font": "from-font",
936
- 0: "0px",
937
- 1: "1px",
938
- 2: "2px",
939
- 4: "4px",
940
- 8: "8px"
941
- },
942
- textIndent: ({ theme }) => ({
943
- ...theme("spacing")
944
- }),
945
- textOpacity: ({ theme }) => theme("opacity"),
946
- textUnderlineOffset: {
947
- auto: "auto",
948
- 0: "0px",
949
- 1: "1px",
950
- 2: "2px",
951
- 4: "4px",
952
- 8: "8px"
953
- },
954
- transformOrigin: {
955
- center: "center",
956
- top: "top",
957
- "top-right": "top right",
958
- right: "right",
959
- "bottom-right": "bottom right",
960
- bottom: "bottom",
961
- "bottom-left": "bottom left",
962
- left: "left",
963
- "top-left": "top left"
964
- },
965
- transitionDelay: {
966
- 0: "0s",
967
- 75: "75ms",
968
- 100: "100ms",
969
- 150: "150ms",
970
- 200: "200ms",
971
- 300: "300ms",
972
- 500: "500ms",
973
- 700: "700ms",
974
- 1e3: "1000ms"
975
- },
976
- transitionDuration: {
977
- DEFAULT: "150ms",
978
- 0: "0s",
979
- 75: "75ms",
980
- 100: "100ms",
981
- 150: "150ms",
982
- 200: "200ms",
983
- 300: "300ms",
984
- 500: "500ms",
985
- 700: "700ms",
986
- 1e3: "1000ms"
987
- },
988
- transitionProperty: {
989
- none: "none",
990
- all: "all",
991
- DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
992
- colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
993
- opacity: "opacity",
994
- shadow: "box-shadow",
995
- transform: "transform"
996
- },
997
- transitionTimingFunction: {
998
- DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
999
- linear: "linear",
1000
- in: "cubic-bezier(0.4, 0, 1, 1)",
1001
- out: "cubic-bezier(0, 0, 0.2, 1)",
1002
- "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
1003
- },
1004
- translate: ({ theme }) => ({
1005
- ...theme("spacing"),
1006
- "1/2": "50%",
1007
- "1/3": "33.333333%",
1008
- "2/3": "66.666667%",
1009
- "1/4": "25%",
1010
- "2/4": "50%",
1011
- "3/4": "75%",
1012
- full: "100%"
1013
- }),
1014
- size: ({ theme }) => ({
1015
- auto: "auto",
1016
- ...theme("spacing"),
1017
- "1/2": "50%",
1018
- "1/3": "33.333333%",
1019
- "2/3": "66.666667%",
1020
- "1/4": "25%",
1021
- "2/4": "50%",
1022
- "3/4": "75%",
1023
- "1/5": "20%",
1024
- "2/5": "40%",
1025
- "3/5": "60%",
1026
- "4/5": "80%",
1027
- "1/6": "16.666667%",
1028
- "2/6": "33.333333%",
1029
- "3/6": "50%",
1030
- "4/6": "66.666667%",
1031
- "5/6": "83.333333%",
1032
- "1/12": "8.333333%",
1033
- "2/12": "16.666667%",
1034
- "3/12": "25%",
1035
- "4/12": "33.333333%",
1036
- "5/12": "41.666667%",
1037
- "6/12": "50%",
1038
- "7/12": "58.333333%",
1039
- "8/12": "66.666667%",
1040
- "9/12": "75%",
1041
- "10/12": "83.333333%",
1042
- "11/12": "91.666667%",
1043
- full: "100%",
1044
- min: "min-content",
1045
- max: "max-content",
1046
- fit: "fit-content"
1047
- }),
1048
- width: ({ theme }) => ({
1049
- auto: "auto",
1050
- ...theme("spacing"),
1051
- "1/2": "50%",
1052
- "1/3": "33.333333%",
1053
- "2/3": "66.666667%",
1054
- "1/4": "25%",
1055
- "2/4": "50%",
1056
- "3/4": "75%",
1057
- "1/5": "20%",
1058
- "2/5": "40%",
1059
- "3/5": "60%",
1060
- "4/5": "80%",
1061
- "1/6": "16.666667%",
1062
- "2/6": "33.333333%",
1063
- "3/6": "50%",
1064
- "4/6": "66.666667%",
1065
- "5/6": "83.333333%",
1066
- "1/12": "8.333333%",
1067
- "2/12": "16.666667%",
1068
- "3/12": "25%",
1069
- "4/12": "33.333333%",
1070
- "5/12": "41.666667%",
1071
- "6/12": "50%",
1072
- "7/12": "58.333333%",
1073
- "8/12": "66.666667%",
1074
- "9/12": "75%",
1075
- "10/12": "83.333333%",
1076
- "11/12": "91.666667%",
1077
- full: "100%",
1078
- screen: "100vw",
1079
- svw: "100svw",
1080
- lvw: "100lvw",
1081
- dvw: "100dvw",
1082
- min: "min-content",
1083
- max: "max-content",
1084
- fit: "fit-content"
1085
- }),
1086
- willChange: {
1087
- auto: "auto",
1088
- scroll: "scroll-position",
1089
- contents: "contents",
1090
- transform: "transform"
1091
- },
1092
- zIndex: {
1093
- auto: "auto",
1094
- 0: "0",
1095
- 10: "10",
1096
- 20: "20",
1097
- 30: "30",
1098
- 40: "40",
1099
- 50: "50"
1100
- }
1101
- },
1102
- plugins: []
1103
- };
1104
- }
1105
- });
1106
-
1107
- // ../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/public/default-theme.js
1108
- var require_default_theme = __commonJS({
1109
- "../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/lib/public/default-theme.js"(exports) {
1110
- "use strict";
1111
- Object.defineProperty(exports, "__esModule", {
1112
- value: true
1113
- });
1114
- Object.defineProperty(exports, "default", {
1115
- enumerable: true,
1116
- get: function() {
1117
- return _default;
1118
- }
1119
- });
1120
- var _cloneDeep = require_cloneDeep();
1121
- var _configfull = /* @__PURE__ */ _interop_require_default(require_config_full());
1122
- function _interop_require_default(obj) {
1123
- return obj && obj.__esModule ? obj : {
1124
- default: obj
1125
- };
1126
- }
1127
- var _default = (0, _cloneDeep.cloneDeep)(_configfull.default.theme);
1128
- }
1129
- });
1130
-
1131
- // ../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/defaultTheme.js
1132
- var require_defaultTheme = __commonJS({
1133
- "../../node_modules/.pnpm/tailwindcss@3.4.17/node_modules/tailwindcss/defaultTheme.js"(exports, module) {
1134
- "use strict";
1135
- var defaultTheme = require_default_theme();
1136
- module.exports = (defaultTheme.__esModule ? defaultTheme : { default: defaultTheme }).default;
1137
- }
1138
- });
1139
-
1140
- // src/preset.ts
1141
- var import_defaultTheme = __toESM(require_defaultTheme());
1142
- import { createPreset } from "@marigold/theme-preset";
1143
- var preset = createPreset({
1144
- content: [
1145
- "./node_modules/@marigold/components/dist/*.js",
1146
- "./node_modules/@marigold/system/dist/*.js",
1147
- "./node_modules/@marigold/theme-docs/dist/index.js"
1148
- ],
1149
- theme: {
1150
- container: {
1151
- center: true,
1152
- padding: "2rem",
1153
- screens
1154
- },
1155
- extend: {
1156
- fontFamily: {
1157
- body: ["var(--font-sans)", ...import_defaultTheme.fontFamily.sans]
1158
- },
1159
- animation: {
1160
- "shiny-text": "shiny-text 8s infinite"
1161
- },
1162
- keyframes: {
1163
- "shiny-text": {
1164
- "0%, 90%, 100%": {
1165
- "background-position": "calc(-100% - var(--shiny-width)) 0"
1166
- },
1167
- "30%, 60%": {
1168
- "background-position": "calc(100% + var(--shiny-width)) 0"
1169
- }
1170
- }
1171
- },
1172
- colors
1173
- }
1174
- }
1175
- });
1176
- export {
1177
- preset
1178
- };
1179
- //# sourceMappingURL=preset.mjs.map