-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.25 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.25 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
53
// tailwind.config.js
export default {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
colors: {
'dol-main': '#5264BF',
'dol-dark': '#354E73',
'dol-sub': '#CEDFF6',
'dol-light-sub': '#F1F6FD',
'dol-point': '#C6B7FA',
'dol-light-gray': '#B1B1B1',
'dol-dark-gray': '#626262',
'dol-error': '#E80B26',
'dol-light-bg': '#F4F4F4',
'dol-light': '#F2F2F2',
},
borderRadius: {
lg: '20px',
md: '8px',
sm: '5px',
},
boxShadow: {
'custom-shadow': '0 0 4px rgba(0, 0, 0, 0.25)',
},
fontFamily: {
jua: ['Jua', 'sans-serif'],
corelight: ['S-CoreDream-3Light', 'sans-serif'],
},
keyframes: {
fadein: {
'0%': {
opacity: '0',
transform: 'translateY(10px)',
visibility: 'hidden',
},
'1%': {
visibility: 'visible',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
visibility: 'visible',
},
},
},
animation: {
fadein: 'fadein 0.5s ease-out both',
},
},
},
plugins: [],
};