-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
49 lines (48 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
import tailwindScrollbarHide from 'tailwind-scrollbar-hide';
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
pre: ['Pretendard'],
tmon: ['TMONTium'],
yangjin: ['Yangjin'],
},
extend: {
dropShadow: {
custom: '0px 0px 6px #B9E6E9',
},
keyframes: {
fade: {
'0%, 39%, 100%': { opacity: 0 },
'40%': { opacity: 1 },
},
celebration: {
'0%, 100%': { transform: 'scale(1) rotate(0deg)' },
'50%': { transform: 'scale(1.1) rotate(5deg)' },
},
floating: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
animation: {
fade: 'fade 1.2s infinite ease-in-out',
celebration: 'celebration 2s ease-in-out infinite',
floating: 'floating 2s ease-in-out infinite',
},
colors: {
theme: {
main: '#4B628A', // 메인 테마 색상
select: '#B9E6E9', // 선택 색상
gray: '#D9D9D9', // 회색
lightgray: '#FAFAFA',
white: '#FFFFFF', // 흰색
tag: '#B9E6E9', // 태그 색상
alert: '#fdaeb38b',
},
},
},
},
plugins: [tailwindScrollbarHide],
};