-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
executable file
·88 lines (88 loc) · 1.86 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
module.exports = {
purge: ["./components/**/*.js", "./pages/**/*.js", "./public/*.css"],
theme: {
boxShadow: {
custom: "-1px 3px 12px -8px rgba(0,0,0,1)",
button: "inset 0 -3.25em 0 0 var(--hover)",
},
inset: {
"6": "6px",
"0": "0",
},
fontSize: {
xs: ".75rem",
sm: ".875rem",
tiny: ".875rem",
base: "1rem",
lg: "1.125rem",
xl: "1.25rem",
"2xl": "1.5rem",
"3xl": "1.875rem",
"4xl": "2.25rem",
"5xl": "3rem",
"6xl": "4rem",
"7xl": "5rem",
},
minHeight: {
"0": "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
},
minWidth: {
"0": "0",
"1/4": "25%",
"1/2": "50%",
"3/4": "75%",
full: "100%",
"320": "320px",
},
extend: {
colors: {
"green-1000": "#00875A",
"purple-1000": "#5243AA",
"light-blue": "#F3F8FE",
"progress-bar": "#B79BE5",
"progress-bar-2": "#673AB7",
"light-black": "#172B4D",
"light-gray-custom": "#7A869A",
"light-gray-grade-2:": "#DFE1E5",
},
textColor: {
"theme-text": "#4737FF",
},
spacing: {
"72": "18rem",
"84": "21rem",
"96": "24rem",
"375": "375px",
"300": "300px",
"30-px": "30px",
"25-px": "25px",
"20-px": "20px",
"550": "550px",
"670": "670px",
"308": "308px",
},
height: {
"(screen-16)": "calc(100vh - 4rem)",
cd: "480px",
cm: "450px",
"37": "37rem",
"drop-size": "200px",
"icon-w": "34px",
"icon-h": "28px",
"35": "35%",
},
backgroundColor: () => ({
"main-theme": "#EAE6FF",
}),
},
maxHeight: {
"420": "420px",
},
},
variants: {},
plugins: [],
};