-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 970 Bytes
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 970 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
44
45
46
47
48
49
50
51
module.exports = {
content: ["./src/**/*.js", "./src/**/*.jsx", "./src/**/*.ts", "./src/**/*.tsx"],
theme: {
extend: {},
fontSize: {
base: "1rem",
md: "1.5rem",
lg: "2rem",
xl: "2.3rem",
"2xl": "2.7rem",
"3xl": "6rem",
"4xl": "8rem",
"5xl": "10rem",
},
cursor: {
auto: "auto",
default: "default",
pointer: "pointer",
},
fontFamily: {
display: "Fugaz One",
body: "Titillium Web",
},
screens: {
sm: "576px",
md: "768px",
lg: "992px",
xl: "1200px",
},
colors: {
transparent: "transparent",
orange: "#ea4255",
white: "#fff",
black: "#000",
gray: "#333"
},
container: {
center: true,
padding: {
default: "0.8rem",
sm: "1rem",
lg: "2rem",
xl: "3rem",
},
},
},
variants: {
margin: ["last"],
},
options: { important: true },
};