/** @type {import('tailwindcss').Config} */ module.exports = { darkMode: ['class'], content: ['./index.html', './client/**/*.{js,jsx}'], theme: { container: { center: true, padding: '2rem', screens: { '2xl': '1400px' } }, extend: { colors: { border: 'oklch(var(--border) / )', input: 'oklch(var(--input) / )', ring: 'oklch(var(--ring) / )', background: 'oklch(var(--background) / )', foreground: 'oklch(var(--foreground) / )', primary: { DEFAULT: 'oklch(var(--primary) / )', foreground: 'oklch(var(--primary-foreground) / )', }, secondary: { DEFAULT: 'oklch(var(--secondary) / )', foreground: 'oklch(var(--secondary-foreground) / )', }, destructive: { DEFAULT: 'oklch(var(--destructive) / )', foreground: 'oklch(var(--destructive-foreground) / )', }, muted: { DEFAULT: 'oklch(var(--muted) / )', foreground: 'oklch(var(--muted-foreground) / )', }, accent: { DEFAULT: 'oklch(var(--accent) / )', foreground: 'oklch(var(--accent-foreground) / )', }, popover: { DEFAULT: 'oklch(var(--popover) / )', foreground: 'oklch(var(--popover-foreground) / )', }, card: { DEFAULT: 'oklch(var(--card) / )', foreground: 'oklch(var(--card-foreground) / )', }, sidebar: { DEFAULT: 'oklch(var(--sidebar) / )', foreground: 'oklch(var(--sidebar-foreground) / )', primary: 'oklch(var(--sidebar-primary) / )', accent: 'oklch(var(--sidebar-accent) / )', border: 'oklch(var(--sidebar-border) / )', ring: 'oklch(var(--sidebar-ring) / )', }, }, fontFamily: { sans: ['var(--font-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'], serif: ['var(--font-serif)', 'ui-serif', 'Georgia', 'serif'], mono: ['var(--font-mono)', 'ui-monospace', 'SFMono-Regular', 'monospace'], }, borderRadius: { lg: 'var(--radius)', md: 'calc(var(--radius) - 2px)', sm: 'calc(var(--radius) - 4px)', }, keyframes: { 'accordion-down': { from: { height: '0' }, to: { height: 'var(--radix-accordion-content-height)' } }, 'accordion-up': { from: { height: 'var(--radix-accordion-content-height)' }, to: { height: '0' } }, }, animation: { 'accordion-down': 'accordion-down 0.2s ease-out', 'accordion-up': 'accordion-up 0.2s ease-out', }, }, }, plugins: [require('tailwindcss-animate')], };