-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtailwind.config.mts
More file actions
32 lines (31 loc) · 852 Bytes
/
tailwind.config.mts
File metadata and controls
32 lines (31 loc) · 852 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
background: "var(--background)",
foreground: "var(--foreground)",
"bg-page": "var(--bg-page)",
"bg-sidebar": "var(--bg-sidebar)",
"bg-island": "var(--bg-island)",
"text-main": "var(--text-main)",
"text-muted": "var(--text-muted)",
border: "var(--border)",
accent: "var(--accent)",
warning: "var(--warning)",
danger: "var(--danger)",
"toast-bg": "var(--toast-bg)",
},
fontFamily: {
branding: ["var(--font-branding)"],
sans: ["var(--font-sans)"],
},
borderColor: {
DEFAULT: "var(--border)",
},
},
},
plugins: [],
};
export default config;