-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
37 lines (36 loc) · 955 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
37 lines (36 loc) · 955 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
33
34
35
36
37
import type { Config } from "tailwindcss";
export default {
darkMode: ["class"],
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1280px",
},
},
extend: {
colors: {
background: "hsl(40 20% 98%)",
foreground: "hsl(210 15% 12%)",
card: "hsl(0 0% 100%)",
border: "hsl(214 14% 90%)",
muted: "hsl(210 12% 96%)",
mutedForeground: "hsl(215 16% 45%)",
primary: "hsl(164 40% 33%)",
primaryForeground: "hsl(0 0% 100%)",
secondary: "hsl(212 18% 30%)",
secondaryForeground: "hsl(0 0% 100%)",
accent: "hsl(164 40% 94%)",
accentForeground: "hsl(164 40% 33%)",
},
borderRadius: {
lg: "0.9rem",
md: "0.7rem",
sm: "0.5rem",
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;