-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
32 lines (30 loc) · 812 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
32 lines (30 loc) · 812 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 = {
darkMode: "media",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
canvas: "hsl(var(--canvas) / <alpha-value>)",
text: "hsl(var(--text) / <alpha-value>)",
muted: "hsl(var(--muted) / <alpha-value>)",
line: "hsl(var(--line) / <alpha-value>)",
panel: "hsl(var(--panel) / <alpha-value>)",
accent: "hsl(var(--accent) / <alpha-value>)",
},
fontFamily: {
sans: ["var(--font-sans)"],
serif: ["var(--font-serif)"],
},
maxWidth: {
prose: "72ch",
},
},
},
plugins: [],
};
export default config;