-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
45 lines (43 loc) · 1.25 KB
/
tailwind.config.ts
File metadata and controls
45 lines (43 loc) · 1.25 KB
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
import type { Config } from "tailwindcss";
const config = {
darkMode: "class",
content: [
"./app/**/*.{ts,tsx}",
"./components/**/*.{ts,tsx}",
"./lib/**/*.{ts,tsx}",
"./store/**/*.{ts,tsx}",
],
theme: {
extend: {
keyframes: {
beam: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
shimmer: {
"0%": { backgroundPosition: "200% 0" },
"100%": { backgroundPosition: "-200% 0" },
},
"float-slow": {
"0%, 100%": { transform: "translate3d(0, 0, 0)" },
"50%": { transform: "translate3d(0, -18px, 0)" },
},
"pulse-soft": {
"0%, 100%": { opacity: "0.45", transform: "scale(1)" },
"50%": { opacity: "0.9", transform: "scale(1.08)" },
},
},
animation: {
beam: "beam 8s linear infinite",
shimmer: "shimmer 2.8s linear infinite",
"float-slow": "float-slow 12s ease-in-out infinite",
"pulse-soft": "pulse-soft 4s ease-in-out infinite",
},
boxShadow: {
dashboard:
"0 20px 60px -28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05)",
},
},
},
} satisfies Config;
export default config;