-
Notifications
You must be signed in to change notification settings - Fork 3
/
windi.config.ts
48 lines (48 loc) · 1.08 KB
/
windi.config.ts
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
export default {
theme: {
fontFamily: {
sans: ["Open Sans", "ui-sans-serif", "system-ui", "sans-serif"],
headline: [
"Overpass",
"Open Sans",
"ui-sans-serif",
"system-ui",
"sans-serif",
],
mono: ["Overpass Mono", "monospace"],
},
extend: {
screens: {
xxl: "1400px",
},
colors: {
header: {
background: "var(--color-header-background)",
color: "var(--color-header-color)",
highlight: "var(--color-header-highlight)",
},
content: {
background: "var(--color-content-background)",
color: "var(--color-content-color)",
highlight: "var(--color-content-highlight)",
},
scenery: "var(--color-scenery)",
},
},
container: {
center: true,
padding: "1rem",
},
},
scan: {
dirs: ["./"],
exclude: ["node_modules", ".git", "dist", ".cache", ".temp"],
},
preflight: {
alias: {
// add gridsome aliases
"g-link": "a",
"g-image": "img",
},
},
}