From 6ee35929b5985183b82a663304c9dbc02cbf1fbf Mon Sep 17 00:00:00 2001 From: maebeale Date: Fri, 21 Aug 2026 08:09:53 -0400 Subject: [PATCH] Use the brand cream (#FCFAEB) as the site background instead of white MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The brand guide names #FCFAEB as the page background, but the site rendered on plain white — the layout hard-coded bg-white. Add a single --color-canvas theme token (the one place to change it) and point the at bg-canvas, so the whole site canvas now matches the brand guide. Public pages that fell through to the white body now show cream; per-page content wrappers are unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) --- app/frontend/stylesheets/application.tailwind.css | 4 ++++ app/views/layouts/application.html.erb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/frontend/stylesheets/application.tailwind.css b/app/frontend/stylesheets/application.tailwind.css index d64734ab9..dd8b96e82 100644 --- a/app/frontend/stylesheets/application.tailwind.css +++ b/app/frontend/stylesheets/application.tailwind.css @@ -17,6 +17,10 @@ --color-info: var(--color-blue-500); --color-success: var(--color-green-500); --color-transparent: transparent; + /* AWBW brand page background — "BACKGROUND COLOR: #FCFAEB" in + app/assets/images/brand/awbw-brand-guide.pdf. The site canvas; change it here + and every `bg-canvas` (the in the app layout) updates. */ + --color-canvas: #fcfaeb; --font-telefon: "Telefon Bold", sans-serif; /* Social network brand colors, used for the hover fill on share/follow diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 44e963e68..212bdf045 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -31,7 +31,7 @@ + flex flex-col min-h-screen bg-canvas"> <%= yield :body_start %> <%= render "shared/svg_symbols" %>