From 4bd4b23657f8ce00cf06d3303b346514f4b2f130 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Sun, 22 Mar 2026 20:39:08 +0100 Subject: [PATCH] fix: add missing brand-950 to Tailwind config Root cause: brand-950 was used in 13+ files but never defined in tailwind.config.ts (brand colors only went 50-900). All dark:bg-brand-950 classes produced no CSS output, making dark backgrounds invisible. Fix: add brand-950 mapped to --accent-900 CSS variable (same as 900, the darkest shade available). This makes all existing brand-950 classes work across the entire codebase. Co-Authored-By: claude-flow --- apps/web/src/components/blueprints/FieldCard.tsx | 2 +- apps/web/tailwind.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/blueprints/FieldCard.tsx b/apps/web/src/components/blueprints/FieldCard.tsx index 220a390..0d36411 100644 --- a/apps/web/src/components/blueprints/FieldCard.tsx +++ b/apps/web/src/components/blueprints/FieldCard.tsx @@ -83,7 +83,7 @@ export function FieldCard({ field, overrides, onChange }: FieldCardProps) {
diff --git a/apps/web/tailwind.config.ts b/apps/web/tailwind.config.ts index a54a5a8..2b8cf48 100644 --- a/apps/web/tailwind.config.ts +++ b/apps/web/tailwind.config.ts @@ -17,6 +17,7 @@ const config: Config = { 700: "rgb(var(--accent-700) / )", 800: "rgb(var(--accent-800) / )", 900: "rgb(var(--accent-900) / )", + 950: "rgb(var(--accent-900) / )", }, }, fontFamily: {