-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 887 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
44 lines (43 loc) · 887 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {
colors: {
primary: '#fff',
primaryLight: 'rgba(235,235,235,0.5)',
primaryDim: 'rgb(228,228,228)'
},
},
animation: {
'avatar': "animateAvatar .5s linear infinite",
'pulse': "animatePulse .5s infinite ease-in-out"
},
keyframes: {
animateAvatar: {
"0%": {
transform: "scale(1)",
},
"50%": {
transform: "scale(1.03)",
},
"100%": {
transform: "scale(1)",
}
},
animatePulse: {
"0%": {
opacity: 0,
},
"50%": {
opacity: 1.
},
"100%": {
opacity: 0,
transform: "scale(1.2)"
}
}
},
},
plugins: [],
}