-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
74 lines (74 loc) · 2.03 KB
/
tailwind.config.mjs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'hacker': {
'primary': '#00ff00', // Classic terminal green
'secondary': '#0f0', // Bright neon green
'dark': '#001100', // Dark green background
'darker': '#000800', // Darker background
'accent': '#ff00ff', // Cyberpunk accent
'terminal': '#0C0C0C', // Terminal black
}
},
fontFamily: {
'terminal': ['VT323', 'Courier New', 'monospace'],
'cyber': ['Share Tech Mono', 'monospace']
},
animation: {
'terminal-blink': 'blink 1s step-end infinite',
'scan-line': 'scan 2s linear infinite',
'glitch': 'glitch 1s linear infinite',
'matrix': 'matrix 20s linear infinite',
'retrowave': 'retrowave 3s linear infinite',
'glow': 'glow 2s ease-in-out infinite alternate'
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' }
},
scan: {
'from': { transform: 'translateY(-100%)' },
'to': { transform: 'translateY(100%)' }
},
glitch: {
'0%, 100%': { transform: 'translate(0)' },
'20%': { transform: 'translate(-2px, 2px)' },
'40%': { transform: 'translate(-2px, -2px)' },
'60%': { transform: 'translate(2px, 2px)' },
'80%': { transform: 'translate(2px, -2px)' }
},
matrix: {
'0%': { backgroundPosition: '0% -100%' },
'100%': { backgroundPosition: '0% 100%' }
},
retrowave: {
'0%': {
backgroundPosition: '0% 0%'
},
'100%': {
backgroundPosition: '200% 0%'
}
},
glow: {
'from': {
boxShadow: '0 0 20px rgba(255,45,149,0.5)',
borderColor: 'rgba(255,45,149,1)'
},
'to': {
boxShadow: '0 0 30px rgba(255,45,149,0.8)',
borderColor: 'rgba(255,45,149,0.8)'
}
}
},
backgroundImage: {
'matrix-rain': 'linear-gradient(180deg, rgba(0,255,0,0.15) 0%, rgba(0,255,0,0) 100%)'
}
},
},
plugins: [],
}