-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
54 lines (54 loc) · 1.55 KB
/
Copy pathtailwind.config.js
File metadata and controls
54 lines (54 loc) · 1.55 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#8B06F5',
accent: '#00E5FF',
background: '#090909',
card: '#111111',
'text-primary': '#F5F5F5',
'text-secondary': '#A0A0A0',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
display: ['Outfit', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'float': 'float 6s ease-in-out infinite',
'float-delay': 'float 6s ease-in-out 2s infinite',
'float-slow': 'float 8s ease-in-out 1s infinite',
'pulse-glow': 'pulseGlow 2s ease-in-out infinite',
'gradient-x': 'gradientX 8s ease infinite',
'spin-slow': 'spin 8s linear infinite',
'bounce-slow': 'bounce 3s infinite',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
pulseGlow: {
'0%, 100%': { boxShadow: '0 0 20px rgba(139,6,245,0.4)' },
'50%': { boxShadow: '0 0 40px rgba(139,6,245,0.8), 0 0 60px rgba(0,229,255,0.3)' },
},
gradientX: {
'0%, 100%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
},
},
backgroundSize: {
'300%': '300%',
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}