-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
49 lines (49 loc) · 1.18 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} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
fadeIn: {
from: { opacity: 0 },
to: { opacity: 1 },
},
typing: {
from: { width: "0" },
to: { width: "100%" },
},
heartbeat: {
'0%, 100%': { transform: 'scale(1)' },
'14%, 28%': { transform: 'scale(1.1)' },
},
},
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
fadeIn: 'fadeIn 0.5s ease-out',
typing: 'typing 2s steps(40, end) forwards',
heartbeat: 'heartbeat 1.5s ease-in-out infinite', // Corrected
},
},
container: {
center: true,
padding: {
Default: "20px",
md: "40px",
}
},
colors: {
'Gray1': '#313037',
'Gray2': '#424347',
'Purple1': '#7854AB',
'Purple2': '#9C75DB',
'Cyan1': '#368384',
'Cyan2': '#48B5A7',
"Red": "red"
},
},
plugins: [],
};