-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
60 lines (60 loc) · 1.79 KB
/
tailwind.config.cjs
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
/* eslint-disable no-undef */
/** @type {import('tailwindcss').Config} **/
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"], //여기는 내가 가진 확장자 다 써주기!
theme: {
extend: {
fontFamily: {
"eng-regular": ["Urbanist-Regular", "sans-serif"],
"eng-bold": ["Urbanist-SemiBold", "sans-serif"],
"kor-bold": ["SpoqaHanSansNeo-Bold", "sans-serif"],
"kor-medium": ["SpoqaHanSansNeo-Medium", "sans-serif"],
"kor-regular": ["SpoqaHanSansNeo-Regular", "sans-serif"],
},
colors: {
background: "#F9F8F6",
button: "#2B663C",
disease: "#F6795B",
},
width: {
600: "37.5rem",
404: "25.25rem",
700: "43.75rem",
800: "50rem",
1000: "62.5rem"
},
height: {
130: "8.25rem",
150: "10rem",
300: "18.75rem",
320: "20rem",
350: "21.875rem",
356: "22.25rem",
400: "25rem",
540: "33.75rem",
500: "31.25rem",
750: "46.875rem"
},
screens: {
xs: "650px",
},
backgroundImage: {
grass: "url('src/images/grass.svg')",
startImg: "url('images/backImg.png')",
diagnosis: "url('images/diagnosis.svg')",
diagnosis_hover: "url('images/diagnosis_hover.svg')",
login: "url('images/login.svg')",
login_hover: "url('images/login_hover.svg')",
history: "url('images/history.svg')",
history_hover: "url('images/history_hover.svg')",
upload_image: "url('images/uploadImage.svg')",
statistics: "url('images/statistics.svg')",
statistics_hover: "url('images/statistics_hover.svg')",
},
fontSize: {
10: "10px",
},
},
},
plugins: [require("tailwindcss-animate")],
};