forked from ibttf/interview-coder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.29 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: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
theme: {
extend: {
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"]
},
animation: {
in: "in 0.2s ease-out",
out: "out 0.2s ease-in",
pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
shimmer: "shimmer 2s linear infinite",
"text-gradient-wave": "textGradientWave 2s infinite ease-in-out"
},
keyframes: {
textGradientWave: {
"0%": { backgroundPosition: "0% 50%" },
"100%": { backgroundPosition: "200% 50%" }
},
shimmer: {
"0%": {
backgroundPosition: "200% 0"
},
"100%": {
backgroundPosition: "-200% 0"
}
},
in: {
"0%": { transform: "translateY(100%)", opacity: 0 },
"100%": { transform: "translateY(0)", opacity: 1 }
},
out: {
"0%": { transform: "translateY(0)", opacity: 1 },
"100%": { transform: "translateY(100%)", opacity: 0 }
},
pulse: {
"0%, 100%": {
opacity: 1
},
"50%": {
opacity: 0.5
}
}
}
}
},
plugins: []
}