-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
33 lines (32 loc) · 888 Bytes
/
tailwind.config.ts
File metadata and controls
33 lines (32 loc) · 888 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
import type { Config } from 'tailwindcss'
export default {
darkMode: 'class',
content: ['./src/**/*.{ts,tsx,html}'],
theme: {
extend: {
colors: {
bg: 'var(--color-bg)',
surface: 'var(--color-surface)',
'surface-hover': 'var(--color-surface-hover)',
accent: 'var(--color-accent)',
'accent-muted': 'var(--color-accent-muted)',
'text-primary': 'var(--color-text)',
'text-muted': 'var(--color-text-muted)',
border: 'var(--color-border)',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
keyframes: {
slidein: {
from: { opacity: '0', transform: 'translateY(-10px)' },
to: { opacity: '1', transform: 'translateY(0)' },
},
},
animation: {
slidein: 'slidein 0.3s ease',
},
},
},
plugins: [],
} satisfies Config