From a70f8946e8d94d0f87c6dce53bfac4f8d8b69dc1 Mon Sep 17 00:00:00 2001 From: Johnny Bouder Date: Fri, 4 Sep 2026 14:22:08 -0400 Subject: [PATCH] fix(ui): paint the page body with the canvas token The body used `bg-background`, which the @nebari theme now resolves to zinc-50 (the header layer), so the page rendered light gray. The registry's page layer is `--canvas` (white in light, zinc-975 in dark), and the skill documents `--background` as a legacy alias to avoid for page shells. Follow-up to #22 / nebari-dev/nebari-design#143. Co-Authored-By: Claude Fable 5.1 --- ui/src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/index.css b/ui/src/index.css index ce6b6b9..c875981 100644 --- a/ui/src/index.css +++ b/ui/src/index.css @@ -492,6 +492,6 @@ @apply border-border outline-ring/50; } body { - @apply bg-background font-sans text-foreground; + @apply bg-canvas font-sans text-foreground; } }