-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (52 loc) · 1.12 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
/** @type {import('tailwindcss').Config} */
export default {
//index.html을 포함한 src경로 내부에 자바스크립트,
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
width: {
22: "5.5rem",
23: "5.8rem",
29: "7.25rem",
50: "12.5rem",
70: "17.5rem",
96: "24rem",
108: "27rem",
112: "28rem",
125: "31.25rem",
140: "35rem",
},
height: {
22: "5.5rem",
130: "32.5rem",
240: "60rem",
320: "80rem",
708: "177rem",
},
colors: {
"main-color": "#124E77",
"light-blue": "#4D80A3",
"deep-blue": "#001D31",
"light-gray": "#F5F5F5",
"nomal-gray": "#EBEBEB",
"deep-gray": "#BABABA",
"light-yellow": "#FEF4D0",
"deep-yellow": "#F9D966",
},
borderWidth: {
1: "1px",
3: "3px",
},
primary: {
DEFAULT: "#2bca43",
},
borderRadius: {
30: "1.875rem",
},
fontSize: {
xs2: "0.65rem",
},
},
},
plugins: [],
};