-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (35 loc) · 1.04 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
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Mulish", "sans-serif"], // Set Mulish as the default sans font
},
keyframes: {
"slide-in-right": {
"0%": { transform: "translateX(100%)", opacity: 0 },
"100%": { transform: "translateX(0)", opacity: 1 },
},
"fade-in": {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
// Add the border move keyframes
borderMove: {
"0%": { backgroundPosition: "0% 50%" },
"100%": { backgroundPosition: "100% 50%" },
},
},
animation: {
"slide-in-right": "slide-in-right 0.6s ease-out forwards",
"fade-in": "fade-in 0.5s ease-in-out",
// Add the border move animation
borderMove: "borderMove 4s linear infinite",
},
boxShadow: {
glow: "0 0 10px rgba(122, 86, 215, 0.8), 0 0 20px rgba(122, 86, 215, 0.8)", // Updated glow color
},
},
},
plugins: [],
};