-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.73 KB
/
tailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.73 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{ts,tsx,html}'],
theme: {
extend: {
colors: {
// ReflectTrade Cyberpunk Theme
'rt-blood': '#FF0000',
'rt-crimson': '#DC143C',
'rt-dark': '#000000',
'rt-void': '#0A0A0A',
'rt-steel': '#1A1A1A',
'rt-neon': '#FF3333',
'rt-warning': '#FF6B6B',
'rt-text': '#FFFFFF',
'rt-muted': '#888888',
},
fontFamily: {
'mono': ['JetBrains Mono', 'Fira Code', 'monospace'],
'display': ['Orbitron', 'sans-serif'],
},
animation: {
'pulse-red': 'pulse-red 1.5s ease-in-out infinite',
'glitch': 'glitch 0.3s ease-in-out infinite',
'scan': 'scan 2s linear infinite',
'shake': 'shake 0.5s ease-in-out',
},
keyframes: {
'pulse-red': {
'0%, 100%': { boxShadow: '0 0 20px rgba(255, 0, 0, 0.5)' },
'50%': { boxShadow: '0 0 40px rgba(255, 0, 0, 0.8)' },
},
'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)' },
},
'scan': {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(100%)' },
},
'shake': {
'0%, 100%': { transform: 'translateX(0)' },
'10%, 30%, 50%, 70%, 90%': { transform: 'translateX(-5px)' },
'20%, 40%, 60%, 80%': { transform: 'translateX(5px)' },
},
},
},
},
plugins: [],
};