-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (69 loc) · 1.48 KB
/
tailwind.config.js
File metadata and controls
69 lines (69 loc) · 1.48 KB
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
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
gray: {
750: "#2B3545",
850: "#171F2E"
}
},
minWidth: {
4: "1rem",
},
width: {
4.5: "1.125rem",
18: "4.5rem",
68: "17rem",
120: "30rem",
150: "37.5rem",
200: "50rem",
},
maxWidth: {
40: "10rem",
72: "18rem",
88: "22rem",
"1/2": "50%"
},
minHeight: {
10: '2.5rem',
12: '3rem',
14: '3.5rem',
16: '4rem',
20: '5rem',
40: '10rem',
},
height: {
4.5: "1.125rem",
15: '3.75rem',
120: "30rem",
},
maxHeight: {
18: '4.5rem',
21: '5.25rem',
26: '6.5rem',
35: '8.75rem',
},
fontSize: {
"little": "0.9325rem",
"2xs": "0.625rem",
},
translate: {
"1/8": "12.5%",
"5/8": "62.5%",
},
spacing: {
"0.25": "0.0625rem",
"0.75": "0.1875rem",
"15": "3.75rem",
"29": "7.25rem",
}
},
},
plugins: [require("@tailwindcss/forms")],
};