-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
99 lines (99 loc) · 3.08 KB
/
Copy pathtailwind.config.js
File metadata and controls
99 lines (99 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
colors: {
void: '#07071a',
deep: '#0a0a20',
surface: '#111132',
panel: '#161640',
border: '#252560',
teal: {
400: '#2dd4bf',
500: '#14b8a6',
600: '#0d9488',
},
violet: {
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
},
rose: {
400: '#fb7185',
500: '#f43f5e',
},
amber: {
400: '#fbbf24',
500: '#f59e0b',
},
text: {
primary: '#e8e8ff',
secondary: '#9898cc',
muted: '#5a5a8a',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
display: ['"DM Serif Display"', 'Georgia', 'serif'],
mono: ['"JetBrains Mono"', 'monospace'],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'glass-border': 'linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02))',
},
boxShadow: {
glass: '0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05)',
'glow-teal': '0 0 30px rgba(45, 212, 191, 0.3)',
'glow-violet': '0 0 30px rgba(167, 139, 250, 0.3)',
'glow-rose': '0 0 30px rgba(251, 113, 133, 0.4)',
'inner-glow': 'inset 0 0 30px rgba(45, 212, 191, 0.05)',
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'aurora': 'aurora 20s linear infinite',
'shimmer': 'shimmer 2s linear infinite',
'slide-up': 'slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1)',
'slide-down': 'slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1)',
'fade-in': 'fadeIn 0.5s ease-out',
'scale-in': 'scaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1)',
},
keyframes: {
float: {
'0%, 100%': { transform: 'translateY(0px)' },
'50%': { transform: 'translateY(-20px)' },
},
aurora: {
'0%': { backgroundPosition: '0% 50%' },
'50%': { backgroundPosition: '100% 50%' },
'100%': { backgroundPosition: '0% 50%' },
},
shimmer: {
'0%': { backgroundPosition: '-200% 0' },
'100%': { backgroundPosition: '200% 0' },
},
slideUp: {
'0%': { opacity: '0', transform: 'translateY(20px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
slideDown: {
'0%': { opacity: '0', transform: 'translateY(-10px)' },
'100%': { opacity: '1', transform: 'translateY(0)' },
},
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
scaleIn: {
'0%': { opacity: '0', transform: 'scale(0.9)' },
'100%': { opacity: '1', transform: 'scale(1)' },
},
},
backdropBlur: {
xs: '2px',
},
},
},
plugins: [],
}