-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 924 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 924 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-inter)', 'system-ui', '-apple-system', 'sans-serif'],
},
animation: {
'marquee': 'marquee 40s linear infinite',
'fade-up': 'fadeUp 0.6s ease-out forwards',
'glow-pulse': 'glowPulse 4s ease-in-out infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' },
},
fadeUp: {
'0%': { opacity: '0', transform: 'translateY(24px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
glowPulse: {
'0%, 100%': { opacity: '0.4' },
'50%': { opacity: '0.8' },
},
},
},
},
plugins: [],
};