-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.33 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
backgroundImage: {
banner_1: "url('./assets/banner_1.png')",
home: "url('./assets/background_1.png')",
upload: "url('./assets/uploadIcon.png')",
delete: "url('./assets/deleteIcon.png')",
},
colors: {
"selected-green": "#08BD9D",
"homeGymPrice-green": "#08BD9D",
"google-red": "#DF4F3D",
"kakao-yellow": "#FEC600",
"naver-green": "#62BA46",
"detail-spaceType-font-green": "#51776E",
"detail-spaceType-bg-green": "#D3EBE5",
"content-box-gray": "#FBFBFB",
"content-box-text-gray": "#8B8B8B",
"star-yellow": "#FEC600",
"register-subTitle-gray": "#8B8B8B",
"non-selected-gray": "#C4C4C4",
},
fontSize: {
xs: ["10px", "12px"],
sm: ["12px", "16px"],
base: ["16px", "20px"],
lg: ["18px", "24px"],
xl: ["24px", "32px"],
content: ["13px", "18px"],
},
screens: {
sm: "475px",
md: "768px",
lg: "1024px",
xl: "1640px",
},
aspectRatio: {
"2/1": "2 / 1",
},
padding: {
"57%": "57%",
},
},
},
plugins: [require("tailwind-scrollbar-hide")],
};