/** @type {import('tailwindcss').Config} */ export default { darkMode: ["class"], content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { // ResolutionFlow Brand Colors brand: { gradient: { from: '#06b6d4', to: '#22d3ee', }, dark: { DEFAULT: '#101114', card: '#14161a', surface: '#14161a', }, text: { primary: '#f8fafc', secondary: '#8891a0', muted: '#5a6170', }, border: 'rgba(255, 255, 255, 0.06)', }, // shadcn/ui color system 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))", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 2px)", sm: "calc(var(--radius) - 4px)", }, fontFamily: { sans: ['IBM Plex Sans', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'], heading: ['Bricolage Grotesque', 'system-ui', 'sans-serif'], label: ['JetBrains Mono', 'monospace'], }, backgroundImage: { 'gradient-brand': 'linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%)', 'gradient-brand-hover': 'linear-gradient(135deg, #0891b2 0%, #06b6d4 100%)', }, }, }, plugins: [], }