-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathtailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.29 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
neon: {
purple: '#a855f7',
cyan: '#22d3ee',
green: '#4ade80',
pink: '#f472b6',
yellow: '#facc15',
},
dark: {
900: '#0a0a0f',
800: '#111118',
700: '#1a1a24',
600: '#22222f',
500: '#2e2e3f',
},
},
fontFamily: {
mono: ['JetBrains Mono', 'Fira Code', 'Consolas', 'monospace'],
},
animation: {
'glow-pulse': 'glowPulse 2s ease-in-out infinite',
'slide-in': 'slideIn 0.3s ease-out',
'fade-up': 'fadeUp 0.4s ease-out',
},
keyframes: {
glowPulse: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.6' },
},
slideIn: {
from: { transform: 'translateX(-20px)', opacity: '0' },
to: { transform: 'translateX(0)', opacity: '1' },
},
fadeUp: {
from: { transform: 'translateY(16px)', opacity: '0' },
to: { transform: 'translateY(0)', opacity: '1' },
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}