Files
2026-04-30 22:44:27 +02:00

35 lines
1.0 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
bg: '#0d0d0d',
surface: '#1a1a1a',
surface2: '#242424',
border: '#2e2e2e',
accent: '#dc2626',
'accent-hover': '#b91c1c',
orange: '#ea580c',
muted: '#6b7280',
text: '#f4f4f5',
'text-muted': '#9ca3af',
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
mono: ['JetBrains Mono', 'monospace'],
},
animation: {
'fade-in': 'fadeIn 0.2s ease-in-out',
'slide-up': 'slideUp 0.3s ease-out',
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
keyframes: {
fadeIn: { '0%': { opacity: 0 }, '100%': { opacity: 1 } },
slideUp: { '0%': { transform: 'translateY(20px)', opacity: 0 }, '100%': { transform: 'translateY(0)', opacity: 1 } },
},
},
},
plugins: [],
}