import type { Config } from 'tailwindcss' export default { darkMode: ['class'], content: ['./index.html', './src/**/*.{ts,tsx}'], theme: { container: { center: true, padding: '1rem', screens: { '2xl': '1280px', }, }, extend: { screens: { wide: '1400px', }, colors: { background: 'hsl(var(--background))', foreground: 'hsl(var(--foreground))', card: 'hsl(var(--card))', 'card-foreground': 'hsl(var(--card-foreground))', popover: 'hsl(var(--popover))', 'popover-foreground': 'hsl(var(--popover-foreground))', border: 'hsl(var(--border))', input: 'hsl(var(--input))', primary: 'hsl(var(--primary))', 'primary-foreground': 'hsl(var(--primary-foreground))', muted: 'hsl(var(--muted))', 'muted-foreground': 'hsl(var(--muted-foreground))', accent: 'hsl(var(--accent))', 'accent-foreground': 'hsl(var(--accent-foreground))', destructive: 'hsl(var(--destructive))', 'destructive-foreground': 'hsl(var(--destructive-foreground))', }, borderRadius: { lg: 'var(--radius)', md: 'calc(var(--radius) - 2px)', sm: 'calc(var(--radius) - 4px)', }, }, }, plugins: [], } satisfies Config