forked from simonyiszk/simonyi-szakmai-het-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (61 loc) · 1.18 KB
/
tailwind.config.js
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
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
defaultLineHeights: true,
standardFontWeights: true,
},
purge: ["./src/**/*.{js,ts,tsx}"],
theme: {
extend: {
height: {
"60px": "60px",
"1080px": "1080px",
"1334px": "1334px",
mobileSpacer: "15vh",
desktopSpacer: "28vh",
},
maxHeight: {
"280px": "280px",
},
colors: {
text: "#e5e5e5",
backgroundBlue: "#32293C",
navbarBG: "#231d2a",
primary: "#F7A921",
secondary: "#ED3A3C",
},
fontFamily: {
Boldstrom: "Boldstrom",
FuturaBT: "FuturaBT",
Kanit: "Kanit",
},
width: {
minContent: "min-content",
fitContent: "fit-content",
},
backgroundImage: (theme) => ({
"hero-pc": "url('/static/images/pc.png')",
"hero-mobile": "url('/static/images/mobile.png')",
}),
zIndex: {
"-1": -1,
},
fontSize: {
"7xl": "6rem",
},
lineHeight: {
initial: "initial",
5: "1.5rem",
},
gridTemplateColumns: {
tablelg: "10rem 1fr",
},
},
},
variants: {
padding: ["responsive", "hover", "focus"],
textColor: ["responsive", "hover", "focus", "active"],
},
plugins: [],
};