29 lines
801 B
JavaScript
29 lines
801 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{ts,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
base: '#0f0f13',
|
|
surface: '#16161f',
|
|
card: '#1c1c28',
|
|
border: '#2a2a3a',
|
|
muted: '#6b7280',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
mono: ['JetBrains Mono', 'Fira Code', 'monospace'],
|
|
},
|
|
animation: {
|
|
'fade-in': 'fadeIn 0.2s ease-out',
|
|
'slide-up': 'slideUp 0.25s ease-out',
|
|
},
|
|
keyframes: {
|
|
fadeIn: { from: { opacity: '0' }, to: { opacity: '1' } },
|
|
slideUp: { from: { opacity: '0', transform: 'translateY(8px)' }, to: { opacity: '1', transform: 'translateY(0)' } },
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|