-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
61 lines (60 loc) · 1.6 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
darkMode: 'media',
theme: {
extend: {
fontFamily: {
sans: [
'"Inter"',
"ui-sans-serif",
"system-ui",
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
},
keyframes: {
wave: {
'0%': { transform: 'translateX(-100%)' },
'45%': { transform: 'translateX(100%)' },
'55%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' }
}
},
animation: {
'wave': 'wave 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite'
},
backgroundImage: {
'footer-gradient-light': `linear-gradient(
to bottom,
rgba(255, 255, 255, 0),
rgba(255, 255, 255, 1)
),
linear-gradient(
50deg,
transparent 0%,
rgba(255, 255, 255, 0) 10%,
rgb(57, 146, 255, 0.2) 30%,
rgb(107, 217, 104, 0.2) 40%,
rgb(254, 204, 27, 0.3) 50%,
rgb(216, 59, 210, 0.2) 60%,
rgb(244, 66, 80, 0.2) 70%,
rgba(255, 255, 255, 0) 90%,
transparent 100%
)`,
'footer-gradient-dark': `linear-gradient(
90deg,
transparent 0%,
rgba(255, 255, 255, 0) 20%,
rgba(255, 255, 255, 0.1) 50%,
rgba(255, 255, 255, 0) 80%,
transparent 100%
)`
}
},
},
plugins: [],
} satisfies Config;