fix: match docs content column background to page background - #67
Merged
Conversation
The willow theme paints the main content column (#content-area's direct child) with its own neutral gray `dark:bg-gray-900` (#161616). Framed by the warm page background configured in docs.json (`background.color.dark` → #181611), that neutral surface reads cool/blue-ish. Pin the content column to `--background-dark` so the content area and frame share one continuous warm tone. Scoped to the direct child so other `bg-gray-900` surfaces (cards, etc.) are untouched. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Contributor
Author
|
Thanks for catching this! I had Claude dig into it:
|
TheMythologist
approved these changes
Sep 8, 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.


What
The docs content column had an unexpected blue-ish cast compared to the rest of the page (most visible on the Repository configuration page, but it affects every page).
Root cause
The
willowtheme paints the main content column (the direct child of#content-area) with its own neutral graydark:bg-gray-900(#161616). That neutral surface sits inside the warm page background configured indocs.json—background.color.dark→ #181611 (--background-dark = 24 22 17). A neutral-gray surface framed by a warm one reads cool/blue-ish (and its blue channel, 22, is literally higher than the frame's, 17).This is not page-specific — the content column and frame colors are identical on every page; the config page just made the contrast easy to notice.
Fix
Pin the content column to the configured page background so the content area and the frame are one continuous warm tone:
#content-area's direct child so otherbg-gray-900surfaces (cards, etc.) are untouched.--background-darkvariable rather than a hardcoded hex, so it tracks any future change tobackground.color.darkindocs.json.Verification (computed colors via browser)
rgb(24,22,17)== framergb(24,22,17)✅rgb(11,12,14)unchanged ✅bg-gray-900elements: unchanged ✅🤖 Generated with Claude Code