forked from chess-mazes/chess-mazes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 987 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
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'chess-dark': 'var(--chess-dark)',
'chess-light': 'var(--chess-light)',
text: 'var(--text)',
background1: 'var(--background1)',
background2: 'var(--background2)',
background3: 'var(--background3)',
background4: 'var(--background4)',
background5: 'var(--background5)',
},
keyframes: {
'fade-in': {
'0%': {
opacity: '0',
},
'100%': {
opacity: '1',
},
},
'fade-out': {
'0%': {
opacity: '1',
},
'100%': {
opacity: '0',
},
},
},
animation: {
'fade-in': 'fade-in 0.5s ease-out',
'fade-out': 'fade-out 0.5s ease-out',
'chess-move': '0.4s ease-in fade-in backwards',
},
},
},
plugins: [],
};