import tailwindcssAnimate from 'tailwindcss-animate' /** @type {import('tailwindcss').Config} */ export default { darkMode: ['class'], content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { extend: { colors: { bg: 'oklch(var(--bg) / )', surface: 'oklch(var(--surface) / )', line: 'oklch(var(--line) / )', text: 'oklch(var(--text) / )', muted: 'oklch(var(--muted) / )', accent: 'oklch(var(--accent) / )', info: 'oklch(0.72 0 0 / )', success: 'oklch(0.72 0 0 / )', warning: 'oklch(0.72 0 0 / )', danger: 'oklch(0.72 0 0 / )', }, borderRadius: { xl: '1rem', '2xl': '1.25rem', }, boxShadow: { glass: '0 12px 28px oklch(0 0 0 / 0.45)', lift: '0 12px 28px oklch(0 0 0 / 0.45)', }, keyframes: { rise: { '0%': { opacity: '0', transform: 'translate3d(0, 10px, 0)' }, '100%': { opacity: '1', transform: 'translate3d(0, 0, 0)' }, }, }, animation: { rise: 'rise 440ms cubic-bezier(0.22, 1, 0.36, 1) both', }, }, }, plugins: [tailwindcssAnimate], }