-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
63 lines (61 loc) · 1.31 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: ["class"],
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: {
DEFAULT: "#ffffff",
dark: "#111827",
},
foreground: {
DEFAULT: "#000000",
dark: "#f1f5f9",
},
muted: {
DEFAULT: "#f1f5f9",
dark: "#334155",
foreground: {
DEFAULT: "#64748b",
dark: "#e0e0e0",
},
},
accent: {
DEFAULT: "#22C55E",
dark: "#EC4899",
secondary: {
DEFAULT: "#1e9e4c",
dark: "#DB2777",
},
},
secondary: {
DEFAULT: "#f1f5f9",
dark: "#334155",
foreground: {
DEFAULT: "#0f172a",
dark: "#f1f5f9",
},
},
primary: {
DEFAULT: "#0f172a",
dark: "#f1f5f9",
foreground: {
DEFAULT: "#f1f5f9",
dark: "#0f172a",
},
},
ring: {
DEFAULT: "#22C55E",
dark: "#cbd5e1",
},
},
},
},
plugins: [],
};
export default config;