-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
32 lines (32 loc) · 1 KB
/
tailwind.config.js
File metadata and controls
32 lines (32 loc) · 1 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'scan': 'scan 2s linear infinite',
'grid-pulse': 'grid-pulse 5s ease-in-out infinite',
'pulse-soft': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
scan: {
'0%': { transform: 'translateY(-100%)', opacity: '0' },
'50%': { opacity: '1' },
'100%': { transform: 'translateY(100%)', opacity: '0' },
},
'grid-pulse': {
'0%, 100%': { opacity: '0.1' },
'50%': { opacity: '0.25' },
}
}
},
},
plugins: [],
}