-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
97 lines (83 loc) · 2.07 KB
/
Copy pathtailwind.config.js
File metadata and controls
97 lines (83 loc) · 2.07 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const { screens } = require("tailwindcss/defaultTheme");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
xxxsm: "200px",
xxsm: "340px",
xsm: "480px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
...screens,
},
extend: {
colors: {
"makeway-dark": "#2A2E43",
"makeway-light-blue": "#EDF4F8",
"makeway-gray": "#7A7A7A",
"makeway-red": "#F40E41",
"makeway-text-blue": "#00133B",
"makeway-blue-dark": "#011F3D",
"makeway-blue-light": "#1AA1DC",
},
fontSize: {
"makeway-xxxlg": "72px",
"makeway-xxlg": "62px",
"makeway-xlg": "52px",
"makeway-lg": "44px",
"makeway-xxmd": "38px",
"makeway-xmd": "32px",
"makeway-md": "28px",
"makeway-sm-md": "24px",
"makeway-sm": "16px",
"makeway-xsm": "14px",
"makeway-xxsm": "10px",
},
minHeight: (theme) => ({
"h-min-screen": "100vh",
"makeway-px-450": "450px",
...theme("spacing"),
}),
minWidth: (theme) => ({
...theme("spacing"),
}),
height: {
"makeway-h-nav": "10%",
"makeway-h-footer": "10%",
"makeway-h-hero": "80%",
"5/2": "40%",
"makeway-px-80": "80px",
"makeway-px-100": "100px",
"makeway-px-120": "120px",
"makeway-px-150": "150px",
"makeway-px-40": "40px",
"makeway-px-50": "50px",
"makeway-px-450": "450px",
"makeway-px-750": "750px",
},
inset: {
"makeway-hero-offset-t": "20%",
},
backgroundImage: {
"makeway-hero-gradient": "#000",
},
width: {
"makeway-px-270": "270px",
"makeway-px-124": "124px",
"makeway-px-150": "150px",
},
borderRadius: {
"makeway-px-20": "20px",
},
fontFamily: {
"makeway-montserrat": ["Montserrat"],
},
},
},
plugins: [],
};