-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 986 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
34 lines (34 loc) · 986 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'cyber-dark': '#0F0F0F',
'cyber-darker': '#1B1B1B',
'neon-pink': '#FF0080',
'neon-cyan': '#00FFFF',
'neon-green': '#8AFF00',
'neon-yellow': '#FCEE09',
},
fontFamily: {
'cyber': ['Orbitron', 'monospace'],
'exo': ['Exo 2', 'sans-serif'],
},
animation: {
'glitch': 'glitch 2s infinite',
'pulse-neon': 'pulse-neon 2s ease-in-out infinite',
},
boxShadow: {
'neon-pink': '0 0 5px #FF0080, 0 0 10px #FF0080, 0 0 15px #FF0080',
'neon-cyan': '0 0 5px #00FFFF, 0 0 10px #00FFFF, 0 0 15px #00FFFF',
'neon-green': '0 0 5px #8AFF00, 0 0 10px #8AFF00, 0 0 15px #8AFF00',
'neon-yellow': '0 0 5px #FCEE09, 0 0 10px #FCEE09, 0 0 15px #FCEE09',
}
},
},
plugins: [],
}