/** @type {import('tailwindcss').Config} */ module.exports = { darkMode: ['class'], content: [ './pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}', './src/**/*.{js,ts,jsx,tsx,mdx}', // Include @sonr.io/ui components '../../packages/ui/src/**/*.{js,ts,jsx,tsx}', ], 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))', primary: { DEFAULT: 'hsl(var(--primary))', foreground: 'hsl(var(--primary-foreground))', }, secondary: { DEFAULT: 'hsl(var(--secondary))', foreground: 'hsl(var(--secondary-foreground))', }, destructive: { DEFAULT: 'hsl(var(--destructive))', foreground: 'hsl(var(--destructive-foreground))', }, muted: { DEFAULT: 'hsl(var(--muted))', foreground: 'hsl(var(--muted-foreground))', }, accent: { DEFAULT: 'hsl(var(--accent))', foreground: 'hsl(var(--accent-foreground))', }, popover: { DEFAULT: 'hsl(var(--popover))', foreground: 'hsl(var(--popover-foreground))', }, card: { DEFAULT: 'hsl(var(--card))', foreground: 'hsl(var(--card-foreground))', }, // Chart colors chart: { 1: 'hsl(var(--chart-1))', 2: 'hsl(var(--chart-2))', 3: 'hsl(var(--chart-3))', 4: 'hsl(var(--chart-4))', 5: 'hsl(var(--chart-5))', }, // Status colors success: { DEFAULT: 'hsl(142, 76%, 36%)', foreground: 'hsl(355.7, 100%, 97.3%)', }, warning: { DEFAULT: 'hsl(32, 95%, 44%)', foreground: 'hsl(355.7, 100%, 97.3%)', }, info: { DEFAULT: 'hsl(221, 83%, 53%)', foreground: 'hsl(355.7, 100%, 97.3%)', }, }, 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' }, }, 'fade-in': { '0%': { opacity: '0' }, '100%': { opacity: '1' }, }, 'fade-out': { '0%': { opacity: '1' }, '100%': { opacity: '0' }, }, 'slide-in-from-top': { '0%': { transform: 'translateY(-100%)' }, '100%': { transform: 'translateY(0)' }, }, 'slide-out-to-top': { '0%': { transform: 'translateY(0)' }, '100%': { transform: 'translateY(-100%)' }, }, 'pulse-subtle': { '0%, 100%': { opacity: '1' }, '50%': { opacity: '0.8' }, }, }, animation: { 'accordion-down': 'accordion-down 0.2s ease-out', 'accordion-up': 'accordion-up 0.2s ease-out', 'fade-in': 'fade-in 0.5s ease-in-out', 'fade-out': 'fade-out 0.5s ease-in-out', 'slide-in-from-top': 'slide-in-from-top 0.3s ease-out', 'slide-out-to-top': 'slide-out-to-top 0.3s ease-in', 'pulse-subtle': 'pulse-subtle 2s ease-in-out infinite', }, fontFamily: { sans: ['var(--font-sans)', 'system-ui', 'sans-serif'], mono: ['var(--font-mono)', 'Consolas', 'monospace'], }, spacing: { 18: '4.5rem', 88: '22rem', 128: '32rem', }, screens: { xs: '475px', }, }, }, plugins: [require('tailwindcss-animate')], };