Use brand cream (#FCFAEB) as the site background instead of white - #2287
Draft
maebeale wants to merge 1 commit into
Draft
Use brand cream (#FCFAEB) as the site background instead of white#2287maebeale wants to merge 1 commit into
maebeale wants to merge 1 commit into
Conversation
The brand guide names #FCFAEB as the page background, but the site rendered on plain white — the layout <body> hard-coded bg-white. Add a single --color-canvas theme token (the one place to change it) and point the <body> 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) <noreply@anthropic.com>
maebeale
force-pushed
the
maebeale/site-background-brand-cream
branch
from
August 21, 2026 12:18
8b25706 to
fe30a95
Compare
maebeale
force-pushed
the
maebeale/site-background-brand-cream
branch
from
August 21, 2026 12:21
fe30a95 to
6ee3592
Compare
This was referenced Aug 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 suggested review level: 1 Skim 👀 two-line theming change (one canvas token + class); no logic, but it recolors every page's canvas
What is the goal of this PR and why is this important?
How did you approach the change?
--color-canvas: #fcfaebtoken to the@themeblock inapplication.tailwind.css(same mechanism--color-primaryuses for the navbar) — Tailwind generatesbg-canvasfrom it.<body>atbg-canvasinstead ofbg-white. Change the hex once and the whole site updates.DomainTheme— that's for per-domain identity colors, not global site chrome..bg-canvas{background-color:var(--color-canvas)}with--color-canvas:#fcfaeb.Scope
bg-whiteusages are intentional surfaces — they stay white and now pop against the cream.bg-blue-100admin tint).UI Testing Checklist
Anything else to add?