import type { Config } from 'tailwindcss'; import tailwindcssAnimate from 'tailwindcss-animate'; const config: Config = { darkMode: 'class', content: ['./src/**/*.{js,ts,jsx,tsx,mdx}', './index.html'], prefix: '', theme: { container: { center: true, padding: '2rem', screens: { '2xl': '1400px', }, }, extend: { colors: { border: 'hsl(var(--border))', input: 'hsl(var(--input))', ring: 'hsl(var(--ring))', background: 'hsl(var(--background))', foreground: 'hsl(var(--foreground))', card: 'hsl(var(--card))', cardForeground: 'hsl(var(--card-foreground))', popover: 'hsl(var(--popover))', popoverForeground: 'hsl(var(--popover-foreground))', muted: 'hsl(var(--muted))', mutedForeground: 'hsl(var(--muted-foreground))', accent: 'hsl(var(--accent))', accentForeground: 'hsl(var(--accent-foreground))', destructive: 'hsl(var(--destructive))', destructiveForeground: 'hsl(var(--destructive-foreground))', primary: { DEFAULT: 'hsl(var(--primary))', foreground: 'hsl(var(--primary-foreground))', }, secondary: { DEFAULT: 'hsl(var(--secondary))', foreground: 'hsl(var(--secondary-foreground))', }, sidebar: { DEFAULT: 'hsl(var(--sidebar))', foreground: 'hsl(var(--sidebar-foreground))', primary: 'hsl(var(--sidebar-primary))', primaryForeground: 'hsl(var(--sidebar-primary-foreground))', accent: 'hsl(var(--sidebar-accent))', accentForeground: 'hsl(var(--sidebar-accent-foreground))', border: 'hsl(var(--sidebar-border))', ring: 'hsl(var(--sidebar-ring))', }, }, 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: [tailwindcssAnimate], }; export default config;