-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
40 lines (40 loc) · 1.2 KB
/
tailwind.config.ts
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
module.exports = {
darkMode: 'class',
theme: {
extend: {
animation: {
'spin-slow': 'spin 15s linear infinite',
'pulse-weak': 'pulseWeak 4s linear infinite',
'fade-in-up': 'fIU 0.25s cubic-bezier(0.4, 0, 0.2, 1)',
'fade-in': 'fI 0.25s cubic-bezier(0.4, 0, 0.2, 1)',
},
backgroundImage: {
'pattern': "url('/public/background.svg')",
},
keyframes: {
pulseWeak: {
'0%, 100%': { opacity: 0.05 },
'50%': { opacity: 0.2 },
},
fIU: {
'0%': {
opacity: '0',
transform: 'translateY(20px)',
},
'100%': {
opacity: '1',
transform: 'translateY(0)',
}
},
fI: {
'0%': {
opacity: '0',
},
'100%': {
opacity: '1',
}
},
},
}
},
}