-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
60 lines (60 loc) · 1.48 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./App.{js,jsx,ts,tsx}',
'./app/**/*.{js,jsx,ts,tsx}',
'./app/*.{js,jsx,ts,tsx}',
'./app/screens/*.{js,jsx,ts,tsx}',
],
theme: {
extend: {
colors: {
'Gray-01': '#FAFAFA',
'Gray-02': '#F5F5F5',
'Gray-03': '#EEEEEE',
'Gray-04': '#E0E0E0',
'Gray-05': '#BDBDBD',
'Gray-06': '#9E9E9E',
'Gray-07': '#757575',
'Gray-08': '#616161',
'Gray-09': '#424242',
'Gray-10': '#212121',
'Main-01': '#FF5414',
'Sub-01': '#FFF3EB',
'Sub-02': '#F7F7EF',
Naver: '#27D34A',
Kakao: '#FFEB00',
},
fontSize: {
'Heading-1': '34px',
'Heading-2': '28px',
'Heading-3': '21px',
'Heading-4': '18px',
'Body-1': '16px',
'Body-2': '14px',
'Detail-1': '12px',
},
lineHeight: {
'Heading-1': '44px',
'Heading-2': '37px',
'Heading-3': '29px',
'Heading-4': '25px',
'Body-1': '24px',
'Body-2': '22px',
'Detail-1': '18px',
},
fontFamily: {
'pretendard-regular': ['Pretendard-Regular'],
'pretendard-semibold': ['Pretendard-SemiBold'],
'pretendard-bold': ['Pretendard-Bold'],
},
keyframes: {
spins: {
'0%': {transform: 'rotate(0deg)'},
'50%': {transform: 'rotate(360deg)'},
},
},
},
},
plugins: [],
};