-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 794 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 794 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
colors: {
// Custom color palette
cyber: {
blue: '#00c7ff',
green: '#00ff9d',
purple: '#7928ca',
dark: '#0a101f',
},
},
boxShadow: {
glow: '0 0 15px 5px rgba(0, 199, 255, 0.3)',
},
animation: {
'matrix-fall': 'matrix-fall 8s linear infinite',
'glow-pulse': 'pulse-glow 2s infinite',
},
transitionDuration: {
2000: '2000ms',
},
},
},
plugins: [],
};