-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
70 lines (68 loc) · 2.09 KB
/
Copy pathtailwind.config.js
File metadata and controls
70 lines (68 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Techno Dark Theme - Re-refined
'dark-bg': '#050505',
'dark-surface': '#0a0a0a',
'dark-card': '#111111',
// Techno Accent Colors - More vibrant and "pro"
'techno-cyan': '#00f3ff',
'techno-blue': '#0066ff',
'techno-magenta': '#ff00ff',
'techno-purple': '#7000ff',
'techno-lime': '#39ff14',
'techno-matrix': '#00ff41',
// Text Colors
'text-primary': '#ffffff',
'text-secondary': '#a1a1aa',
'text-muted': '#52525b',
},
fontFamily: {
'heading': ['"Space Grotesk"', 'sans-serif'],
'body': ['Inter', 'sans-serif'],
'mono': ['"JetBrains Mono"', 'monospace'],
},
animation: {
'glitch': 'glitch 1s linear infinite',
'scanline': 'scanline 8s linear infinite',
'flicker': 'flicker 2s linear infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
glitch: {
'0%, 100%': { transform: 'translate(0)' },
'33%': { transform: 'translate(-2px, 2px)' },
'66%': { transform: 'translate(2px, -2px)' },
},
scanline: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' },
},
flicker: {
'0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100%': { opacity: 1 },
'20%, 21.999%, 63%, 63.999%, 65%, 69.999%': { opacity: 0.4 },
}
},
boxShadow: {
'techno-glow': '0 0 20px rgba(0, 243, 255, 0.3)',
'glow-cyan': '0 0 15px rgba(0, 243, 255, 0.5)',
'glow-magenta': '0 0 15px rgba(255, 0, 255, 0.5)',
'glow-lime': '0 0 15px rgba(57, 255, 20, 0.5)',
},
maxWidth: {
'container': '1200px',
},
spacing: {
'section': '80px',
'section-mobile': '48px',
},
},
},
plugins: [],
}