@nuvia/tailwind-config 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.
package/dist/index.cjs ADDED
@@ -0,0 +1,365 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/index.ts
31
+ var index_exports = {};
32
+ __export(index_exports, {
33
+ config: () => config,
34
+ default: () => config,
35
+ typographyConfig: () => typography_config_default
36
+ });
37
+ module.exports = __toCommonJS(index_exports);
38
+
39
+ // src/config.ts
40
+ var import_typography = __toESM(require("@tailwindcss/typography"), 1);
41
+ var import_tailwindcss_animate = __toESM(require("tailwindcss-animate"), 1);
42
+ var import_defaultTheme = __toESM(require("tailwindcss/defaultTheme"), 1);
43
+
44
+ // src/typography.config.ts
45
+ var typographyConfig = (theme) => ({
46
+ DEFAULT: {
47
+ css: {
48
+ ":first-child": {
49
+ marginTop: theme("margin.0")
50
+ },
51
+ "h1, h2, h3, h4, h5, h6": {
52
+ fontWeight: theme("fontWeight.semibold"),
53
+ letterSpacing: theme("letterSpacing.tight"),
54
+ marginBottom: theme("margin.4"),
55
+ "+ h1, + h2, + h3, + h4, + h5, + h6": {
56
+ marginTop: theme("margin.0")
57
+ }
58
+ },
59
+ h1: {
60
+ fontSize: theme("fontSize.3xl"),
61
+ marginTop: theme("margin.16")
62
+ },
63
+ h2: {
64
+ fontSize: theme("fontSize.2xl")
65
+ },
66
+ h3: {
67
+ fontSize: theme("fontSize.xl")
68
+ },
69
+ h4: {
70
+ fontSize: theme("fontSize.lg")
71
+ },
72
+ h5: {
73
+ fontSize: theme("fontSize.base")
74
+ },
75
+ h6: {
76
+ fontSize: theme("fontSize.base")
77
+ },
78
+ table: {
79
+ boxShadow: `0 0 0 1px ${theme("colors.gray.200")}`,
80
+ borderRadius: theme("borderRadius.md"),
81
+ overflow: "hidden",
82
+ p: {
83
+ margin: 0
84
+ },
85
+ th: {
86
+ paddingTop: "0.5714286em",
87
+ paddingRight: "0.5714286em",
88
+ paddingBottom: "0.5714286em",
89
+ paddingLeft: "0.5714286em",
90
+ backgroundColor: theme("colors.gray.100"),
91
+ "&:not(:last-child)": {
92
+ borderRightWidth: "1px",
93
+ borderRightColor: theme("colors.gray.200")
94
+ }
95
+ },
96
+ "tbody td, tfoot td": {
97
+ paddingLeft: "0.5714286em",
98
+ "&:not(:last-child)": {
99
+ borderRightWidth: "1px",
100
+ borderRightColor: theme("colors.gray.200")
101
+ }
102
+ }
103
+ },
104
+ code: {
105
+ "&::before, &::after": {
106
+ display: "none"
107
+ }
108
+ },
109
+ pre: {
110
+ backgroundColor: "transparent",
111
+ borderWidth: 1,
112
+ borderColor: theme("colors.gray.200")
113
+ }
114
+ }
115
+ },
116
+ invert: {
117
+ css: {
118
+ table: {
119
+ boxShadow: `0 0 0 1px ${theme("colors.gray.700")}`,
120
+ th: {
121
+ backgroundColor: theme("colors.gray.800"),
122
+ "&:not(:last-child)": {
123
+ borderRightColor: theme("colors.gray.700")
124
+ }
125
+ },
126
+ "tbody td, tfoot td": {
127
+ "&:not(:last-child)": {
128
+ borderRightColor: theme("colors.gray.700")
129
+ }
130
+ }
131
+ },
132
+ pre: {
133
+ borderColor: theme("colors.gray.800")
134
+ }
135
+ }
136
+ }
137
+ });
138
+ var typography_config_default = typographyConfig;
139
+
140
+ // src/config.ts
141
+ var config = {
142
+ darkMode: ["class"],
143
+ content: [
144
+ // Consumer app paths - these will be merged with app-specific content paths
145
+ "./node_modules/@nuvia/components/**/*.{ts,tsx,js,jsx}"
146
+ ],
147
+ theme: {
148
+ container: {
149
+ center: true,
150
+ padding: "2rem",
151
+ screens: {
152
+ "2xl": "1400px"
153
+ }
154
+ },
155
+ extend: {
156
+ colors: {
157
+ nuvia: {
158
+ "nimbus-100": "hsl(var(--color-nimbus-100) / <alpha-value>)",
159
+ "nimbus-200": "hsl(var(--color-nimbus-200) / <alpha-value>)",
160
+ "nimbus-300": "hsl(var(--color-nimbus-300) / <alpha-value>)",
161
+ "nimbus-400": "hsl(var(--color-nimbus-400) / <alpha-value>)",
162
+ "nimbus-500": "hsl(var(--color-nimbus-500) / <alpha-value>)",
163
+ "nimbus-600": "hsl(var(--color-nimbus-600) / <alpha-value>)",
164
+ "madrugada-100": "hsl(var(--color-madrugada-100) / <alpha-value>)",
165
+ "madrugada-200": "hsl(var(--color-madrugada-200) / <alpha-value>)",
166
+ "madrugada-300": "hsl(var(--color-madrugada-300) / <alpha-value>)",
167
+ "madrugada-400": "hsl(var(--color-madrugada-400) / <alpha-value>)",
168
+ "madrugada-500": "hsl(var(--color-madrugada-500) / <alpha-value>)",
169
+ "madrugada-600": "hsl(var(--color-madrugada-600) / <alpha-value>)",
170
+ "madrugada-700": "hsl(var(--color-madrugada-700) / <alpha-value>)",
171
+ "zafiro-100": "hsl(var(--color-zafiro-100) / <alpha-value>)",
172
+ "zafiro-200": "hsl(var(--color-zafiro-200) / <alpha-value>)",
173
+ "zafiro-300": "hsl(var(--color-zafiro-300) / <alpha-value>)",
174
+ "zafiro-400": "hsl(var(--color-zafiro-400) / <alpha-value>)",
175
+ "zafiro-500": "hsl(var(--color-zafiro-500) / <alpha-value>)",
176
+ "zafiro-600": "hsl(var(--color-zafiro-600) / <alpha-value>)",
177
+ "zafiro-700": "hsl(var(--color-zafiro-700) / <alpha-value>)",
178
+ "indigo-100": "hsl(var(--color-indigo-100) / <alpha-value>)",
179
+ "indigo-200": "hsl(var(--color-indigo-200) / <alpha-value>)",
180
+ "indigo-300": "hsl(var(--color-indigo-300) / <alpha-value>)",
181
+ "indigo-400": "hsl(var(--color-indigo-400) / <alpha-value>)",
182
+ "indigo-500": "hsl(var(--color-indigo-500) / <alpha-value>)",
183
+ "indigo-600": "hsl(var(--color-indigo-600) / <alpha-value>)",
184
+ "indigo-700": "hsl(var(--color-indigo-700) / <alpha-value>)",
185
+ "lumen-400": "hsl(var(--color-lumen-400) / <alpha-value>)",
186
+ "lumen-100": "hsl(var(--color-lumen-100) / <alpha-value>)",
187
+ "lumen-200": "hsl(var(--color-lumen-200) / <alpha-value>)",
188
+ "lumen-300": "hsl(var(--color-lumen-300) / <alpha-value>)",
189
+ "lumen-500": "hsl(var(--color-lumen-500) / <alpha-value>)",
190
+ "lumen-600": "hsl(var(--color-lumen-600) / <alpha-value>)",
191
+ "lumen-700": "hsl(var(--color-lumen-700) / <alpha-value>)",
192
+ "lumen-800": "hsl(var(--color-lumen-800) / <alpha-value>)",
193
+ "lilas-100": "hsl(var(--color-lilas-100) / <alpha-value>)",
194
+ "lilas-200": "hsl(var(--color-lilas-200) / <alpha-value>)",
195
+ "lilas-300": "hsl(var(--color-lilas-300) / <alpha-value>)",
196
+ "lilas-400": "hsl(var(--color-lilas-400) / <alpha-value>)",
197
+ "lilas-500": "hsl(var(--color-lilas-500) / <alpha-value>)",
198
+ "lilas-600": "hsl(var(--color-lilas-600) / <alpha-value>)",
199
+ "lilas-700": "hsl(var(--color-lilas-700) / <alpha-value>)",
200
+ "magenta-400": "hsl(var(--color-magenta-400) / <alpha-value>)",
201
+ "magma-400": "hsl(var(--color-magma-400) / <alpha-value>)",
202
+ "off-black-400": "hsl(var(--color-off-black-400) / <alpha-value>)"
203
+ },
204
+ input: "hsl(var(--input) / <alpha-value>)",
205
+ ring: "hsl(var(--ring) / <alpha-value>)",
206
+ text: {
207
+ DEFAULT: "hsl(var(--text-default-primary) / <alpha-value>)",
208
+ "default-primary": "hsl(var(--text-default-primary) / <alpha-value>)",
209
+ "default-secondary": "hsl(var(--text-default-secondary) / <alpha-value>)",
210
+ "brand-primary": "hsl(var(--text-brand-primary) / <alpha-value>)",
211
+ "brand-secondary": "hsl(var(--text-brand-secondary) / <alpha-value>)",
212
+ links: "hsl(var(--text-links) / <alpha-value>)",
213
+ disabled: "hsl(var(--text-disabled) / <alpha-value>)",
214
+ "default-inverted": "hsl(var(--text-default-inverted) / <alpha-value>)",
215
+ "general-light": "hsl(var(--text-general-light) / <alpha-value>)",
216
+ "general-dark": "hsl(var(--text-general-dark) / <alpha-value>)"
217
+ },
218
+ background: {
219
+ DEFAULT: "hsl(var(--background) / <alpha-value>)",
220
+ "default-light": "hsl(var(--background-default-light) / <alpha-value>)",
221
+ "default-medium": "hsl(var(--background-default-medium) / <alpha-value>)",
222
+ "default-heavy": "hsl(var(--background-default-heavy) / <alpha-value>)",
223
+ "default-accent": "hsl(var(--background-default-accent) / <alpha-value>)",
224
+ "primary-light": "hsl(var(--background-primary-light) / <alpha-value>)",
225
+ "primary-medium": "hsl(var(--background-primary-medium) / <alpha-value>)",
226
+ "primary-heavy": "hsl(var(--background-primary-heavy) / <alpha-value>)",
227
+ "secondary-light": "hsl(var(--background-secondary-light) / <alpha-value>)",
228
+ "secondary-medium": "hsl(var(--background-secondary-medium) / <alpha-value>)",
229
+ "secondary-heavy": "hsl(var(--background-secondary-heavy) / <alpha-value>)",
230
+ "accent-light": "hsl(var(--background-accent-light) / <alpha-value>)",
231
+ "accent-medium": "hsl(var(--background-accent-medium) / <alpha-value>)",
232
+ "accent-heavy": "hsl(var(--background-accent-heavy) / <alpha-value>)",
233
+ "accent-primary": "hsl(var(--background-accent-primary) / <alpha-value>)",
234
+ "accent-secondary": "hsl(var(--background-accent-secondary) / <alpha-value>)"
235
+ },
236
+ foreground: {
237
+ DEFAULT: "hsl(var(--foreground) / <alpha-value>)",
238
+ "default-light": "hsl(var(--foreground-default-light) / <alpha-value>)",
239
+ "default-xlight": "hsl(var(--foreground-default-xlight) / <alpha-value>)",
240
+ "default-heavy": "hsl(var(--foreground-default-heavy) / <alpha-value>)",
241
+ "primary-light": "hsl(var(--foreground-primary-light) / <alpha-value>)",
242
+ "primary-heavy": "hsl(var(--foreground-primary-heavy) / <alpha-value>)",
243
+ "primary-medium": "hsl(var(--foreground-primary-medium) / <alpha-value>)",
244
+ "secondary-light": "hsl(var(--foreground-secondary-light) / <alpha-value>)",
245
+ "secondary-heavy": "hsl(var(--foreground-secondary-heavy) / <alpha-value>)",
246
+ "secondary-medium": "hsl(var(--foreground-secondary-medium) / <alpha-value>)",
247
+ "accent-light": "hsl(var(--foreground-accent-light) / <alpha-value>)",
248
+ "accent-heavy": "hsl(var(--foreground-accent-heavy) / <alpha-value>)",
249
+ "accent-medium": "hsl(var(--foreground-accent-medium) / <alpha-value>)"
250
+ },
251
+ border: {
252
+ DEFAULT: "hsl(var(--border) / <alpha-value>)",
253
+ medium: "hsl(var(--border-medium) / <alpha-value>)",
254
+ "default-light": "hsl(var(--border-default-light) / <alpha-value>)",
255
+ "default-medium": "hsl(var(--border-default-medium) / <alpha-value>)",
256
+ "default-heavy": "hsl(var(--border-default-heavy) / <alpha-value>)",
257
+ "primary-light": "hsl(var(--border-primary-light) / <alpha-value>)",
258
+ "primary-medium": "hsl(var(--border-primary-medium) / <alpha-value>)",
259
+ "primary-heavy": "hsl(var(--border-primary-heavy) / <alpha-value>)",
260
+ "accent-light": "hsl(var(--border-accent-light) / <alpha-value>)",
261
+ "accent-medium": "hsl(var(--border-accent-medium) / <alpha-value>)",
262
+ "accent-heavy": "hsl(var(--border-accent-heavy) / <alpha-value>)"
263
+ },
264
+ primary: {
265
+ DEFAULT: "hsl(var(--primary) / <alpha-value>)",
266
+ foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
267
+ },
268
+ secondary: {
269
+ DEFAULT: "hsl(var(--secondary) / <alpha-value>)",
270
+ foreground: "hsl(var(--secondary-foreground) / <alpha-value>)"
271
+ },
272
+ destructive: {
273
+ DEFAULT: "hsl(var(--destructive) / <alpha-value>)",
274
+ foreground: "hsl(var(--destructive-foreground) / <alpha-value>)"
275
+ },
276
+ muted: {
277
+ DEFAULT: "hsl(var(--muted) / <alpha-value>)",
278
+ foreground: "hsl(var(--muted-foreground) / <alpha-value>)"
279
+ },
280
+ accent: {
281
+ DEFAULT: "hsl(var(--accent) / <alpha-value>)",
282
+ foreground: "hsl(var(--accent-foreground) / <alpha-value>)"
283
+ },
284
+ popover: {
285
+ DEFAULT: "hsl(var(--secondary-card) / <alpha-value>)",
286
+ foreground: "hsl(var(--popover-foreground) / <alpha-value>)"
287
+ },
288
+ card: {
289
+ DEFAULT: "hsl(var(--card) / <alpha-value>)",
290
+ foreground: "hsl(var(--card-foreground) / <alpha-value>)",
291
+ "secondary-card": "hsl(var(--secondary-card) / <alpha-value>)"
292
+ },
293
+ success: {
294
+ DEFAULT: "hsl(var(--success) / <alpha-value>)",
295
+ foreground: "hsl(var(--success-foreground) / <alpha-value>)",
296
+ border: "hsl(var(--success-outline) / <alpha-value>)"
297
+ },
298
+ warning: {
299
+ DEFAULT: "hsl(var(--warning) / <alpha-value>)",
300
+ foreground: "hsl(var(--warning-foreground) / <alpha-value>)",
301
+ border: "hsl(var(--warning-foreground) / <alpha-value>)",
302
+ content: "hsl(var(--warning-outline) / <alpha-value>)"
303
+ },
304
+ danger: {
305
+ DEFAULT: "hsl(var(--danger) / <alpha-value>)",
306
+ foreground: "hsl(var(--danger-foreground) / <alpha-value>)",
307
+ border: "hsl(var(--danger-outline) / <alpha-value>)"
308
+ },
309
+ brand: {
310
+ DEFAULT: "hsl(var(--primary) / <alpha-value>)",
311
+ foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
312
+ },
313
+ sidebar: {
314
+ DEFAULT: "hsl(var(--sidebar-background))",
315
+ foreground: "hsl(var(--sidebar-foreground))",
316
+ primary: "hsl(var(--sidebar-primary))",
317
+ "primary-foreground": "hsl(var(--sidebar-primary-foreground))",
318
+ accent: "hsl(var(--sidebar-accent))",
319
+ "accent-foreground": "hsl(var(--sidebar-accent-foreground))",
320
+ border: "hsl(var(--sidebar-border))",
321
+ ring: "hsl(var(--sidebar-ring))"
322
+ }
323
+ },
324
+ fontFamily: {
325
+ sans: ["var(--font-geist-sans)", ...import_defaultTheme.default.fontFamily.sans],
326
+ mono: ["var(--font-geist-mono)", ...import_defaultTheme.default.fontFamily.mono]
327
+ },
328
+ keyframes: {
329
+ "accordion-down": {
330
+ from: { height: "0" },
331
+ to: { height: "var(--radix-accordion-content-height)" }
332
+ },
333
+ "accordion-up": {
334
+ from: { height: "var(--radix-accordion-content-height)" },
335
+ to: { height: "0" }
336
+ },
337
+ "fade-in": {
338
+ from: { opacity: "0" },
339
+ to: { opacity: "1" }
340
+ },
341
+ "fade-out": {
342
+ from: { opacity: "1" },
343
+ to: { opacity: "0" }
344
+ }
345
+ },
346
+ animation: {
347
+ "accordion-down": "accordion-down 0.2s ease-out",
348
+ "accordion-up": "accordion-up 0.2s ease-out",
349
+ "fade-in": "fade-in 0.2s ease-out",
350
+ "fade-out": "fade-out 0.2s ease-out"
351
+ },
352
+ typography: typography_config_default,
353
+ aria: {
354
+ invalid: 'invalid="true"'
355
+ }
356
+ }
357
+ },
358
+ plugins: [import_tailwindcss_animate.default, import_typography.default]
359
+ };
360
+ // Annotate the CommonJS export names for ESM import in node:
361
+ 0 && (module.exports = {
362
+ config,
363
+ typographyConfig
364
+ });
365
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts","../src/config.ts","../src/typography.config.ts"],"sourcesContent":["export { config, config as default } from \"./config\";\nexport { default as typographyConfig } from \"./typography.config\";\n","import typography from \"@tailwindcss/typography\";\nimport type { Config } from \"tailwindcss\";\nimport animate from \"tailwindcss-animate\";\nimport defaultTheme from \"tailwindcss/defaultTheme\";\nimport typographyConfig from \"./typography.config\";\n\n/**\n * Nuvia Design System Tailwind Configuration\n * This is a Tailwind preset that can be extended by consumer applications.\n */\nexport const config: Config = {\n darkMode: [\"class\"],\n content: [\n // Consumer app paths - these will be merged with app-specific content paths\n \"./node_modules/@nuvia/components/**/*.{ts,tsx,js,jsx}\",\n ],\n theme: {\n container: {\n center: true,\n padding: \"2rem\",\n screens: {\n \"2xl\": \"1400px\",\n },\n },\n\n extend: {\n colors: {\n nuvia: {\n \"nimbus-100\": \"hsl(var(--color-nimbus-100) / <alpha-value>)\",\n \"nimbus-200\": \"hsl(var(--color-nimbus-200) / <alpha-value>)\",\n \"nimbus-300\": \"hsl(var(--color-nimbus-300) / <alpha-value>)\",\n \"nimbus-400\": \"hsl(var(--color-nimbus-400) / <alpha-value>)\",\n \"nimbus-500\": \"hsl(var(--color-nimbus-500) / <alpha-value>)\",\n \"nimbus-600\": \"hsl(var(--color-nimbus-600) / <alpha-value>)\",\n \"madrugada-100\": \"hsl(var(--color-madrugada-100) / <alpha-value>)\",\n \"madrugada-200\": \"hsl(var(--color-madrugada-200) / <alpha-value>)\",\n \"madrugada-300\": \"hsl(var(--color-madrugada-300) / <alpha-value>)\",\n \"madrugada-400\": \"hsl(var(--color-madrugada-400) / <alpha-value>)\",\n \"madrugada-500\": \"hsl(var(--color-madrugada-500) / <alpha-value>)\",\n \"madrugada-600\": \"hsl(var(--color-madrugada-600) / <alpha-value>)\",\n \"madrugada-700\": \"hsl(var(--color-madrugada-700) / <alpha-value>)\",\n \"zafiro-100\": \"hsl(var(--color-zafiro-100) / <alpha-value>)\",\n \"zafiro-200\": \"hsl(var(--color-zafiro-200) / <alpha-value>)\",\n \"zafiro-300\": \"hsl(var(--color-zafiro-300) / <alpha-value>)\",\n \"zafiro-400\": \"hsl(var(--color-zafiro-400) / <alpha-value>)\",\n \"zafiro-500\": \"hsl(var(--color-zafiro-500) / <alpha-value>)\",\n \"zafiro-600\": \"hsl(var(--color-zafiro-600) / <alpha-value>)\",\n \"zafiro-700\": \"hsl(var(--color-zafiro-700) / <alpha-value>)\",\n \"indigo-100\": \"hsl(var(--color-indigo-100) / <alpha-value>)\",\n \"indigo-200\": \"hsl(var(--color-indigo-200) / <alpha-value>)\",\n \"indigo-300\": \"hsl(var(--color-indigo-300) / <alpha-value>)\",\n \"indigo-400\": \"hsl(var(--color-indigo-400) / <alpha-value>)\",\n \"indigo-500\": \"hsl(var(--color-indigo-500) / <alpha-value>)\",\n \"indigo-600\": \"hsl(var(--color-indigo-600) / <alpha-value>)\",\n \"indigo-700\": \"hsl(var(--color-indigo-700) / <alpha-value>)\",\n \"lumen-400\": \"hsl(var(--color-lumen-400) / <alpha-value>)\",\n \"lumen-100\": \"hsl(var(--color-lumen-100) / <alpha-value>)\",\n \"lumen-200\": \"hsl(var(--color-lumen-200) / <alpha-value>)\",\n \"lumen-300\": \"hsl(var(--color-lumen-300) / <alpha-value>)\",\n \"lumen-500\": \"hsl(var(--color-lumen-500) / <alpha-value>)\",\n \"lumen-600\": \"hsl(var(--color-lumen-600) / <alpha-value>)\",\n \"lumen-700\": \"hsl(var(--color-lumen-700) / <alpha-value>)\",\n \"lumen-800\": \"hsl(var(--color-lumen-800) / <alpha-value>)\",\n \"lilas-100\": \"hsl(var(--color-lilas-100) / <alpha-value>)\",\n \"lilas-200\": \"hsl(var(--color-lilas-200) / <alpha-value>)\",\n \"lilas-300\": \"hsl(var(--color-lilas-300) / <alpha-value>)\",\n \"lilas-400\": \"hsl(var(--color-lilas-400) / <alpha-value>)\",\n \"lilas-500\": \"hsl(var(--color-lilas-500) / <alpha-value>)\",\n \"lilas-600\": \"hsl(var(--color-lilas-600) / <alpha-value>)\",\n \"lilas-700\": \"hsl(var(--color-lilas-700) / <alpha-value>)\",\n \"magenta-400\": \"hsl(var(--color-magenta-400) / <alpha-value>)\",\n \"magma-400\": \"hsl(var(--color-magma-400) / <alpha-value>)\",\n \"off-black-400\": \"hsl(var(--color-off-black-400) / <alpha-value>)\",\n },\n input: \"hsl(var(--input) / <alpha-value>)\",\n ring: \"hsl(var(--ring) / <alpha-value>)\",\n\n text: {\n DEFAULT: \"hsl(var(--text-default-primary) / <alpha-value>)\",\n \"default-primary\": \"hsl(var(--text-default-primary) / <alpha-value>)\",\n \"default-secondary\":\n \"hsl(var(--text-default-secondary) / <alpha-value>)\",\n \"brand-primary\": \"hsl(var(--text-brand-primary) / <alpha-value>)\",\n \"brand-secondary\": \"hsl(var(--text-brand-secondary) / <alpha-value>)\",\n links: \"hsl(var(--text-links) / <alpha-value>)\",\n disabled: \"hsl(var(--text-disabled) / <alpha-value>)\",\n \"default-inverted\":\n \"hsl(var(--text-default-inverted) / <alpha-value>)\",\n \"general-light\": \"hsl(var(--text-general-light) / <alpha-value>)\",\n \"general-dark\": \"hsl(var(--text-general-dark) / <alpha-value>)\",\n },\n\n background: {\n DEFAULT: \"hsl(var(--background) / <alpha-value>)\",\n \"default-light\":\n \"hsl(var(--background-default-light) / <alpha-value>)\",\n \"default-medium\":\n \"hsl(var(--background-default-medium) / <alpha-value>)\",\n \"default-heavy\":\n \"hsl(var(--background-default-heavy) / <alpha-value>)\",\n \"default-accent\":\n \"hsl(var(--background-default-accent) / <alpha-value>)\",\n \"primary-light\":\n \"hsl(var(--background-primary-light) / <alpha-value>)\",\n \"primary-medium\":\n \"hsl(var(--background-primary-medium) / <alpha-value>)\",\n \"primary-heavy\":\n \"hsl(var(--background-primary-heavy) / <alpha-value>)\",\n \"secondary-light\":\n \"hsl(var(--background-secondary-light) / <alpha-value>)\",\n \"secondary-medium\":\n \"hsl(var(--background-secondary-medium) / <alpha-value>)\",\n \"secondary-heavy\":\n \"hsl(var(--background-secondary-heavy) / <alpha-value>)\",\n \"accent-light\": \"hsl(var(--background-accent-light) / <alpha-value>)\",\n \"accent-medium\":\n \"hsl(var(--background-accent-medium) / <alpha-value>)\",\n \"accent-heavy\": \"hsl(var(--background-accent-heavy) / <alpha-value>)\",\n \"accent-primary\":\n \"hsl(var(--background-accent-primary) / <alpha-value>)\",\n \"accent-secondary\":\n \"hsl(var(--background-accent-secondary) / <alpha-value>)\",\n },\n foreground: {\n DEFAULT: \"hsl(var(--foreground) / <alpha-value>)\",\n \"default-light\":\n \"hsl(var(--foreground-default-light) / <alpha-value>)\",\n \"default-xlight\":\n \"hsl(var(--foreground-default-xlight) / <alpha-value>)\",\n \"default-heavy\":\n \"hsl(var(--foreground-default-heavy) / <alpha-value>)\",\n \"primary-light\":\n \"hsl(var(--foreground-primary-light) / <alpha-value>)\",\n \"primary-heavy\":\n \"hsl(var(--foreground-primary-heavy) / <alpha-value>)\",\n \"primary-medium\":\n \"hsl(var(--foreground-primary-medium) / <alpha-value>)\",\n \"secondary-light\":\n \"hsl(var(--foreground-secondary-light) / <alpha-value>)\",\n \"secondary-heavy\":\n \"hsl(var(--foreground-secondary-heavy) / <alpha-value>)\",\n \"secondary-medium\":\n \"hsl(var(--foreground-secondary-medium) / <alpha-value>)\",\n \"accent-light\": \"hsl(var(--foreground-accent-light) / <alpha-value>)\",\n \"accent-heavy\": \"hsl(var(--foreground-accent-heavy) / <alpha-value>)\",\n \"accent-medium\":\n \"hsl(var(--foreground-accent-medium) / <alpha-value>)\",\n },\n border: {\n DEFAULT: \"hsl(var(--border) / <alpha-value>)\",\n medium: \"hsl(var(--border-medium) / <alpha-value>)\",\n \"default-light\": \"hsl(var(--border-default-light) / <alpha-value>)\",\n \"default-medium\": \"hsl(var(--border-default-medium) / <alpha-value>)\",\n \"default-heavy\": \"hsl(var(--border-default-heavy) / <alpha-value>)\",\n \"primary-light\": \"hsl(var(--border-primary-light) / <alpha-value>)\",\n \"primary-medium\": \"hsl(var(--border-primary-medium) / <alpha-value>)\",\n \"primary-heavy\": \"hsl(var(--border-primary-heavy) / <alpha-value>)\",\n \"accent-light\": \"hsl(var(--border-accent-light) / <alpha-value>)\",\n \"accent-medium\": \"hsl(var(--border-accent-medium) / <alpha-value>)\",\n \"accent-heavy\": \"hsl(var(--border-accent-heavy) / <alpha-value>)\",\n },\n primary: {\n DEFAULT: \"hsl(var(--primary) / <alpha-value>)\",\n foreground: \"hsl(var(--primary-foreground) / <alpha-value>)\",\n },\n secondary: {\n DEFAULT: \"hsl(var(--secondary) / <alpha-value>)\",\n foreground: \"hsl(var(--secondary-foreground) / <alpha-value>)\",\n },\n destructive: {\n DEFAULT: \"hsl(var(--destructive) / <alpha-value>)\",\n foreground: \"hsl(var(--destructive-foreground) / <alpha-value>)\",\n },\n muted: {\n DEFAULT: \"hsl(var(--muted) / <alpha-value>)\",\n foreground: \"hsl(var(--muted-foreground) / <alpha-value>)\",\n },\n accent: {\n DEFAULT: \"hsl(var(--accent) / <alpha-value>)\",\n foreground: \"hsl(var(--accent-foreground) / <alpha-value>)\",\n },\n popover: {\n DEFAULT: \"hsl(var(--secondary-card) / <alpha-value>)\",\n foreground: \"hsl(var(--popover-foreground) / <alpha-value>)\",\n },\n card: {\n DEFAULT: \"hsl(var(--card) / <alpha-value>)\",\n foreground: \"hsl(var(--card-foreground) / <alpha-value>)\",\n \"secondary-card\": \"hsl(var(--secondary-card) / <alpha-value>)\",\n },\n success: {\n DEFAULT: \"hsl(var(--success) / <alpha-value>)\",\n foreground: \"hsl(var(--success-foreground) / <alpha-value>)\",\n border: \"hsl(var(--success-outline) / <alpha-value>)\",\n },\n warning: {\n DEFAULT: \"hsl(var(--warning) / <alpha-value>)\",\n foreground: \"hsl(var(--warning-foreground) / <alpha-value>)\",\n border: \"hsl(var(--warning-foreground) / <alpha-value>)\",\n content: \"hsl(var(--warning-outline) / <alpha-value>)\",\n },\n danger: {\n DEFAULT: \"hsl(var(--danger) / <alpha-value>)\",\n foreground: \"hsl(var(--danger-foreground) / <alpha-value>)\",\n border: \"hsl(var(--danger-outline) / <alpha-value>)\",\n },\n brand: {\n DEFAULT: \"hsl(var(--primary) / <alpha-value>)\",\n foreground: \"hsl(var(--primary-foreground) / <alpha-value>)\",\n },\n sidebar: {\n DEFAULT: \"hsl(var(--sidebar-background))\",\n foreground: \"hsl(var(--sidebar-foreground))\",\n primary: \"hsl(var(--sidebar-primary))\",\n \"primary-foreground\": \"hsl(var(--sidebar-primary-foreground))\",\n accent: \"hsl(var(--sidebar-accent))\",\n \"accent-foreground\": \"hsl(var(--sidebar-accent-foreground))\",\n border: \"hsl(var(--sidebar-border))\",\n ring: \"hsl(var(--sidebar-ring))\",\n },\n },\n fontFamily: {\n sans: [\"var(--font-geist-sans)\", ...defaultTheme.fontFamily.sans],\n mono: [\"var(--font-geist-mono)\", ...defaultTheme.fontFamily.mono],\n },\n keyframes: {\n \"accordion-down\": {\n from: { height: \"0\" },\n to: { height: \"var(--radix-accordion-content-height)\" },\n },\n \"accordion-up\": {\n from: { height: \"var(--radix-accordion-content-height)\" },\n to: { height: \"0\" },\n },\n \"fade-in\": {\n from: { opacity: \"0\" },\n to: { opacity: \"1\" },\n },\n \"fade-out\": {\n from: { opacity: \"1\" },\n to: { opacity: \"0\" },\n },\n },\n animation: {\n \"accordion-down\": \"accordion-down 0.2s ease-out\",\n \"accordion-up\": \"accordion-up 0.2s ease-out\",\n \"fade-in\": \"fade-in 0.2s ease-out\",\n \"fade-out\": \"fade-out 0.2s ease-out\",\n },\n typography: typographyConfig,\n aria: {\n invalid: 'invalid=\"true\"',\n },\n },\n },\n plugins: [animate, typography],\n};\n\nexport default config;\n","const typographyConfig = (theme: (path: string) => string) => ({\n DEFAULT: {\n css: {\n \":first-child\": {\n marginTop: theme(\"margin.0\"),\n },\n \"h1, h2, h3, h4, h5, h6\": {\n fontWeight: theme(\"fontWeight.semibold\"),\n letterSpacing: theme(\"letterSpacing.tight\"),\n marginBottom: theme(\"margin.4\"),\n\n \"+ h1, + h2, + h3, + h4, + h5, + h6\": {\n marginTop: theme(\"margin.0\"),\n },\n },\n h1: {\n fontSize: theme(\"fontSize.3xl\"),\n marginTop: theme(\"margin.16\"),\n },\n h2: {\n fontSize: theme(\"fontSize.2xl\"),\n },\n h3: {\n fontSize: theme(\"fontSize.xl\"),\n },\n h4: {\n fontSize: theme(\"fontSize.lg\"),\n },\n h5: {\n fontSize: theme(\"fontSize.base\"),\n },\n h6: {\n fontSize: theme(\"fontSize.base\"),\n },\n table: {\n boxShadow: `0 0 0 1px ${theme(\"colors.gray.200\")}`,\n borderRadius: theme(\"borderRadius.md\"),\n overflow: \"hidden\",\n p: {\n margin: 0,\n },\n th: {\n paddingTop: \"0.5714286em\",\n paddingRight: \"0.5714286em\",\n paddingBottom: \"0.5714286em\",\n paddingLeft: \"0.5714286em\",\n backgroundColor: theme(\"colors.gray.100\"),\n \"&:not(:last-child)\": {\n borderRightWidth: \"1px\",\n borderRightColor: theme(\"colors.gray.200\"),\n },\n },\n \"tbody td, tfoot td\": {\n paddingLeft: \"0.5714286em\",\n \"&:not(:last-child)\": {\n borderRightWidth: \"1px\",\n borderRightColor: theme(\"colors.gray.200\"),\n },\n },\n },\n code: {\n \"&::before, &::after\": {\n display: \"none\",\n },\n },\n pre: {\n backgroundColor: \"transparent\",\n borderWidth: 1,\n borderColor: theme(\"colors.gray.200\"),\n },\n },\n },\n invert: {\n css: {\n table: {\n boxShadow: `0 0 0 1px ${theme(\"colors.gray.700\")}`,\n th: {\n backgroundColor: theme(\"colors.gray.800\"),\n \"&:not(:last-child)\": {\n borderRightColor: theme(\"colors.gray.700\"),\n },\n },\n \"tbody td, tfoot td\": {\n \"&:not(:last-child)\": {\n borderRightColor: theme(\"colors.gray.700\"),\n },\n },\n },\n pre: {\n borderColor: theme(\"colors.gray.800\"),\n },\n },\n },\n});\n\nexport default typographyConfig;\n"],"mappings":"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","names":["defaultTheme","animate","typography"]}
@@ -0,0 +1,98 @@
1
+ export { config, config as default } from './config.cjs';
2
+ import 'tailwindcss';
3
+
4
+ declare const typographyConfig: (theme: (path: string) => string) => {
5
+ DEFAULT: {
6
+ css: {
7
+ ":first-child": {
8
+ marginTop: string;
9
+ };
10
+ "h1, h2, h3, h4, h5, h6": {
11
+ fontWeight: string;
12
+ letterSpacing: string;
13
+ marginBottom: string;
14
+ "+ h1, + h2, + h3, + h4, + h5, + h6": {
15
+ marginTop: string;
16
+ };
17
+ };
18
+ h1: {
19
+ fontSize: string;
20
+ marginTop: string;
21
+ };
22
+ h2: {
23
+ fontSize: string;
24
+ };
25
+ h3: {
26
+ fontSize: string;
27
+ };
28
+ h4: {
29
+ fontSize: string;
30
+ };
31
+ h5: {
32
+ fontSize: string;
33
+ };
34
+ h6: {
35
+ fontSize: string;
36
+ };
37
+ table: {
38
+ boxShadow: string;
39
+ borderRadius: string;
40
+ overflow: string;
41
+ p: {
42
+ margin: number;
43
+ };
44
+ th: {
45
+ paddingTop: string;
46
+ paddingRight: string;
47
+ paddingBottom: string;
48
+ paddingLeft: string;
49
+ backgroundColor: string;
50
+ "&:not(:last-child)": {
51
+ borderRightWidth: string;
52
+ borderRightColor: string;
53
+ };
54
+ };
55
+ "tbody td, tfoot td": {
56
+ paddingLeft: string;
57
+ "&:not(:last-child)": {
58
+ borderRightWidth: string;
59
+ borderRightColor: string;
60
+ };
61
+ };
62
+ };
63
+ code: {
64
+ "&::before, &::after": {
65
+ display: string;
66
+ };
67
+ };
68
+ pre: {
69
+ backgroundColor: string;
70
+ borderWidth: number;
71
+ borderColor: string;
72
+ };
73
+ };
74
+ };
75
+ invert: {
76
+ css: {
77
+ table: {
78
+ boxShadow: string;
79
+ th: {
80
+ backgroundColor: string;
81
+ "&:not(:last-child)": {
82
+ borderRightColor: string;
83
+ };
84
+ };
85
+ "tbody td, tfoot td": {
86
+ "&:not(:last-child)": {
87
+ borderRightColor: string;
88
+ };
89
+ };
90
+ };
91
+ pre: {
92
+ borderColor: string;
93
+ };
94
+ };
95
+ };
96
+ };
97
+
98
+ export { typographyConfig };
@@ -0,0 +1,98 @@
1
+ export { config, config as default } from './config.js';
2
+ import 'tailwindcss';
3
+
4
+ declare const typographyConfig: (theme: (path: string) => string) => {
5
+ DEFAULT: {
6
+ css: {
7
+ ":first-child": {
8
+ marginTop: string;
9
+ };
10
+ "h1, h2, h3, h4, h5, h6": {
11
+ fontWeight: string;
12
+ letterSpacing: string;
13
+ marginBottom: string;
14
+ "+ h1, + h2, + h3, + h4, + h5, + h6": {
15
+ marginTop: string;
16
+ };
17
+ };
18
+ h1: {
19
+ fontSize: string;
20
+ marginTop: string;
21
+ };
22
+ h2: {
23
+ fontSize: string;
24
+ };
25
+ h3: {
26
+ fontSize: string;
27
+ };
28
+ h4: {
29
+ fontSize: string;
30
+ };
31
+ h5: {
32
+ fontSize: string;
33
+ };
34
+ h6: {
35
+ fontSize: string;
36
+ };
37
+ table: {
38
+ boxShadow: string;
39
+ borderRadius: string;
40
+ overflow: string;
41
+ p: {
42
+ margin: number;
43
+ };
44
+ th: {
45
+ paddingTop: string;
46
+ paddingRight: string;
47
+ paddingBottom: string;
48
+ paddingLeft: string;
49
+ backgroundColor: string;
50
+ "&:not(:last-child)": {
51
+ borderRightWidth: string;
52
+ borderRightColor: string;
53
+ };
54
+ };
55
+ "tbody td, tfoot td": {
56
+ paddingLeft: string;
57
+ "&:not(:last-child)": {
58
+ borderRightWidth: string;
59
+ borderRightColor: string;
60
+ };
61
+ };
62
+ };
63
+ code: {
64
+ "&::before, &::after": {
65
+ display: string;
66
+ };
67
+ };
68
+ pre: {
69
+ backgroundColor: string;
70
+ borderWidth: number;
71
+ borderColor: string;
72
+ };
73
+ };
74
+ };
75
+ invert: {
76
+ css: {
77
+ table: {
78
+ boxShadow: string;
79
+ th: {
80
+ backgroundColor: string;
81
+ "&:not(:last-child)": {
82
+ borderRightColor: string;
83
+ };
84
+ };
85
+ "tbody td, tfoot td": {
86
+ "&:not(:last-child)": {
87
+ borderRightColor: string;
88
+ };
89
+ };
90
+ };
91
+ pre: {
92
+ borderColor: string;
93
+ };
94
+ };
95
+ };
96
+ };
97
+
98
+ export { typographyConfig };
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ import {
2
+ config,
3
+ typography_config_default
4
+ } from "./chunk-NZXHEYPW.js";
5
+ export {
6
+ config,
7
+ config as default,
8
+ typography_config_default as typographyConfig
9
+ };
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}