-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 911 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 911 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
35
36
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
cyber: {
bg: '#0F111A',
surface: '#1A1D2E',
primary: '#00FF9F',
secondary: '#00D9FF',
accent: '#FF006E',
text: '#E0E0E0',
muted: '#6B7280',
},
},
fontFamily: {
mono: ['Fira Code', 'Cascadia Code', 'Consolas', 'monospace'],
},
animation: {
'glow': 'glow 2s ease-in-out infinite alternate',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
glow: {
'0%': { boxShadow: '0 0 5px #00FF9F, 0 0 10px #00FF9F' },
'100%': { boxShadow: '0 0 10px #00FF9F, 0 0 20px #00FF9F, 0 0 30px #00FF9F' },
},
},
},
},
plugins: [],
}