-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
148 lines (147 loc) · 4.41 KB
/
tailwind.config.ts
File metadata and controls
148 lines (147 loc) · 4.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
// Cyberpunk color palette
cyber: {
// Neon greens
green: {
50: '#e6fff0',
100: '#b3ffcc',
200: '#80ff99',
300: '#4dff66',
400: '#1aff33',
500: '#00ff00', // Pure neon green
600: '#00e600',
700: '#00cc00',
800: '#00b300',
900: '#009900',
950: '#006600',
},
// Electric oranges
orange: {
50: '#fff4e6',
100: '#ffe0b3',
200: '#ffcc80',
300: '#ffb84d',
400: '#ffa41a',
500: '#ff9000', // Main orange
600: '#ff7c00',
700: '#ff6800',
800: '#ff5400',
900: '#ff4000',
950: '#cc3300',
},
// Cyan accents
cyan: {
50: '#e6ffff',
100: '#b3ffff',
200: '#80ffff',
300: '#4dffff',
400: '#1affff',
500: '#00ffff', // Pure cyan
600: '#00e6e6',
700: '#00cccc',
800: '#00b3b3',
900: '#009999',
950: '#006666',
},
// Dark backgrounds
dark: {
50: '#1a1a1f',
100: '#18181b',
200: '#151517',
300: '#121214',
400: '#0f0f11',
500: '#0c0c0e',
600: '#09090b',
700: '#060608',
800: '#030305',
900: '#000000',
},
},
// Override default colors for consistency
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
card: {
DEFAULT: "hsl(var(--card))",
foreground: "hsl(var(--card-foreground))",
},
popover: {
DEFAULT: "hsl(var(--popover))",
foreground: "hsl(var(--popover-foreground))",
},
primary: {
DEFAULT: "hsl(var(--primary))",
foreground: "hsl(var(--primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--secondary))",
foreground: "hsl(var(--secondary-foreground))",
},
muted: {
DEFAULT: "hsl(var(--muted))",
foreground: "hsl(var(--muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--accent))",
foreground: "hsl(var(--accent-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--destructive))",
foreground: "hsl(var(--destructive-foreground))",
},
border: "hsl(var(--border))",
input: "hsl(var(--input))",
ring: "hsl(var(--ring))",
},
animation: {
'pulse-glow': 'pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'gradient-shift': 'gradient-shift 6s ease infinite',
'neon-flicker': 'neon-flicker 2s infinite alternate',
'cyber-scan': 'cyber-scan 8s ease-in-out infinite',
},
keyframes: {
'pulse-glow': {
'0%, 100%': {
opacity: '1',
filter: 'drop-shadow(0 0 3px currentColor) drop-shadow(0 0 10px currentColor)',
},
'50%': {
opacity: '0.8',
filter: 'drop-shadow(0 0 6px currentColor) drop-shadow(0 0 20px currentColor)',
},
},
'gradient-shift': {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
'neon-flicker': {
'0%, 18%, 22%, 25%, 53%, 57%, 100%': {
filter: 'drop-shadow(0 0 4px currentColor) drop-shadow(0 0 10px currentColor)',
},
'20%, 24%, 55%': {
filter: 'none',
},
},
'cyber-scan': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(100%)' },
},
},
backgroundImage: {
'cyber-grid': `linear-gradient(to right, #00ff0010 1px, transparent 1px),
linear-gradient(to bottom, #00ff0010 1px, transparent 1px)`,
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
},
},
plugins: [],
} satisfies Config;