-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
105 lines (105 loc) · 2.25 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
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
98
99
100
101
102
103
104
105
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
sm: { max: "667px" },
md: { min: "668px", max: "1279px" },
"md-for-menu": { min: "668px", max: "968px" },
"md-container": { min: "1024px", max: "1279px" },
lg: { min: "1280px", max: "1535px" },
"max-md": { max: "1279px" },
"min-lg": { min: "1280px" },
"2xl": { min: "1536px" },
},
container: {
padding: {
DEFAULT: "1rem",
},
maxWidth: {
"md-container": "968px",
},
margin: {
DEFAULT: "1rem",
sm: "1rem",
md: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem",
"max-md": "2rem",
},
},
extend: {
animation: {
"spin-once": "spin 3s linear",
},
zIndex: {
2000: "2000",
},
dropShadow: {
"news-letter": "0 6px 3px rgba(66, 135, 245, 0.15)",
},
colors: {
blue: {
1000: "#041B49",
mask: "#1C68F3",
cookies: "#112F6C",
},
gray: {
1000: "#0B1117",
description: "#777E91",
background: "#F5F9FF",
h2: "#E6E8EC",
},
black: {
main: "#1B1B1B",
},
tfBg: {
main: "#EFF3F4",
},
},
minHeight: {
"hg-about-content": "767px",
"md-about-content": "567px",
"screen-2/5": "40vh",
276: "320px",
396: "420px",
564: "600px",
300: "300px",
},
minWidth: {
"nav-links": "450px",
"nav-logo": "110px",
"about-image": "480px",
280: "280px",
"2/5": "40%",
},
maxWidth: {
xss: "240px",
"nav-logo": "140px",
"8xl": "1440px",
"1/2": "50vw",
"1/3": "33vw",
800: "800px",
half: "50%",
infoMax: "292px",
imgMax: "325px",
},
maxHeight: {
"screen-1/3": "30vh",
},
height: {
"footer-body": "268px",
},
width: {
"download-badge": "180px",
"download-badge-sm": "135px",
},
},
},
variants: {
extend: {},
},
plugins: [],
important: true,
};