-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
37 lines (35 loc) · 918 Bytes
/
tailwind.config.ts
File metadata and controls
37 lines (35 loc) · 918 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";
const config = {
darkMode: ["class"],
content: [
"./pages/**/*.{ts,tsx,mdx}",
"./components/**/*.tsx",
"./app/**/*.tsx",
"./src/**/*.tsx",
],
theme: {
extend: {
colors: {
background: {
DEFAULT: "hsl(var(--background))",
100: "hsl(var(--background-100))",
},
foreground: "hsl(var(--foreground))",
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
neutral: {
DEFAULT: "hsl(var(--neutral))",
foreground: "hsl(var(--neutral-foreground))",
},
},
},
},
plugins: [require("tailwindcss-animate")],
} satisfies Config;
export default config;