This repository has been archived by the owner on Sep 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (75 loc) · 2.15 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
keyframes: {
toggleOff: {
"0%": { transform: "scale(1) rotate(0deg)" },
"100%": { transform: "scale(0.5) rotate(-360deg)", opacity: 50 },
},
toggleOn: {
"0%": { transform: "scale(0.5) rotate(-180deg)", opacity: 50 },
"60%": { transform: "scale(1) rotate(-380deg)" },
"80%": { transform: "rotate(25deg)" },
"100%": { transform: "rotate(-5deg)" },
},
visited: {
"0%": {
transform: "scale(0.3)",
backgroundColor: "rgba(147, 51, 234, 0.75)",
borderRadius: "100%",
},
"50%": {
backgroundColor: "rgba(79, 70, 229, 0.75)",
},
"75%": {
transform: "scale(1.2)",
backgroundColor: "rgba(59, 130, 246, 0.75)",
},
"100%": {
transform: "scale(1)",
backgroundColor: "rgba(34, 211, 238, 1)",
},
},
path: {
"0%": {
transform: "scale(0.3)",
backgroundColor: "rgba(225, 29, 72, 0.75)",
borderRadius: "100%",
},
"50%": {
backgroundColor: "rgba(234, 88, 12, 0.75)",
},
"75%": {
transform: "scale(1.2)",
backgroundColor: "rgba(251, 146, 60, 0.75)",
},
"90%": {
transform: "scale(0.8)",
backgroundColor: "rgba(253, 230, 138, 1)",
},
"100%": {
transform: "scale(1)",
},
},
wall: {
"0%": {
transform: "scale(0.7)",
},
"100%": {
transform: "scale(1)",
},
},
},
animation: {
toggleOff: "toggleOff 0.5s cubic-bezier(0.4, 0, 0.2, 1)",
toggleOn: "toggleOn 0.5s cubic-bezier(0.4, 0, 0.2, 1)",
visited: "visited 1.5s cubic-bezier(0, 0, 0.2, 1)",
path: "path 1.5s cubic-bezier(0, 0, 0.2, 1)",
wall: "wall 0.3s cubic-bezier(0.4, 0, 0.2, 1)",
},
},
},
plugins: [],
darkMode: "class",
};