-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (56 loc) · 1.83 KB
/
Copy pathtailwind.config.js
File metadata and controls
56 lines (56 loc) · 1.83 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'background': '#0A0E17',
'background-alt': '#111827',
'neon-blue': '#00E5FF',
'neon-purple': '#9A4DFF',
'neon-green': '#00FF9D',
'neon-red': '#FF3E3E',
'cyber-yellow': '#FFD600',
'text-primary': '#EAECEF',
'terminal-green': '#0CFF70',
'matrix-green': '#00FF41',
'dark-blue': '#0B1021',
'grid-line': 'rgba(0, 229, 255, 0.1)',
},
fontFamily: {
'poppins': ['Poppins', 'sans-serif'],
'inter': ['Inter', 'sans-serif'],
'code': ['Fira Code', 'monospace'],
},
backgroundImage: {
'cyber-grid': 'linear-gradient(to right, var(--tw-gradient-stops)), linear-gradient(to bottom, var(--tw-gradient-stops))',
'matrix-rain': 'url("/backgrounds/matrix-rain.svg")',
'circuit-pattern': 'url("/backgrounds/circuit-pattern.svg")',
},
animation: {
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'glow': 'glow 2s ease-in-out infinite alternate',
'typing': 'typing 3.5s steps(40, end), blink-caret .75s step-end infinite',
},
keyframes: {
glow: {
'0%': { textShadow: '0 0 5px rgba(0, 229, 255, 0.5), 0 0 10px rgba(0, 229, 255, 0.3)' },
'100%': { textShadow: '0 0 10px rgba(0, 229, 255, 0.8), 0 0 20px rgba(0, 229, 255, 0.5), 0 0 30px rgba(0, 229, 255, 0.3)' },
},
typing: {
'from': { width: '0' },
'to': { width: '100%' },
},
'blink-caret': {
'from, to': { borderColor: 'transparent' },
'50%': { borderColor: '#00E5FF' },
},
},
},
},
plugins: [],
darkMode: 'class',
}