forked from Sobremesa-Video/Sobremesa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.06 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
import type { Config } from "tailwindcss";
export default {
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"],
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: {
colorFlow: {
'0%': {
backgroundPosition: '0% 50%',
},
'50%': {
backgroundPosition: '100% 50%',
},
'100%': {
backgroundPosition: '0% 50%',
},
},
},
animation: {
colorFlow: 'colorFlow 5s infinite ease-in-out',
},
dropShadow: {
glow: '0 0 20px rgba(138, 43, 226, 0.8)', // purple glow around text
},
boxShadow: {
'gradient-glow': '0 0 15px 5px rgba(128, 90, 213, 0.6)', // subtle gradient shadow on buttons
},
},
},
plugins: [],
} satisfies Config;