forked from UseInterstellar/Interstellar-Astro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
32 lines (32 loc) · 867 Bytes
/
tailwind.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
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "sans-serif"],
},
colors: {
background: {
DEFAULT: "var(--background)",
secondary: "var(--background-secondary)",
settings: "var(--background-settings)",
},
interactive: {
DEFAULT: "var(--interactive)",
secondary: "var(--interactive-secondary)",
},
border: "var(--border)",
accent: {
DEFAULT: "var(--accent)",
secondary: "var(--accent-secondary)",
},
text: {
DEFAULT: "var(--text)",
secondary: "var(--text-secondary)",
placeholder: "var(--text-placeholder)",
},
dropdown: "var(--dropdown)",
},
},
},
};