-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
117 lines (117 loc) · 2.74 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
106
107
108
109
110
111
112
113
114
115
116
117
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
sm: "480px",
md: "768px",
lg: "1024px",
lg2: "1280px",
lg3: "1366px",
xl: "1440px",
},
colors: {
white: "#FFFFFF",
black: "#333333",
black2: "#000000",
primary: "#8247E5",
gray1: "#B0B3B5",
gray2: "#4F5254",
gray3: "#7B8084",
gray4: "#F8F8F6",
gray5: "#4A4D4F",
gray6: "#C5CED3",
gray6: "#C5CED3",
gray7: "#FBFAF9",
gray8: "#191A1A",
gray9: "#ACB5BD",
gray10: "#EFEFEF",
dark: "#1E1E1E",
dark2: "#141414",
dark3: "#0C0C0C",
dark4: "#0A0A0A",
footerBorderColor: "rgb(189, 189, 189)",
primary: "#8247E5",
confirm: "#037DD6",
lightPurple: "#F3EDFC",
red: "#E23B49",
},
borderRadius: {
xs: "0.03125rem",
lg2: "0.625rem",
"4xl": "1.875rem",
"4.5xl": "2.5rem",
"5xl": "3.125rem",
"50%": "50%",
},
height: {
"42px": "2.625rem",
"50px": "3.125rem",
"55px": "3.4375rem",
"181px": "11.3125rem",
"488px": "30.5rem",
"588px": "36.75rem",
"600px": "37.5rem",
"734px": "45.875rem",
},
fontFamily: {
Gilroy: "'Gilroy', sans-serif",
Montserrat: "'Montserrat', sans-serif",
},
borderWidth: {
xxs: "0.01875rem",
xs: "0.03125rem",
"10px": "0.625rem",
},
maxWidth: {
"208px": "16rem",
"464px": "29rem",
"477px": "29.8125rem",
"612px": "38.35rem",
"768px": "48rem",
},
fontSize: {
xxs: "0.625rem",
xs: "0.75rem",
},
minHeight: {
"50vh": "50vh",
"133px": "8.3125rem",
"200px": "12.5rem",
"253px": "15.8125rem",
"314px": "19.625rem",
"339px": "21.1875rem",
"386px": "24.125rem",
"489px": "30.5625rem",
"588px": "36.75rem",
},
padding: {
"1px": "0.0625rem",
sm: "0.875rem",
},
width: {
"7%": "7%",
"25%": "25%",
"39%": "39%",
"41%": "41%",
"65%": "65%",
"70%": "70%",
"90%": "90%",
"1px": "0.03125rem",
"181px": "11.3125rem",
"445px": "27.8125rem",
"768px": "48rem",
},
boxShadow: {
"dropdown-shadow":
"-2px -2px 5px 2px rgba(0, 0, 0, 0.05), 2px 2px 5px 2px rgba(0, 0, 0, 0.05)",
},
},
},
plugins: [],
};