-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (57 loc) · 1.69 KB
/
tailwind.config.js
File metadata and controls
57 lines (57 loc) · 1.69 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
57
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
backgroundColor: {
'bg-dark': 'var(--bg-dark)',
'glass': 'var(--glass)',
'glass-hover': 'var(--glass-hover)',
},
textColor: {
'text-main': 'var(--text-main)',
'text-dark': 'var(--text-dark)',
'text-muted': 'var(--text-muted)',
},
borderColor: {
'border': 'var(--border)',
'border-hover': 'var(--border-hover)',
},
colors: {
'neon-blue': 'var(--neon-blue)',
'neon-purple': 'var(--neon-purple)',
'neon-pink': 'var(--neon-pink)',
'neon-orange': 'var(--neon-orange)',
'neon-green': 'var(--neon-green)',
'color-main': 'rgb(var(--color-main) / <alpha-value>)',
'color-accent': 'rgb(var(--color-accent) / <alpha-value>)',
'color-mixed': 'rgb(var(--color-mixed) / <alpha-value>)',
},
fontFamily: {
head: ['Space Grotesk', 'Segoe UI', 'sans-serif'],
body: ['Inter', 'system-ui', 'sans-serif'],
},
animation: {
'float': 'float 20s infinite alternate',
'progress-glow': 'progressGlow 2s ease-in-out infinite',
},
keyframes: {
float: {
'0%': { transform: 'translate(0, 0) rotate(0deg)' },
'100%': { transform: 'translate(30px, 20px) rotate(5deg)' },
},
progressGlow: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0.8' },
},
},
transitionTimingFunction: {
'bounce': 'cubic-bezier(0.68, -0.55, 0.265, 1.55)',
},
},
},
plugins: [],
}