forked from project1-team04/team04-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (49 loc) · 1.2 KB
/
tailwind.config.js
File metadata and controls
52 lines (49 loc) · 1.2 KB
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
// team04-frontend Wiki '디자인 시스템' 문서에서 용도 확인 가능
colors: {
purple: {
DEFAULT: '#6224FD',
hover: '#4903FB',
},
gray: {
DEFAULT: '#EFEFEF',
hover: '#D7D7D7',
},
white: '#FFFFFF',
orange: '#FFA500',
green: '#8BC48A',
red: {
DEFAULT: '#FF0101',
hover: '#c10505',
},
text: {
DEFAULT: '#232527',
sub: '#444444',
disabled: '#A0A0A0',
success: '#2768FF',
error: '#FF0101',
},
bg: {
DEFAULT: '#FFFFFF',
light: '#F5F5F5',
deep: '#EFEFEF',
},
'border-default': '#BFBFBF',
'divider-default': '#E2E2E2',
},
},
},
plugins: [require('tailwindcss-animate')],
};