-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
34 lines (32 loc) · 957 Bytes
/
tailwind.config.ts
File metadata and controls
34 lines (32 loc) · 957 Bytes
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
bg: '#0e0c1e',
surface: '#1a1730',
border2: '#2a2550',
brand: {
DEFAULT: '#5B54B8',
hover: '#7A74CC',
dark: '#3F3A8A',
},
muted: '#a9a5c4',
accent: '#9d97e8',
},
animation: {
'badge-pop': 'badge-pop 0.4s cubic-bezier(0.34,1.56,0.64,1)',
'slide-up': 'slide-up 0.35s ease-out',
'shrink': 'shrink linear forwards',
},
keyframes: {
'badge-pop': { '0%': { transform: 'scale(0)' }, '100%': { transform: 'scale(1)' } },
'slide-up': { '0%': { transform: 'translateY(100%)' }, '100%': { transform: 'translateY(0)' } },
'shrink': { '0%': { width: '100%' }, '100%': { width: '0%' } },
},
},
},
plugins: [],
}
export default config