-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 928 Bytes
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 928 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
38
39
40
41
42
43
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
background: "#09090b",
foreground: "#fafafa",
primary: {
DEFAULT: "#3b82f6",
foreground: "#ffffff",
},
secondary: {
DEFAULT: "#27272a",
foreground: "#fafafa",
},
muted: {
DEFAULT: "#27272a",
foreground: "#a1a1aa",
},
accent: {
DEFAULT: "#3b82f6",
foreground: "#ffffff",
},
border: "#27272a",
input: "#27272a",
ring: "#3b82f6",
},
borderRadius: {
lg: "0.5rem",
md: "calc(0.5rem - 2px)",
sm: "calc(0.5rem - 4px)",
},
fontFamily: {
mono: ["JetBrains Mono", "Fira Code", "monospace"],
sans: ["Inter", "sans-serif"],
}
},
},
plugins: [],
};