-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 1.04 KB
/
Copy pathtailwind.config.js
File metadata and controls
33 lines (33 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
mono: ['var(--font-mono)', 'JetBrains Mono', 'Fira Code', 'monospace'],
display: ['var(--font-display)', 'Inter', 'system-ui', 'sans-serif'],
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'float': 'float 6s ease-in-out infinite',
'scan': 'scan 8s linear infinite',
'glow-pulse': 'glowPulse 3s ease-in-out infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-12px)' },
},
scan: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100vh)' },
},
glowPulse: {
'0%, 100%': { opacity: '0.6', filter: 'blur(8px)' },
'50%': { opacity: '1', filter: 'blur(4px)' },
},
},
},
},
plugins: [],
}