-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
35 lines (34 loc) · 948 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
33
34
35
import { type Config } from "tailwindcss";
import colors from "tailwindcss/colors";
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
darkMode: ["class"],
content: ["./src/**/*.tsx"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
lg: "1024px",
},
},
extend: {
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
colors: {
primary: colors.zinc,
accent: colors.purple,
"accent-foreground": "hsl(var(--accent-foreground))",
border: "hsl(var(--border))",
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
muted: "hsl(var(--muted))",
"muted-forground": "hsl(var(--muted-foreground))",
ring: "hsl(var(--ring))",
"card-background": "hsl(var(--card-background))",
},
},
},
plugins: [],
} satisfies Config;