import type { Config } from "tailwindcss"; const config: Config = { darkMode: ["class"], content: ["./src/**/*.{ts,tsx}"], theme: { extend: { colors: { border: "hsl(var(--border))", input: "hsl(var(--input))", ring: "hsl(var(--ring))", background: "hsl(var(--background))", foreground: "hsl(var(--foreground))", muted: { DEFAULT: "hsl(var(--muted))", foreground: "hsl(var(--muted-foreground))", }, surface: { DEFAULT: "hsl(var(--surface))", raised: "hsl(var(--surface-raised))", }, primary: { DEFAULT: "hsl(var(--primary))", foreground: "hsl(var(--primary-foreground))", }, accent: { DEFAULT: "hsl(var(--accent))", foreground: "hsl(var(--accent-foreground))", }, destructive: { DEFAULT: "hsl(var(--destructive))", foreground: "hsl(var(--destructive-foreground))", }, status: { gray: "hsl(var(--status-gray))", blue: "hsl(var(--status-blue))", green: "hsl(var(--status-green))", yellow: "hsl(var(--status-yellow))", orange: "hsl(var(--status-orange))", red: "hsl(var(--status-red))", "green-dark": "hsl(var(--status-green-dark))", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 3px)", sm: "calc(var(--radius) - 6px)", xl: "calc(var(--radius) + 4px)", }, fontFamily: { sans: ["var(--font-sans)", "IBM Plex Sans", "system-ui", "sans-serif"], mono: ["var(--font-mono)", "IBM Plex Mono", "ui-monospace", "monospace"], }, boxShadow: { panel: "0 1px 2px hsl(var(--shadow-color) / 0.06), 0 8px 24px -8px hsl(var(--shadow-color) / 0.18)", pop: "0 4px 12px hsl(var(--shadow-color) / 0.12), 0 16px 40px -12px hsl(var(--shadow-color) / 0.28)", }, keyframes: { "pulse-live": { "0%, 100%": { opacity: "1" }, "50%": { opacity: "0.45" }, }, }, animation: { "pulse-live": "pulse-live 2.4s ease-in-out infinite", }, }, }, plugins: [], }; export default config;