@@ -10,18 +10,38 @@ module.exports = {
10
10
'border-[#ff2d20]' , 'text-[#ff2d20]' , 'bg-[#ff2d20]' , 'from-[#ff2d20]' , 'to-[#ff2d20]' , 'hover:bg-[#ff2d20]' , 'hover:text-[#ff2d20]' ,
11
11
'border-[#f47316]' , 'text-[#f47316]' , 'bg-[#f47316]' , 'from-[#f47316]' , 'to-[#f47316]' , 'hover:bg-[#f47316]' , 'hover:text-[#f47316]' ,
12
12
'border-[#fb70a9]' , 'text-[#fb70a9]' , 'bg-[#fb70a9]' , 'from-[#fb70a9]' , 'to-[#fb70a9]' , 'hover:bg-[#fb70a9]' , 'hover:text-[#fb70a9]' ,
13
- // Blue color for "All Frameworks" option
14
13
'border-[#3b82f6]' , 'text-[#3b82f6]' , 'bg-[#3b82f6]' , 'from-[#3b82f6]' , 'to-[#3b82f6]' , 'hover:bg-[#3b82f6]' , 'hover:text-[#3b82f6]' ,
15
14
] ,
16
15
theme : {
17
16
extend : {
18
17
animation : {
19
18
'float' : 'float 3s ease-in-out infinite' ,
19
+ 'power-up' : 'power-up 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards' ,
20
20
} ,
21
21
keyframes : {
22
22
float : {
23
23
'0%, 100%' : { transform : 'translateY(0px)' } ,
24
24
'50%' : { transform : 'translateY(-10px)' } ,
25
+ } ,
26
+ 'power-up' : {
27
+ '0%' : {
28
+ opacity : '0' ,
29
+ transform : 'scale(0.3) translateY(100px)' ,
30
+ filter : 'brightness(2)' ,
31
+ } ,
32
+ '50%' : {
33
+ opacity : '1' ,
34
+ transform : 'scale(1.2) translateY(-20px)' ,
35
+ filter : 'brightness(1.5)' ,
36
+ } ,
37
+ '75%' : {
38
+ transform : 'scale(0.9) translateY(10px)' ,
39
+ filter : 'brightness(1.2)' ,
40
+ } ,
41
+ '100%' : {
42
+ transform : 'scale(1) translateY(0)' ,
43
+ filter : 'brightness(1)' ,
44
+ }
25
45
}
26
46
} ,
27
47
colors : {
0 commit comments