@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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Marigold UI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # `@marigold/theme-docs`
2
+
3
+ > Marigol's theme used for the docs website
@@ -0,0 +1,615 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
8
+ get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
9
+ }) : x)(function(x) {
10
+ if (typeof require !== "undefined")
11
+ return require.apply(this, arguments);
12
+ throw Error('Dynamic require of "' + x + '" is not supported');
13
+ });
14
+ var __commonJS = (cb, mod) => function __require2() {
15
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
16
+ };
17
+ var __export = (target, all) => {
18
+ for (var name in all)
19
+ __defProp(target, name, { get: all[name], enumerable: true });
20
+ };
21
+ var __copyProps = (to, from, except, desc) => {
22
+ if (from && typeof from === "object" || typeof from === "function") {
23
+ for (let key of __getOwnPropNames(from))
24
+ if (!__hasOwnProp.call(to, key) && key !== except)
25
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
26
+ }
27
+ return to;
28
+ };
29
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
30
+ // If the importer is in node compatibility mode or this is not an ESM
31
+ // file that has been converted to a CommonJS file using a Babel-
32
+ // compatible transform (i.e. "__esModule" has not been set), then set
33
+ // "default" to the CommonJS "module.exports" for node compatibility.
34
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
35
+ mod
36
+ ));
37
+
38
+ // ../../node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js
39
+ var require_picocolors = __commonJS({
40
+ "../../node_modules/.pnpm/picocolors@1.0.1/node_modules/picocolors/picocolors.js"(exports, module) {
41
+ "use strict";
42
+ var argv = process.argv || [];
43
+ var env = process.env;
44
+ var isColorSupported = !("NO_COLOR" in env || argv.includes("--no-color")) && ("FORCE_COLOR" in env || argv.includes("--color") || process.platform === "win32" || __require != null && __require("tty").isatty(1) && env.TERM !== "dumb" || "CI" in env);
45
+ var formatter = (open, close, replace = open) => (input) => {
46
+ let string = "" + input;
47
+ let index = string.indexOf(close, open.length);
48
+ return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
49
+ };
50
+ var replaceClose = (string, close, replace, index) => {
51
+ let result = "";
52
+ let cursor = 0;
53
+ do {
54
+ result += string.substring(cursor, index) + replace;
55
+ cursor = index + close.length;
56
+ index = string.indexOf(close, cursor);
57
+ } while (~index);
58
+ return result + string.substring(cursor);
59
+ };
60
+ var createColors = (enabled = isColorSupported) => {
61
+ let init = enabled ? formatter : () => String;
62
+ return {
63
+ isColorSupported: enabled,
64
+ reset: init("\x1B[0m", "\x1B[0m"),
65
+ bold: init("\x1B[1m", "\x1B[22m", "\x1B[22m\x1B[1m"),
66
+ dim: init("\x1B[2m", "\x1B[22m", "\x1B[22m\x1B[2m"),
67
+ italic: init("\x1B[3m", "\x1B[23m"),
68
+ underline: init("\x1B[4m", "\x1B[24m"),
69
+ inverse: init("\x1B[7m", "\x1B[27m"),
70
+ hidden: init("\x1B[8m", "\x1B[28m"),
71
+ strikethrough: init("\x1B[9m", "\x1B[29m"),
72
+ black: init("\x1B[30m", "\x1B[39m"),
73
+ red: init("\x1B[31m", "\x1B[39m"),
74
+ green: init("\x1B[32m", "\x1B[39m"),
75
+ yellow: init("\x1B[33m", "\x1B[39m"),
76
+ blue: init("\x1B[34m", "\x1B[39m"),
77
+ magenta: init("\x1B[35m", "\x1B[39m"),
78
+ cyan: init("\x1B[36m", "\x1B[39m"),
79
+ white: init("\x1B[37m", "\x1B[39m"),
80
+ gray: init("\x1B[90m", "\x1B[39m"),
81
+ bgBlack: init("\x1B[40m", "\x1B[49m"),
82
+ bgRed: init("\x1B[41m", "\x1B[49m"),
83
+ bgGreen: init("\x1B[42m", "\x1B[49m"),
84
+ bgYellow: init("\x1B[43m", "\x1B[49m"),
85
+ bgBlue: init("\x1B[44m", "\x1B[49m"),
86
+ bgMagenta: init("\x1B[45m", "\x1B[49m"),
87
+ bgCyan: init("\x1B[46m", "\x1B[49m"),
88
+ bgWhite: init("\x1B[47m", "\x1B[49m")
89
+ };
90
+ };
91
+ module.exports = createColors();
92
+ module.exports.createColors = createColors;
93
+ }
94
+ });
95
+
96
+ // ../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/lib/util/log.js
97
+ var require_log = __commonJS({
98
+ "../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/lib/util/log.js"(exports) {
99
+ "use strict";
100
+ Object.defineProperty(exports, "__esModule", {
101
+ value: true
102
+ });
103
+ function _export(target, all) {
104
+ for (var name in all)
105
+ Object.defineProperty(target, name, {
106
+ enumerable: true,
107
+ get: all[name]
108
+ });
109
+ }
110
+ _export(exports, {
111
+ dim: function() {
112
+ return dim;
113
+ },
114
+ default: function() {
115
+ return _default;
116
+ }
117
+ });
118
+ var _picocolors = /* @__PURE__ */ _interop_require_default(require_picocolors());
119
+ function _interop_require_default(obj) {
120
+ return obj && obj.__esModule ? obj : {
121
+ default: obj
122
+ };
123
+ }
124
+ var alreadyShown = /* @__PURE__ */ new Set();
125
+ function log(type, messages, key) {
126
+ if (typeof process !== "undefined" && process.env.JEST_WORKER_ID)
127
+ return;
128
+ if (key && alreadyShown.has(key))
129
+ return;
130
+ if (key)
131
+ alreadyShown.add(key);
132
+ console.warn("");
133
+ messages.forEach((message) => console.warn(type, "-", message));
134
+ }
135
+ function dim(input) {
136
+ return _picocolors.default.dim(input);
137
+ }
138
+ var _default = {
139
+ info(key, messages) {
140
+ log(_picocolors.default.bold(_picocolors.default.cyan("info")), ...Array.isArray(key) ? [
141
+ key
142
+ ] : [
143
+ messages,
144
+ key
145
+ ]);
146
+ },
147
+ warn(key, messages) {
148
+ log(_picocolors.default.bold(_picocolors.default.yellow("warn")), ...Array.isArray(key) ? [
149
+ key
150
+ ] : [
151
+ messages,
152
+ key
153
+ ]);
154
+ },
155
+ risk(key, messages) {
156
+ log(_picocolors.default.bold(_picocolors.default.magenta("risk")), ...Array.isArray(key) ? [
157
+ key
158
+ ] : [
159
+ messages,
160
+ key
161
+ ]);
162
+ }
163
+ };
164
+ }
165
+ });
166
+
167
+ // ../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/lib/public/colors.js
168
+ var require_colors = __commonJS({
169
+ "../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/lib/public/colors.js"(exports) {
170
+ "use strict";
171
+ Object.defineProperty(exports, "__esModule", {
172
+ value: true
173
+ });
174
+ Object.defineProperty(exports, "default", {
175
+ enumerable: true,
176
+ get: function() {
177
+ return _default;
178
+ }
179
+ });
180
+ var _log = /* @__PURE__ */ _interop_require_default(require_log());
181
+ function _interop_require_default(obj) {
182
+ return obj && obj.__esModule ? obj : {
183
+ default: obj
184
+ };
185
+ }
186
+ function warn({ version, from, to }) {
187
+ _log.default.warn(`${from}-color-renamed`, [
188
+ `As of Tailwind CSS ${version}, \`${from}\` has been renamed to \`${to}\`.`,
189
+ "Update your configuration file to silence this warning."
190
+ ]);
191
+ }
192
+ var _default = {
193
+ inherit: "inherit",
194
+ current: "currentColor",
195
+ transparent: "transparent",
196
+ black: "#000",
197
+ white: "#fff",
198
+ slate: {
199
+ 50: "#f8fafc",
200
+ 100: "#f1f5f9",
201
+ 200: "#e2e8f0",
202
+ 300: "#cbd5e1",
203
+ 400: "#94a3b8",
204
+ 500: "#64748b",
205
+ 600: "#475569",
206
+ 700: "#334155",
207
+ 800: "#1e293b",
208
+ 900: "#0f172a",
209
+ 950: "#020617"
210
+ },
211
+ gray: {
212
+ 50: "#f9fafb",
213
+ 100: "#f3f4f6",
214
+ 200: "#e5e7eb",
215
+ 300: "#d1d5db",
216
+ 400: "#9ca3af",
217
+ 500: "#6b7280",
218
+ 600: "#4b5563",
219
+ 700: "#374151",
220
+ 800: "#1f2937",
221
+ 900: "#111827",
222
+ 950: "#030712"
223
+ },
224
+ zinc: {
225
+ 50: "#fafafa",
226
+ 100: "#f4f4f5",
227
+ 200: "#e4e4e7",
228
+ 300: "#d4d4d8",
229
+ 400: "#a1a1aa",
230
+ 500: "#71717a",
231
+ 600: "#52525b",
232
+ 700: "#3f3f46",
233
+ 800: "#27272a",
234
+ 900: "#18181b",
235
+ 950: "#09090b"
236
+ },
237
+ neutral: {
238
+ 50: "#fafafa",
239
+ 100: "#f5f5f5",
240
+ 200: "#e5e5e5",
241
+ 300: "#d4d4d4",
242
+ 400: "#a3a3a3",
243
+ 500: "#737373",
244
+ 600: "#525252",
245
+ 700: "#404040",
246
+ 800: "#262626",
247
+ 900: "#171717",
248
+ 950: "#0a0a0a"
249
+ },
250
+ stone: {
251
+ 50: "#fafaf9",
252
+ 100: "#f5f5f4",
253
+ 200: "#e7e5e4",
254
+ 300: "#d6d3d1",
255
+ 400: "#a8a29e",
256
+ 500: "#78716c",
257
+ 600: "#57534e",
258
+ 700: "#44403c",
259
+ 800: "#292524",
260
+ 900: "#1c1917",
261
+ 950: "#0c0a09"
262
+ },
263
+ red: {
264
+ 50: "#fef2f2",
265
+ 100: "#fee2e2",
266
+ 200: "#fecaca",
267
+ 300: "#fca5a5",
268
+ 400: "#f87171",
269
+ 500: "#ef4444",
270
+ 600: "#dc2626",
271
+ 700: "#b91c1c",
272
+ 800: "#991b1b",
273
+ 900: "#7f1d1d",
274
+ 950: "#450a0a"
275
+ },
276
+ orange: {
277
+ 50: "#fff7ed",
278
+ 100: "#ffedd5",
279
+ 200: "#fed7aa",
280
+ 300: "#fdba74",
281
+ 400: "#fb923c",
282
+ 500: "#f97316",
283
+ 600: "#ea580c",
284
+ 700: "#c2410c",
285
+ 800: "#9a3412",
286
+ 900: "#7c2d12",
287
+ 950: "#431407"
288
+ },
289
+ amber: {
290
+ 50: "#fffbeb",
291
+ 100: "#fef3c7",
292
+ 200: "#fde68a",
293
+ 300: "#fcd34d",
294
+ 400: "#fbbf24",
295
+ 500: "#f59e0b",
296
+ 600: "#d97706",
297
+ 700: "#b45309",
298
+ 800: "#92400e",
299
+ 900: "#78350f",
300
+ 950: "#451a03"
301
+ },
302
+ yellow: {
303
+ 50: "#fefce8",
304
+ 100: "#fef9c3",
305
+ 200: "#fef08a",
306
+ 300: "#fde047",
307
+ 400: "#facc15",
308
+ 500: "#eab308",
309
+ 600: "#ca8a04",
310
+ 700: "#a16207",
311
+ 800: "#854d0e",
312
+ 900: "#713f12",
313
+ 950: "#422006"
314
+ },
315
+ lime: {
316
+ 50: "#f7fee7",
317
+ 100: "#ecfccb",
318
+ 200: "#d9f99d",
319
+ 300: "#bef264",
320
+ 400: "#a3e635",
321
+ 500: "#84cc16",
322
+ 600: "#65a30d",
323
+ 700: "#4d7c0f",
324
+ 800: "#3f6212",
325
+ 900: "#365314",
326
+ 950: "#1a2e05"
327
+ },
328
+ green: {
329
+ 50: "#f0fdf4",
330
+ 100: "#dcfce7",
331
+ 200: "#bbf7d0",
332
+ 300: "#86efac",
333
+ 400: "#4ade80",
334
+ 500: "#22c55e",
335
+ 600: "#16a34a",
336
+ 700: "#15803d",
337
+ 800: "#166534",
338
+ 900: "#14532d",
339
+ 950: "#052e16"
340
+ },
341
+ emerald: {
342
+ 50: "#ecfdf5",
343
+ 100: "#d1fae5",
344
+ 200: "#a7f3d0",
345
+ 300: "#6ee7b7",
346
+ 400: "#34d399",
347
+ 500: "#10b981",
348
+ 600: "#059669",
349
+ 700: "#047857",
350
+ 800: "#065f46",
351
+ 900: "#064e3b",
352
+ 950: "#022c22"
353
+ },
354
+ teal: {
355
+ 50: "#f0fdfa",
356
+ 100: "#ccfbf1",
357
+ 200: "#99f6e4",
358
+ 300: "#5eead4",
359
+ 400: "#2dd4bf",
360
+ 500: "#14b8a6",
361
+ 600: "#0d9488",
362
+ 700: "#0f766e",
363
+ 800: "#115e59",
364
+ 900: "#134e4a",
365
+ 950: "#042f2e"
366
+ },
367
+ cyan: {
368
+ 50: "#ecfeff",
369
+ 100: "#cffafe",
370
+ 200: "#a5f3fc",
371
+ 300: "#67e8f9",
372
+ 400: "#22d3ee",
373
+ 500: "#06b6d4",
374
+ 600: "#0891b2",
375
+ 700: "#0e7490",
376
+ 800: "#155e75",
377
+ 900: "#164e63",
378
+ 950: "#083344"
379
+ },
380
+ sky: {
381
+ 50: "#f0f9ff",
382
+ 100: "#e0f2fe",
383
+ 200: "#bae6fd",
384
+ 300: "#7dd3fc",
385
+ 400: "#38bdf8",
386
+ 500: "#0ea5e9",
387
+ 600: "#0284c7",
388
+ 700: "#0369a1",
389
+ 800: "#075985",
390
+ 900: "#0c4a6e",
391
+ 950: "#082f49"
392
+ },
393
+ blue: {
394
+ 50: "#eff6ff",
395
+ 100: "#dbeafe",
396
+ 200: "#bfdbfe",
397
+ 300: "#93c5fd",
398
+ 400: "#60a5fa",
399
+ 500: "#3b82f6",
400
+ 600: "#2563eb",
401
+ 700: "#1d4ed8",
402
+ 800: "#1e40af",
403
+ 900: "#1e3a8a",
404
+ 950: "#172554"
405
+ },
406
+ indigo: {
407
+ 50: "#eef2ff",
408
+ 100: "#e0e7ff",
409
+ 200: "#c7d2fe",
410
+ 300: "#a5b4fc",
411
+ 400: "#818cf8",
412
+ 500: "#6366f1",
413
+ 600: "#4f46e5",
414
+ 700: "#4338ca",
415
+ 800: "#3730a3",
416
+ 900: "#312e81",
417
+ 950: "#1e1b4b"
418
+ },
419
+ violet: {
420
+ 50: "#f5f3ff",
421
+ 100: "#ede9fe",
422
+ 200: "#ddd6fe",
423
+ 300: "#c4b5fd",
424
+ 400: "#a78bfa",
425
+ 500: "#8b5cf6",
426
+ 600: "#7c3aed",
427
+ 700: "#6d28d9",
428
+ 800: "#5b21b6",
429
+ 900: "#4c1d95",
430
+ 950: "#2e1065"
431
+ },
432
+ purple: {
433
+ 50: "#faf5ff",
434
+ 100: "#f3e8ff",
435
+ 200: "#e9d5ff",
436
+ 300: "#d8b4fe",
437
+ 400: "#c084fc",
438
+ 500: "#a855f7",
439
+ 600: "#9333ea",
440
+ 700: "#7e22ce",
441
+ 800: "#6b21a8",
442
+ 900: "#581c87",
443
+ 950: "#3b0764"
444
+ },
445
+ fuchsia: {
446
+ 50: "#fdf4ff",
447
+ 100: "#fae8ff",
448
+ 200: "#f5d0fe",
449
+ 300: "#f0abfc",
450
+ 400: "#e879f9",
451
+ 500: "#d946ef",
452
+ 600: "#c026d3",
453
+ 700: "#a21caf",
454
+ 800: "#86198f",
455
+ 900: "#701a75",
456
+ 950: "#4a044e"
457
+ },
458
+ pink: {
459
+ 50: "#fdf2f8",
460
+ 100: "#fce7f3",
461
+ 200: "#fbcfe8",
462
+ 300: "#f9a8d4",
463
+ 400: "#f472b6",
464
+ 500: "#ec4899",
465
+ 600: "#db2777",
466
+ 700: "#be185d",
467
+ 800: "#9d174d",
468
+ 900: "#831843",
469
+ 950: "#500724"
470
+ },
471
+ rose: {
472
+ 50: "#fff1f2",
473
+ 100: "#ffe4e6",
474
+ 200: "#fecdd3",
475
+ 300: "#fda4af",
476
+ 400: "#fb7185",
477
+ 500: "#f43f5e",
478
+ 600: "#e11d48",
479
+ 700: "#be123c",
480
+ 800: "#9f1239",
481
+ 900: "#881337",
482
+ 950: "#4c0519"
483
+ },
484
+ get lightBlue() {
485
+ warn({
486
+ version: "v2.2",
487
+ from: "lightBlue",
488
+ to: "sky"
489
+ });
490
+ return this.sky;
491
+ },
492
+ get warmGray() {
493
+ warn({
494
+ version: "v3.0",
495
+ from: "warmGray",
496
+ to: "stone"
497
+ });
498
+ return this.stone;
499
+ },
500
+ get trueGray() {
501
+ warn({
502
+ version: "v3.0",
503
+ from: "trueGray",
504
+ to: "neutral"
505
+ });
506
+ return this.neutral;
507
+ },
508
+ get coolGray() {
509
+ warn({
510
+ version: "v3.0",
511
+ from: "coolGray",
512
+ to: "gray"
513
+ });
514
+ return this.gray;
515
+ },
516
+ get blueGray() {
517
+ warn({
518
+ version: "v3.0",
519
+ from: "blueGray",
520
+ to: "slate"
521
+ });
522
+ return this.slate;
523
+ }
524
+ };
525
+ }
526
+ });
527
+
528
+ // ../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/colors.js
529
+ var require_colors2 = __commonJS({
530
+ "../../node_modules/.pnpm/tailwindcss@3.4.1/node_modules/tailwindcss/colors.js"(exports, module) {
531
+ "use strict";
532
+ var colors2 = require_colors();
533
+ module.exports = (colors2.__esModule ? colors2 : { default: colors2 }).default;
534
+ }
535
+ });
536
+
537
+ // src/tokens.ts
538
+ var import_colors = __toESM(require_colors2());
539
+ var brand = {
540
+ primary: {
541
+ 50: "#fff2e6",
542
+ 100: "#fee6cd",
543
+ 200: "#fdcc9b",
544
+ 300: "#fcb369",
545
+ 400: "#fb9937",
546
+ 500: "#fa8005",
547
+ 600: "#c86604",
548
+ 700: "#964d03",
549
+ 800: "#643302",
550
+ 900: "#321a01",
551
+ 950: "#190d00"
552
+ }
553
+ };
554
+ var code = {
555
+ "50": "#f6f7f9",
556
+ "100": "#ebecf3",
557
+ "200": "#d3d6e4",
558
+ "300": "#acb3cd",
559
+ "400": "#808cb0",
560
+ "500": "#606e97",
561
+ "600": "#4b557e",
562
+ "700": "#3e4666",
563
+ "800": "#363d56",
564
+ "900": "#292d3e",
565
+ "950": "#202231"
566
+ };
567
+ var colors = {
568
+ // Brand
569
+ // ---------------
570
+ ...brand,
571
+ secondary: import_colors.default.slate,
572
+ code,
573
+ // Text
574
+ // ---------------
575
+ text: {
576
+ primary: {
577
+ DEFAULT: import_colors.default.slate[950],
578
+ muted: import_colors.default.slate[500]
579
+ },
580
+ // State
581
+ info: import_colors.default.blue[800],
582
+ warning: import_colors.default.amber[800]
583
+ },
584
+ // Background
585
+ // ---------------
586
+ bg: {
587
+ body: import_colors.default.slate[50],
588
+ hover: import_colors.default.neutral[100],
589
+ muted: import_colors.default.slate[100],
590
+ underlay: import_colors.default.slate[500],
591
+ surface: {
592
+ DEFAULT: import_colors.default.white,
593
+ raised: import_colors.default.slate[200],
594
+ lowered: import_colors.default.slate[700],
595
+ overlay: import_colors.default.white
596
+ },
597
+ // Status
598
+ info: import_colors.default.blue[100],
599
+ warning: import_colors.default.amber[50]
600
+ },
601
+ // Border
602
+ // ---------------
603
+ border: {
604
+ DEFAULT: import_colors.default.slate[300],
605
+ primary: import_colors.default.slate[950]
606
+ }
607
+ };
608
+
609
+ export {
610
+ __commonJS,
611
+ __export,
612
+ __toESM,
613
+ colors
614
+ };
615
+ //# sourceMappingURL=chunk-SEKBKPVI.mjs.map