-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 912 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
module.exports = {
purge: { content: ['./public/**/*.html', './src/**/*.vue'] },
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
colors: {
gray: {
'100': '#F8F9FA',
'200': '#E9EEF2'
},
},
animation: {
'spin-in': 'spin-in 0.2s ease-out 1',
'spin-out': 'spin-out 0.1s ease-out 1',
'fade-in': 'fade-in 0.1s ease-out 1',
'fade-out': 'fade-out 0.1s ease-out 1 forwards',
},
keyframes: {
'fade-in': {
'0%': { opacity: '0%', },
'100%': { opacity: '100%' },
},
'fade-out': {
'0%': { opacity: '100%' },
'100%': { opacity: '0%' },
},
'spin-in': {
'0%': { transform: 'rotate(90deg)' },
'100%': { transform: 'rotate(0deg)' },
},
'spin-out': {
'0%': { transform: 'rotate(0deg)' },
'100%': { transform: 'rotate(90deg)' },
}
}
},
},
variants: {
extend: {},
},
plugins: [],
}