-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
65 lines (64 loc) · 1.62 KB
/
Copy pathtailwind.config.ts
File metadata and controls
65 lines (64 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { Config } from "tailwindcss";
import svgToDataUri from "mini-svg-data-uri";
import plugin from "tailwindcss/plugin";
export default {
darkMode: "class",
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./nuxt.config.{js,ts}",
"./app.vue",
"./error.vue",
],
theme: {
extend: {
colors: {
main: "var(--main-color)",
muted: "var(--muted)",
inverted: "var(--inverted)",
"text-color": "var(--text-color)",
accent: "var(--accent)",
"accent-hover": "var(--accent-hover)",
"accent-faded": "var(--accent-faded)",
},
gradientColorStops: {
"accent-main": "var(--accent-main)",
"accent-secondary": "var(--accent-secondary)",
},
borderWidth: {
sm: "1px",
md: "2px",
},
},
},
plugins: [
plugin(function ({ matchUtilities, theme }) {
matchUtilities(
{
"bg-grid": (value: string) => ({
backgroundImage: `url("${svgToDataUri(
`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" stroke="${value}" fill="none"><path d="M64 0H0V64"/></svg>`,
)}")`,
}),
},
{
values: theme("backgroundColor"),
type: ["color"],
},
);
matchUtilities(
{
"bg-grid": (value: string) => ({
backgroundSize: value,
}),
},
{
values: theme("spacing"),
type: ["number", "length", "any"],
},
);
}),
],
} satisfies Config;