-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 1.03 KB
/
Copy pathtailwind.config.js
File metadata and controls
36 lines (36 loc) · 1.03 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
34
35
36
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./app/**/*.{vue,ts,js}',
'./components/**/*.{vue,ts,js}',
],
theme: {
extend: {
fontFamily: {
mono: ['"JetBrains Mono"', 'ui-monospace', 'monospace'],
sans: ['"JetBrains Mono"', 'ui-monospace', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s ease-in-out infinite',
'glow-pulse': 'glowPulse 2.5s ease-in-out infinite',
'blob-drift': 'blobDrift 12s ease-in-out infinite alternate',
'scan-line': 'scanLine 8s linear infinite',
},
keyframes: {
glowPulse: {
'0%, 100%': { opacity: '0.6' },
'50%': { opacity: '1' },
},
blobDrift: {
from: { transform: 'translate(0, 0) scale(1)' },
to: { transform: 'translate(30px, 20px) scale(1.05)' },
},
scanLine: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(200%)' },
},
},
},
},
plugins: [],
}