fix(design-system): unblock body hearth gradient + boost intensity #101
No reviewers
Labels
No labels
agent-context-drift
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: rstillwell/deckhearth#101
Loading…
Reference in a new issue
No description provided.
Delete branch "layout-transparent-and-bolder-hearth"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Why this exists
You reported after PR #100 that the design still looks unchanged. CDP diagnostic on the live page found the smoking gun: the Layout's root
<div>was painted withstyle={{ backgroundColor: 'var(--bg-primary)' }}— a 1118×984 opaque warm-white rectangle directly on top of the body. The body gradient was painting (computed style confirmed) but no pixel of it reached the screen.This means every PR in this chain was correct CSS but invisible: #97 (panels), #98 (backdrop-filter), #99 (box-shadow composition), #100 (gradient) all landed and were defeated by the same opaque parent.
Fix part 1 — remove the opaque parent
Layout.js:610drops thestyle={{ backgroundColor: 'var(--bg-primary)' }}. The desktop sidebar (738–744) and mobile drawer (630–640) already paint their own translucent glass backgrounds; the main content area was already transparent. So removing the opaque parent only affects the previously-covered body gradient, which now shows through.Fix part 2 — boost gradient intensity
PR #100's 8% / 6% radials were imperceptible even when visible. Boosted to:
Dark theme gets proportional bumps (32% / 18% / 14% ember+purple mix).
Tests
npm run buildgreennpm run lintcleannpm run test:run104/104 pass — no Layout test asserts the root bg, so the regression-lock holds (Sign-in CTA, no maintainer email leak, etc.)Test plan
deckhearth.com/dashboard— should now show a clearly visible warm ember glow at the bottom-left, secondary embers at bottom-right, gold accent at top-right, and visibly translucent glass surfaces showing the gradient distortion through their blurMade with Cursor
The latest updates on your projects. Learn more about Vercel for GitHub.
Pipeline Health
Build + CI gates
Build runs on Vercel; this CI runs lint and schema-map drift only (no duplicate build).
Role reports
See individual comments above for details. This rollup updates automatically.
Visual Diff
Screenshots and diffs uploaded as artifacts: view run
If intentional changes: update snapshots locally with
npx playwright test --project=visual --update-snapshotsand commit.