-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (42 loc) · 864 Bytes
/
tailwind.config.js
File metadata and controls
42 lines (42 loc) · 864 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
export default {
content: ["./index.html", "./src/**/*.{jsx,svg}"],
theme: {
extend: {
gridTemplateRows: {
"3r": "auto 1fr auto",
},
colors: {
text: {
lighter: "#ffffff",
light: "#f1f1f1",
dark: "#0f0f0f",
darker: "black",
},
accent: {
light: "#ff3f3f",
DEFAULT: "red",
},
bg: {
gray: "#ffffff",
light: "white",
dark: "#121212",
darker: "black",
},
},
borderRadius: {
DEFAULT: "5px",
lg: "10px",
sm: "2px",
circle: "999999px",
},
fontFamily: {
primary: ["Circular Std", "sans-serif"],
secondary: ["DM Sans", "sans-serif"],
},
screens: {
xsm: "300px",
},
},
},
plugins: [],
};