-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
58 lines (58 loc) ยท 1.27 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
// ๋์์ธ ์์คํ
์ ์ฉ
backgroundColor: {
primary: '#6ED1F9',
primaryTag: '#CFFAFE',
},
backgroundImage: (theme) => ({
'_bg-home':
'linear-gradient(to right, ' +
theme('colors._slate-25') +
', ' +
theme('colors.white') +
', ' +
theme('colors.slate.50') +
')',
}),
colors: {
primaryTag: '#06B6D4',
mainColor: '#64748b',
bgColor: '#FAFAFA',
'_slate-25': '#FDFDFE',
},
width: {
sidebar: '19rem',
line: '23.625rem',
},
height: {
topbar: '4rem',
footer: '17.5rem',
toolbar: '2rem',
homeFront: '28rem',
line: '0.0625rem',
},
maxWidth: {
nicknamemodal: '25rem',
homeFront: '34rem',
surveyCard: '22.625rem',
},
borderRadius: {
'4xl': '2rem',
},
gap: {
xs: '0.25rem',
sm: '0.5rem',
md: '1rem',
lg: '2rem',
},
fontSize: {
// content: ['0.875rem', '16.94px'],
},
},
},
plugins: [],
};