@import "tailwindcss"; /* Tailwind v4 uses @theme to declare custom color tokens that then expose the matching utility classes (bg-background, text-foreground, border-border, etc.). Values tuned to the shadcn/ui 'new-york' palette; adjust later to match the existing vanilla app's blue / g100 colors. */ @theme { --color-background: hsl(0 0% 100%); --color-foreground: hsl(222.2 47.4% 11.2%); --color-muted: hsl(210 40% 96.1%); --color-muted-foreground: hsl(215.4 16.3% 46.9%); --color-card: hsl(0 0% 100%); --color-card-foreground: hsl(222.2 47.4% 11.2%); --color-popover: hsl(0 0% 100%); --color-popover-foreground: hsl(222.2 47.4% 11.2%); --color-primary: hsl(222.2 47.4% 11.2%); --color-primary-foreground: hsl(210 40% 98%); --color-secondary: hsl(210 40% 96.1%); --color-secondary-foreground: hsl(222.2 47.4% 11.2%); --color-accent: hsl(210 40% 96.1%); --color-accent-foreground: hsl(222.2 47.4% 11.2%); --color-destructive: hsl(0 84% 60%); --color-destructive-foreground: hsl(210 40% 98%); --color-border: hsl(214.3 31.8% 91.4%); --color-input: hsl(214.3 31.8% 91.4%); --color-ring: hsl(215 20.2% 65.1%); --radius: 0.5rem; } body { background: var(--color-background); color: var(--color-foreground); margin: 0; }