-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontSize: {
header: '20px',
captionHeader: '16px',
body: '14px',
captionBody: '14px',
assistive: '12px',
button: '16px',
},
letterSpacing: {
header: '-0.05em',
},
colors: {
primary: '#08F283', // Primary 색상
secondary: '#2A3328', // Secondary 색상
neutral: '#141513', // Neutral 배경 색상
addGreen: '#05D976', // 추가 색상 1
addDarkGreen: '#02733E', // 추가 색상 2
textLightGray: '#D9D9D9 ', // 텍스트 연회색
textDarkGray: '#838383', // 텍스트 진회색
matchLine: '#80C576',
toastColor: '#20271E',
addRed: '#FE3B34',
darkBlack: '#141513',
},
margin: {
vertical: '16px',
horizontal: '16px',
},
padding: {
vertical: '16px',
horizontal: '16px',
},
borderRadius: {
common: '32px',
modal: '16px',
box: '24px',
},
},
},
plugins: [],
};