-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
59 lines (59 loc) · 2.03 KB
/
tailwind.config.js
File metadata and controls
59 lines (59 loc) · 2.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
wired: {
bg: '#1d1d20', // User confirmed darker void
fg: '#2b2b2e', // Darker element base
'fg-light': '#323236', // Lighter element/Highlight
accent: '#00FF41', // Terminal Green (minimal use)
text: '#E0E0E0',
dim: '#858585',
}
},
fontFamily: {
mono: ['"Share Tech Mono"', '"Courier Prime"', 'monospace'],
serif: ['"Cormorant Garamond"', 'serif'],
code: ['"Courier Prime"', 'monospace'],
},
animation: {
'scanline': 'scanline 8s linear infinite',
'noise': 'noise 0.5s steps(3) infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'glitch': 'glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite',
},
keyframes: {
scanline: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' }
},
noise: {
'0%, 100%': { transform: 'translate(0, 0)' },
'10%': { transform: 'translate(-5%, -5%)' },
'20%': { transform: 'translate(-10%, 5%)' },
'30%': { transform: 'translate(5%, -10%)' },
'40%': { transform: 'translate(-5%, 15%)' },
'50%': { transform: 'translate(-10%, 5%)' },
'60%': { transform: 'translate(15%, 0)' },
'70%': { transform: 'translate(0, 10%)' },
'80%': { transform: 'translate(-15%, 0)' },
'90%': { transform: 'translate(10%, 5%)' },
},
glitch: {
'0%': { transform: 'translate(0)' },
'20%': { transform: 'translate(-2px, 2px)' },
'40%': { transform: 'translate(-2px, -2px)' },
'60%': { transform: 'translate(2px, 2px)' },
'80%': { transform: 'translate(2px, -2px)' },
'100%': { transform: 'translate(0)' }
}
}
},
},
plugins: [],
}