@nuvia/tailwind-config 0.1.0 → 0.2.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/chunk-VXAEMSFJ.js +230 -0
- package/dist/chunk-VXAEMSFJ.js.map +1 -0
- package/dist/config.cjs +126 -224
- package/dist/config.cjs.map +1 -1
- package/dist/config.js +1 -1
- package/dist/index.cjs +219 -221
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +98 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/dist/chunk-NZXHEYPW.js +0 -329
- package/dist/chunk-NZXHEYPW.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,102 @@
|
|
|
1
1
|
import {
|
|
2
|
-
config
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
config
|
|
3
|
+
} from "./chunk-VXAEMSFJ.js";
|
|
4
|
+
|
|
5
|
+
// src/typography.config.ts
|
|
6
|
+
var typographyConfig = (theme) => ({
|
|
7
|
+
DEFAULT: {
|
|
8
|
+
css: {
|
|
9
|
+
":first-child": {
|
|
10
|
+
marginTop: theme("margin.0")
|
|
11
|
+
},
|
|
12
|
+
"h1, h2, h3, h4, h5, h6": {
|
|
13
|
+
fontWeight: theme("fontWeight.semibold"),
|
|
14
|
+
letterSpacing: theme("letterSpacing.tight"),
|
|
15
|
+
marginBottom: theme("margin.4"),
|
|
16
|
+
"+ h1, + h2, + h3, + h4, + h5, + h6": {
|
|
17
|
+
marginTop: theme("margin.0")
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
h1: {
|
|
21
|
+
fontSize: theme("fontSize.3xl"),
|
|
22
|
+
marginTop: theme("margin.16")
|
|
23
|
+
},
|
|
24
|
+
h2: {
|
|
25
|
+
fontSize: theme("fontSize.2xl")
|
|
26
|
+
},
|
|
27
|
+
h3: {
|
|
28
|
+
fontSize: theme("fontSize.xl")
|
|
29
|
+
},
|
|
30
|
+
h4: {
|
|
31
|
+
fontSize: theme("fontSize.lg")
|
|
32
|
+
},
|
|
33
|
+
h5: {
|
|
34
|
+
fontSize: theme("fontSize.base")
|
|
35
|
+
},
|
|
36
|
+
h6: {
|
|
37
|
+
fontSize: theme("fontSize.base")
|
|
38
|
+
},
|
|
39
|
+
table: {
|
|
40
|
+
boxShadow: `0 0 0 1px ${theme("colors.gray.200")}`,
|
|
41
|
+
borderRadius: theme("borderRadius.md"),
|
|
42
|
+
overflow: "hidden",
|
|
43
|
+
p: {
|
|
44
|
+
margin: 0
|
|
45
|
+
},
|
|
46
|
+
th: {
|
|
47
|
+
paddingTop: "0.5714286em",
|
|
48
|
+
paddingRight: "0.5714286em",
|
|
49
|
+
paddingBottom: "0.5714286em",
|
|
50
|
+
paddingLeft: "0.5714286em",
|
|
51
|
+
backgroundColor: theme("colors.gray.100"),
|
|
52
|
+
"&:not(:last-child)": {
|
|
53
|
+
borderRightWidth: "1px",
|
|
54
|
+
borderRightColor: theme("colors.gray.200")
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"tbody td, tfoot td": {
|
|
58
|
+
paddingLeft: "0.5714286em",
|
|
59
|
+
"&:not(:last-child)": {
|
|
60
|
+
borderRightWidth: "1px",
|
|
61
|
+
borderRightColor: theme("colors.gray.200")
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
code: {
|
|
66
|
+
"&::before, &::after": {
|
|
67
|
+
display: "none"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
pre: {
|
|
71
|
+
backgroundColor: "transparent",
|
|
72
|
+
borderWidth: 1,
|
|
73
|
+
borderColor: theme("colors.gray.200")
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
invert: {
|
|
78
|
+
css: {
|
|
79
|
+
table: {
|
|
80
|
+
boxShadow: `0 0 0 1px ${theme("colors.gray.700")}`,
|
|
81
|
+
th: {
|
|
82
|
+
backgroundColor: theme("colors.gray.800"),
|
|
83
|
+
"&:not(:last-child)": {
|
|
84
|
+
borderRightColor: theme("colors.gray.700")
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"tbody td, tfoot td": {
|
|
88
|
+
"&:not(:last-child)": {
|
|
89
|
+
borderRightColor: theme("colors.gray.700")
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
pre: {
|
|
94
|
+
borderColor: theme("colors.gray.800")
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
});
|
|
99
|
+
var typography_config_default = typographyConfig;
|
|
5
100
|
export {
|
|
6
101
|
config,
|
|
7
102
|
config as default,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
1
|
+
{"version":3,"sources":["../src/typography.config.ts"],"sourcesContent":["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":";;;;;AAAA,IAAM,mBAAmB,CAAC,WAAqC;AAAA,EAC7D,SAAS;AAAA,IACP,KAAK;AAAA,MACH,gBAAgB;AAAA,QACd,WAAW,MAAM,UAAU;AAAA,MAC7B;AAAA,MACA,0BAA0B;AAAA,QACxB,YAAY,MAAM,qBAAqB;AAAA,QACvC,eAAe,MAAM,qBAAqB;AAAA,QAC1C,cAAc,MAAM,UAAU;AAAA,QAE9B,sCAAsC;AAAA,UACpC,WAAW,MAAM,UAAU;AAAA,QAC7B;AAAA,MACF;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,cAAc;AAAA,QAC9B,WAAW,MAAM,WAAW;AAAA,MAC9B;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,cAAc;AAAA,MAChC;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,aAAa;AAAA,MAC/B;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,aAAa;AAAA,MAC/B;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,eAAe;AAAA,MACjC;AAAA,MACA,IAAI;AAAA,QACF,UAAU,MAAM,eAAe;AAAA,MACjC;AAAA,MACA,OAAO;AAAA,QACL,WAAW,aAAa,MAAM,iBAAiB,CAAC;AAAA,QAChD,cAAc,MAAM,iBAAiB;AAAA,QACrC,UAAU;AAAA,QACV,GAAG;AAAA,UACD,QAAQ;AAAA,QACV;AAAA,QACA,IAAI;AAAA,UACF,YAAY;AAAA,UACZ,cAAc;AAAA,UACd,eAAe;AAAA,UACf,aAAa;AAAA,UACb,iBAAiB,MAAM,iBAAiB;AAAA,UACxC,sBAAsB;AAAA,YACpB,kBAAkB;AAAA,YAClB,kBAAkB,MAAM,iBAAiB;AAAA,UAC3C;AAAA,QACF;AAAA,QACA,sBAAsB;AAAA,UACpB,aAAa;AAAA,UACb,sBAAsB;AAAA,YACpB,kBAAkB;AAAA,YAClB,kBAAkB,MAAM,iBAAiB;AAAA,UAC3C;AAAA,QACF;AAAA,MACF;AAAA,MACA,MAAM;AAAA,QACJ,uBAAuB;AAAA,UACrB,SAAS;AAAA,QACX;AAAA,MACF;AAAA,MACA,KAAK;AAAA,QACH,iBAAiB;AAAA,QACjB,aAAa;AAAA,QACb,aAAa,MAAM,iBAAiB;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AAAA,EACA,QAAQ;AAAA,IACN,KAAK;AAAA,MACH,OAAO;AAAA,QACL,WAAW,aAAa,MAAM,iBAAiB,CAAC;AAAA,QAChD,IAAI;AAAA,UACF,iBAAiB,MAAM,iBAAiB;AAAA,UACxC,sBAAsB;AAAA,YACpB,kBAAkB,MAAM,iBAAiB;AAAA,UAC3C;AAAA,QACF;AAAA,QACA,sBAAsB;AAAA,UACpB,sBAAsB;AAAA,YACpB,kBAAkB,MAAM,iBAAiB;AAAA,UAC3C;AAAA,QACF;AAAA,MACF;AAAA,MACA,KAAK;AAAA,QACH,aAAa,MAAM,iBAAiB;AAAA,MACtC;AAAA,IACF;AAAA,EACF;AACF;AAEA,IAAO,4BAAQ;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuvia/tailwind-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"@nuvia/tokens": "0.1.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"tailwindcss": "^
|
|
30
|
+
"tailwindcss": "^4.1.18",
|
|
31
31
|
"tsup": "^8.3.5",
|
|
32
32
|
"typescript": "^5.7.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"tailwindcss": "^
|
|
35
|
+
"tailwindcss": "^4.0.0"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public",
|
package/dist/chunk-NZXHEYPW.js
DELETED
|
@@ -1,329 +0,0 @@
|
|
|
1
|
-
// src/config.ts
|
|
2
|
-
import typography from "@tailwindcss/typography";
|
|
3
|
-
import animate from "tailwindcss-animate";
|
|
4
|
-
import defaultTheme from "tailwindcss/defaultTheme";
|
|
5
|
-
|
|
6
|
-
// src/typography.config.ts
|
|
7
|
-
var typographyConfig = (theme) => ({
|
|
8
|
-
DEFAULT: {
|
|
9
|
-
css: {
|
|
10
|
-
":first-child": {
|
|
11
|
-
marginTop: theme("margin.0")
|
|
12
|
-
},
|
|
13
|
-
"h1, h2, h3, h4, h5, h6": {
|
|
14
|
-
fontWeight: theme("fontWeight.semibold"),
|
|
15
|
-
letterSpacing: theme("letterSpacing.tight"),
|
|
16
|
-
marginBottom: theme("margin.4"),
|
|
17
|
-
"+ h1, + h2, + h3, + h4, + h5, + h6": {
|
|
18
|
-
marginTop: theme("margin.0")
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
h1: {
|
|
22
|
-
fontSize: theme("fontSize.3xl"),
|
|
23
|
-
marginTop: theme("margin.16")
|
|
24
|
-
},
|
|
25
|
-
h2: {
|
|
26
|
-
fontSize: theme("fontSize.2xl")
|
|
27
|
-
},
|
|
28
|
-
h3: {
|
|
29
|
-
fontSize: theme("fontSize.xl")
|
|
30
|
-
},
|
|
31
|
-
h4: {
|
|
32
|
-
fontSize: theme("fontSize.lg")
|
|
33
|
-
},
|
|
34
|
-
h5: {
|
|
35
|
-
fontSize: theme("fontSize.base")
|
|
36
|
-
},
|
|
37
|
-
h6: {
|
|
38
|
-
fontSize: theme("fontSize.base")
|
|
39
|
-
},
|
|
40
|
-
table: {
|
|
41
|
-
boxShadow: `0 0 0 1px ${theme("colors.gray.200")}`,
|
|
42
|
-
borderRadius: theme("borderRadius.md"),
|
|
43
|
-
overflow: "hidden",
|
|
44
|
-
p: {
|
|
45
|
-
margin: 0
|
|
46
|
-
},
|
|
47
|
-
th: {
|
|
48
|
-
paddingTop: "0.5714286em",
|
|
49
|
-
paddingRight: "0.5714286em",
|
|
50
|
-
paddingBottom: "0.5714286em",
|
|
51
|
-
paddingLeft: "0.5714286em",
|
|
52
|
-
backgroundColor: theme("colors.gray.100"),
|
|
53
|
-
"&:not(:last-child)": {
|
|
54
|
-
borderRightWidth: "1px",
|
|
55
|
-
borderRightColor: theme("colors.gray.200")
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"tbody td, tfoot td": {
|
|
59
|
-
paddingLeft: "0.5714286em",
|
|
60
|
-
"&:not(:last-child)": {
|
|
61
|
-
borderRightWidth: "1px",
|
|
62
|
-
borderRightColor: theme("colors.gray.200")
|
|
63
|
-
}
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
code: {
|
|
67
|
-
"&::before, &::after": {
|
|
68
|
-
display: "none"
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
pre: {
|
|
72
|
-
backgroundColor: "transparent",
|
|
73
|
-
borderWidth: 1,
|
|
74
|
-
borderColor: theme("colors.gray.200")
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
invert: {
|
|
79
|
-
css: {
|
|
80
|
-
table: {
|
|
81
|
-
boxShadow: `0 0 0 1px ${theme("colors.gray.700")}`,
|
|
82
|
-
th: {
|
|
83
|
-
backgroundColor: theme("colors.gray.800"),
|
|
84
|
-
"&:not(:last-child)": {
|
|
85
|
-
borderRightColor: theme("colors.gray.700")
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"tbody td, tfoot td": {
|
|
89
|
-
"&:not(:last-child)": {
|
|
90
|
-
borderRightColor: theme("colors.gray.700")
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
pre: {
|
|
95
|
-
borderColor: theme("colors.gray.800")
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
var typography_config_default = typographyConfig;
|
|
101
|
-
|
|
102
|
-
// src/config.ts
|
|
103
|
-
var config = {
|
|
104
|
-
darkMode: ["class"],
|
|
105
|
-
content: [
|
|
106
|
-
// Consumer app paths - these will be merged with app-specific content paths
|
|
107
|
-
"./node_modules/@nuvia/components/**/*.{ts,tsx,js,jsx}"
|
|
108
|
-
],
|
|
109
|
-
theme: {
|
|
110
|
-
container: {
|
|
111
|
-
center: true,
|
|
112
|
-
padding: "2rem",
|
|
113
|
-
screens: {
|
|
114
|
-
"2xl": "1400px"
|
|
115
|
-
}
|
|
116
|
-
},
|
|
117
|
-
extend: {
|
|
118
|
-
colors: {
|
|
119
|
-
nuvia: {
|
|
120
|
-
"nimbus-100": "hsl(var(--color-nimbus-100) / <alpha-value>)",
|
|
121
|
-
"nimbus-200": "hsl(var(--color-nimbus-200) / <alpha-value>)",
|
|
122
|
-
"nimbus-300": "hsl(var(--color-nimbus-300) / <alpha-value>)",
|
|
123
|
-
"nimbus-400": "hsl(var(--color-nimbus-400) / <alpha-value>)",
|
|
124
|
-
"nimbus-500": "hsl(var(--color-nimbus-500) / <alpha-value>)",
|
|
125
|
-
"nimbus-600": "hsl(var(--color-nimbus-600) / <alpha-value>)",
|
|
126
|
-
"madrugada-100": "hsl(var(--color-madrugada-100) / <alpha-value>)",
|
|
127
|
-
"madrugada-200": "hsl(var(--color-madrugada-200) / <alpha-value>)",
|
|
128
|
-
"madrugada-300": "hsl(var(--color-madrugada-300) / <alpha-value>)",
|
|
129
|
-
"madrugada-400": "hsl(var(--color-madrugada-400) / <alpha-value>)",
|
|
130
|
-
"madrugada-500": "hsl(var(--color-madrugada-500) / <alpha-value>)",
|
|
131
|
-
"madrugada-600": "hsl(var(--color-madrugada-600) / <alpha-value>)",
|
|
132
|
-
"madrugada-700": "hsl(var(--color-madrugada-700) / <alpha-value>)",
|
|
133
|
-
"zafiro-100": "hsl(var(--color-zafiro-100) / <alpha-value>)",
|
|
134
|
-
"zafiro-200": "hsl(var(--color-zafiro-200) / <alpha-value>)",
|
|
135
|
-
"zafiro-300": "hsl(var(--color-zafiro-300) / <alpha-value>)",
|
|
136
|
-
"zafiro-400": "hsl(var(--color-zafiro-400) / <alpha-value>)",
|
|
137
|
-
"zafiro-500": "hsl(var(--color-zafiro-500) / <alpha-value>)",
|
|
138
|
-
"zafiro-600": "hsl(var(--color-zafiro-600) / <alpha-value>)",
|
|
139
|
-
"zafiro-700": "hsl(var(--color-zafiro-700) / <alpha-value>)",
|
|
140
|
-
"indigo-100": "hsl(var(--color-indigo-100) / <alpha-value>)",
|
|
141
|
-
"indigo-200": "hsl(var(--color-indigo-200) / <alpha-value>)",
|
|
142
|
-
"indigo-300": "hsl(var(--color-indigo-300) / <alpha-value>)",
|
|
143
|
-
"indigo-400": "hsl(var(--color-indigo-400) / <alpha-value>)",
|
|
144
|
-
"indigo-500": "hsl(var(--color-indigo-500) / <alpha-value>)",
|
|
145
|
-
"indigo-600": "hsl(var(--color-indigo-600) / <alpha-value>)",
|
|
146
|
-
"indigo-700": "hsl(var(--color-indigo-700) / <alpha-value>)",
|
|
147
|
-
"lumen-400": "hsl(var(--color-lumen-400) / <alpha-value>)",
|
|
148
|
-
"lumen-100": "hsl(var(--color-lumen-100) / <alpha-value>)",
|
|
149
|
-
"lumen-200": "hsl(var(--color-lumen-200) / <alpha-value>)",
|
|
150
|
-
"lumen-300": "hsl(var(--color-lumen-300) / <alpha-value>)",
|
|
151
|
-
"lumen-500": "hsl(var(--color-lumen-500) / <alpha-value>)",
|
|
152
|
-
"lumen-600": "hsl(var(--color-lumen-600) / <alpha-value>)",
|
|
153
|
-
"lumen-700": "hsl(var(--color-lumen-700) / <alpha-value>)",
|
|
154
|
-
"lumen-800": "hsl(var(--color-lumen-800) / <alpha-value>)",
|
|
155
|
-
"lilas-100": "hsl(var(--color-lilas-100) / <alpha-value>)",
|
|
156
|
-
"lilas-200": "hsl(var(--color-lilas-200) / <alpha-value>)",
|
|
157
|
-
"lilas-300": "hsl(var(--color-lilas-300) / <alpha-value>)",
|
|
158
|
-
"lilas-400": "hsl(var(--color-lilas-400) / <alpha-value>)",
|
|
159
|
-
"lilas-500": "hsl(var(--color-lilas-500) / <alpha-value>)",
|
|
160
|
-
"lilas-600": "hsl(var(--color-lilas-600) / <alpha-value>)",
|
|
161
|
-
"lilas-700": "hsl(var(--color-lilas-700) / <alpha-value>)",
|
|
162
|
-
"magenta-400": "hsl(var(--color-magenta-400) / <alpha-value>)",
|
|
163
|
-
"magma-400": "hsl(var(--color-magma-400) / <alpha-value>)",
|
|
164
|
-
"off-black-400": "hsl(var(--color-off-black-400) / <alpha-value>)"
|
|
165
|
-
},
|
|
166
|
-
input: "hsl(var(--input) / <alpha-value>)",
|
|
167
|
-
ring: "hsl(var(--ring) / <alpha-value>)",
|
|
168
|
-
text: {
|
|
169
|
-
DEFAULT: "hsl(var(--text-default-primary) / <alpha-value>)",
|
|
170
|
-
"default-primary": "hsl(var(--text-default-primary) / <alpha-value>)",
|
|
171
|
-
"default-secondary": "hsl(var(--text-default-secondary) / <alpha-value>)",
|
|
172
|
-
"brand-primary": "hsl(var(--text-brand-primary) / <alpha-value>)",
|
|
173
|
-
"brand-secondary": "hsl(var(--text-brand-secondary) / <alpha-value>)",
|
|
174
|
-
links: "hsl(var(--text-links) / <alpha-value>)",
|
|
175
|
-
disabled: "hsl(var(--text-disabled) / <alpha-value>)",
|
|
176
|
-
"default-inverted": "hsl(var(--text-default-inverted) / <alpha-value>)",
|
|
177
|
-
"general-light": "hsl(var(--text-general-light) / <alpha-value>)",
|
|
178
|
-
"general-dark": "hsl(var(--text-general-dark) / <alpha-value>)"
|
|
179
|
-
},
|
|
180
|
-
background: {
|
|
181
|
-
DEFAULT: "hsl(var(--background) / <alpha-value>)",
|
|
182
|
-
"default-light": "hsl(var(--background-default-light) / <alpha-value>)",
|
|
183
|
-
"default-medium": "hsl(var(--background-default-medium) / <alpha-value>)",
|
|
184
|
-
"default-heavy": "hsl(var(--background-default-heavy) / <alpha-value>)",
|
|
185
|
-
"default-accent": "hsl(var(--background-default-accent) / <alpha-value>)",
|
|
186
|
-
"primary-light": "hsl(var(--background-primary-light) / <alpha-value>)",
|
|
187
|
-
"primary-medium": "hsl(var(--background-primary-medium) / <alpha-value>)",
|
|
188
|
-
"primary-heavy": "hsl(var(--background-primary-heavy) / <alpha-value>)",
|
|
189
|
-
"secondary-light": "hsl(var(--background-secondary-light) / <alpha-value>)",
|
|
190
|
-
"secondary-medium": "hsl(var(--background-secondary-medium) / <alpha-value>)",
|
|
191
|
-
"secondary-heavy": "hsl(var(--background-secondary-heavy) / <alpha-value>)",
|
|
192
|
-
"accent-light": "hsl(var(--background-accent-light) / <alpha-value>)",
|
|
193
|
-
"accent-medium": "hsl(var(--background-accent-medium) / <alpha-value>)",
|
|
194
|
-
"accent-heavy": "hsl(var(--background-accent-heavy) / <alpha-value>)",
|
|
195
|
-
"accent-primary": "hsl(var(--background-accent-primary) / <alpha-value>)",
|
|
196
|
-
"accent-secondary": "hsl(var(--background-accent-secondary) / <alpha-value>)"
|
|
197
|
-
},
|
|
198
|
-
foreground: {
|
|
199
|
-
DEFAULT: "hsl(var(--foreground) / <alpha-value>)",
|
|
200
|
-
"default-light": "hsl(var(--foreground-default-light) / <alpha-value>)",
|
|
201
|
-
"default-xlight": "hsl(var(--foreground-default-xlight) / <alpha-value>)",
|
|
202
|
-
"default-heavy": "hsl(var(--foreground-default-heavy) / <alpha-value>)",
|
|
203
|
-
"primary-light": "hsl(var(--foreground-primary-light) / <alpha-value>)",
|
|
204
|
-
"primary-heavy": "hsl(var(--foreground-primary-heavy) / <alpha-value>)",
|
|
205
|
-
"primary-medium": "hsl(var(--foreground-primary-medium) / <alpha-value>)",
|
|
206
|
-
"secondary-light": "hsl(var(--foreground-secondary-light) / <alpha-value>)",
|
|
207
|
-
"secondary-heavy": "hsl(var(--foreground-secondary-heavy) / <alpha-value>)",
|
|
208
|
-
"secondary-medium": "hsl(var(--foreground-secondary-medium) / <alpha-value>)",
|
|
209
|
-
"accent-light": "hsl(var(--foreground-accent-light) / <alpha-value>)",
|
|
210
|
-
"accent-heavy": "hsl(var(--foreground-accent-heavy) / <alpha-value>)",
|
|
211
|
-
"accent-medium": "hsl(var(--foreground-accent-medium) / <alpha-value>)"
|
|
212
|
-
},
|
|
213
|
-
border: {
|
|
214
|
-
DEFAULT: "hsl(var(--border) / <alpha-value>)",
|
|
215
|
-
medium: "hsl(var(--border-medium) / <alpha-value>)",
|
|
216
|
-
"default-light": "hsl(var(--border-default-light) / <alpha-value>)",
|
|
217
|
-
"default-medium": "hsl(var(--border-default-medium) / <alpha-value>)",
|
|
218
|
-
"default-heavy": "hsl(var(--border-default-heavy) / <alpha-value>)",
|
|
219
|
-
"primary-light": "hsl(var(--border-primary-light) / <alpha-value>)",
|
|
220
|
-
"primary-medium": "hsl(var(--border-primary-medium) / <alpha-value>)",
|
|
221
|
-
"primary-heavy": "hsl(var(--border-primary-heavy) / <alpha-value>)",
|
|
222
|
-
"accent-light": "hsl(var(--border-accent-light) / <alpha-value>)",
|
|
223
|
-
"accent-medium": "hsl(var(--border-accent-medium) / <alpha-value>)",
|
|
224
|
-
"accent-heavy": "hsl(var(--border-accent-heavy) / <alpha-value>)"
|
|
225
|
-
},
|
|
226
|
-
primary: {
|
|
227
|
-
DEFAULT: "hsl(var(--primary) / <alpha-value>)",
|
|
228
|
-
foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
|
|
229
|
-
},
|
|
230
|
-
secondary: {
|
|
231
|
-
DEFAULT: "hsl(var(--secondary) / <alpha-value>)",
|
|
232
|
-
foreground: "hsl(var(--secondary-foreground) / <alpha-value>)"
|
|
233
|
-
},
|
|
234
|
-
destructive: {
|
|
235
|
-
DEFAULT: "hsl(var(--destructive) / <alpha-value>)",
|
|
236
|
-
foreground: "hsl(var(--destructive-foreground) / <alpha-value>)"
|
|
237
|
-
},
|
|
238
|
-
muted: {
|
|
239
|
-
DEFAULT: "hsl(var(--muted) / <alpha-value>)",
|
|
240
|
-
foreground: "hsl(var(--muted-foreground) / <alpha-value>)"
|
|
241
|
-
},
|
|
242
|
-
accent: {
|
|
243
|
-
DEFAULT: "hsl(var(--accent) / <alpha-value>)",
|
|
244
|
-
foreground: "hsl(var(--accent-foreground) / <alpha-value>)"
|
|
245
|
-
},
|
|
246
|
-
popover: {
|
|
247
|
-
DEFAULT: "hsl(var(--secondary-card) / <alpha-value>)",
|
|
248
|
-
foreground: "hsl(var(--popover-foreground) / <alpha-value>)"
|
|
249
|
-
},
|
|
250
|
-
card: {
|
|
251
|
-
DEFAULT: "hsl(var(--card) / <alpha-value>)",
|
|
252
|
-
foreground: "hsl(var(--card-foreground) / <alpha-value>)",
|
|
253
|
-
"secondary-card": "hsl(var(--secondary-card) / <alpha-value>)"
|
|
254
|
-
},
|
|
255
|
-
success: {
|
|
256
|
-
DEFAULT: "hsl(var(--success) / <alpha-value>)",
|
|
257
|
-
foreground: "hsl(var(--success-foreground) / <alpha-value>)",
|
|
258
|
-
border: "hsl(var(--success-outline) / <alpha-value>)"
|
|
259
|
-
},
|
|
260
|
-
warning: {
|
|
261
|
-
DEFAULT: "hsl(var(--warning) / <alpha-value>)",
|
|
262
|
-
foreground: "hsl(var(--warning-foreground) / <alpha-value>)",
|
|
263
|
-
border: "hsl(var(--warning-foreground) / <alpha-value>)",
|
|
264
|
-
content: "hsl(var(--warning-outline) / <alpha-value>)"
|
|
265
|
-
},
|
|
266
|
-
danger: {
|
|
267
|
-
DEFAULT: "hsl(var(--danger) / <alpha-value>)",
|
|
268
|
-
foreground: "hsl(var(--danger-foreground) / <alpha-value>)",
|
|
269
|
-
border: "hsl(var(--danger-outline) / <alpha-value>)"
|
|
270
|
-
},
|
|
271
|
-
brand: {
|
|
272
|
-
DEFAULT: "hsl(var(--primary) / <alpha-value>)",
|
|
273
|
-
foreground: "hsl(var(--primary-foreground) / <alpha-value>)"
|
|
274
|
-
},
|
|
275
|
-
sidebar: {
|
|
276
|
-
DEFAULT: "hsl(var(--sidebar-background))",
|
|
277
|
-
foreground: "hsl(var(--sidebar-foreground))",
|
|
278
|
-
primary: "hsl(var(--sidebar-primary))",
|
|
279
|
-
"primary-foreground": "hsl(var(--sidebar-primary-foreground))",
|
|
280
|
-
accent: "hsl(var(--sidebar-accent))",
|
|
281
|
-
"accent-foreground": "hsl(var(--sidebar-accent-foreground))",
|
|
282
|
-
border: "hsl(var(--sidebar-border))",
|
|
283
|
-
ring: "hsl(var(--sidebar-ring))"
|
|
284
|
-
}
|
|
285
|
-
},
|
|
286
|
-
fontFamily: {
|
|
287
|
-
sans: ["var(--font-geist-sans)", ...defaultTheme.fontFamily.sans],
|
|
288
|
-
mono: ["var(--font-geist-mono)", ...defaultTheme.fontFamily.mono]
|
|
289
|
-
},
|
|
290
|
-
keyframes: {
|
|
291
|
-
"accordion-down": {
|
|
292
|
-
from: { height: "0" },
|
|
293
|
-
to: { height: "var(--radix-accordion-content-height)" }
|
|
294
|
-
},
|
|
295
|
-
"accordion-up": {
|
|
296
|
-
from: { height: "var(--radix-accordion-content-height)" },
|
|
297
|
-
to: { height: "0" }
|
|
298
|
-
},
|
|
299
|
-
"fade-in": {
|
|
300
|
-
from: { opacity: "0" },
|
|
301
|
-
to: { opacity: "1" }
|
|
302
|
-
},
|
|
303
|
-
"fade-out": {
|
|
304
|
-
from: { opacity: "1" },
|
|
305
|
-
to: { opacity: "0" }
|
|
306
|
-
}
|
|
307
|
-
},
|
|
308
|
-
animation: {
|
|
309
|
-
"accordion-down": "accordion-down 0.2s ease-out",
|
|
310
|
-
"accordion-up": "accordion-up 0.2s ease-out",
|
|
311
|
-
"fade-in": "fade-in 0.2s ease-out",
|
|
312
|
-
"fade-out": "fade-out 0.2s ease-out"
|
|
313
|
-
},
|
|
314
|
-
typography: typography_config_default,
|
|
315
|
-
aria: {
|
|
316
|
-
invalid: 'invalid="true"'
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
},
|
|
320
|
-
plugins: [animate, typography]
|
|
321
|
-
};
|
|
322
|
-
var config_default = config;
|
|
323
|
-
|
|
324
|
-
export {
|
|
325
|
-
typography_config_default,
|
|
326
|
-
config,
|
|
327
|
-
config_default
|
|
328
|
-
};
|
|
329
|
-
//# sourceMappingURL=chunk-NZXHEYPW.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/config.ts","../src/typography.config.ts"],"sourcesContent":["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":[]}
|