-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.25 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
colors: {
glass: {
50: 'rgba(255, 255, 255, 0.05)',
100: 'rgba(255, 255, 255, 0.1)',
200: 'rgba(255, 255, 255, 0.2)',
300: 'rgba(255, 255, 255, 0.3)'
},
prism: {
violet: '#8B5CF6',
blue: '#3B82F6',
cyan: '#06B6D4',
emerald: '#10B981',
amber: '#F59E0B',
rose: '#F43F5E'
}
},
fontFamily: {
display: ['Space Grotesk', 'system-ui', 'sans-serif'],
body: ['Inter', 'system-ui', 'sans-serif']
},
animation: {
'float': 'float 6s ease-in-out infinite',
'shimmer': 'shimmer 2s linear infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite'
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' }
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' }
}
},
backdropBlur: {
xs: '2px'
}
}
},
plugins: []
}