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