forked from MINI-FASTCAMPUS5/scheduler-front
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
46 lines (44 loc) · 1008 Bytes
/
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
export default {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
colors: (theme) => {
return {
...theme.colors,
main: '#6C27FF',
point: '#FF00A5',
wait: '#FFA800',
confirm: '#00C2FF',
white: '#FFFFFF',
black: '#000000',
hover: '#411b92',
weekend: '#E5F2F6',
weekday: '#F0FBFF',
boxline: '#E9E9E9',
boxbg: '#F4F3F3',
inputbox: '#F6F6F6'
}
},
screens: {
sm: '480px',
md: '1080px',
lg: '1280px'
},
extend: {
gridTemplateColumns: {
'cal-frame-w': 'minmax(150px, 300px) 1fr',
'cal-w': 'repeat(7, minmax(50px, 200px))'
},
gridTemplateRows: {
'cal-h-13': '30px repeat(6, auto) '
},
height: {
'98vh': '98vh'
},
fontFamily: {
gmarket: ['GmarketSans', 'sans-serif']
}
}
},
// eslint-disable-next-line no-undef
plugins: [require('tailwind-scrollbar-hide')]
}