Skip to content

Commit 61fea27

Browse files
authored
Fix: documentation page background color mismatch (JhaSourav07#113)
## Description Fixes JhaSourav07#59 This PR resolves a background color mismatch on the documentation page. The documentation page now uses a transparent background and white ambient glows, allowing the global dark theme and background animation to show through, matching the homepage and dashboard aesthetic. ## Pillar - [ ] 🎨 Pillar 1 — New Theme Design - [ ] 📐 Pillar 2 — Geometric SVG Improvement - [ ] 🕐 Pillar 3 — Timezone Logic Optimization - [x] 🛠️ Other (Bug fix, refactoring, docs) ## Visual Preview *(The documentation page background now seamlessly matches the landing page, featuring the signature animated "Cherry Blossom" petals and subtle white ambient glows.)* ## Checklist before requesting a review: - [x] I have read the `CONTRIBUTING.md` file. - [x] I have tested these changes locally. - [x] I have run `npm run format` and `npm run lint` locally and resolved all errors. - [x] My commits follow the Conventional Commits format (e.g., `fix(ui): unify documentation background`). - [x] I have updated `README.md` if I added a new theme or URL parameter. - [x] I have started the repo. - [x] I have made sure that i have only one commit to merge in this PR. - [x] The SVG output matches the CommitPulse "premium quality" aesthetic standard.
2 parents 3d5001b + c43a61f commit 61fea27

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

app/documentation/page.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,11 +133,14 @@ const contributorNotes = [
133133

134134
export default function DocumentationPage() {
135135
return (
136-
<main className="min-h-screen overflow-x-hidden bg-[#050505] text-white">
136+
<main className="min-h-screen overflow-x-hidden bg-transparent text-white">
137137
<div className="fixed inset-0 pointer-events-none overflow-hidden">
138-
<div className="absolute left-[-10%] top-[-8%] h-[28rem] w-[28rem] rounded-full bg-emerald-500/10 blur-[130px]" />
139-
<div className="absolute right-[-8%] top-[20%] h-[24rem] w-[24rem] rounded-full bg-cyan-400/10 blur-[120px]" />
140-
<div className="absolute bottom-[-10%] left-[20%] h-[24rem] w-[24rem] rounded-full bg-orange-400/10 blur-[140px]" />
138+
{/* Layered brand glows for depth */}
139+
<div className="absolute left-[-10%] top-[-8%] h-[40rem] w-[40rem] rounded-full bg-emerald-500/15 blur-[120px]" />
140+
<div className="absolute right-[-5%] top-[10%] h-[35rem] w-[35rem] rounded-full bg-cyan-400/10 blur-[100px]" />
141+
<div className="absolute bottom-[-15%] left-[15%] h-[45rem] w-[45rem] rounded-full bg-indigo-500/10 blur-[140px]" />
142+
{/* Noise texture overlay for a premium surface feel */}
143+
<div className="absolute inset-0 bg-[url('https://grainy-gradients.vercel.app/noise.svg')] opacity-[0.03] mix-blend-overlay" />
141144
</div>
142145

143146
<div className="relative mx-auto flex min-h-screen max-w-6xl flex-col px-6 pb-10 pt-6 md:px-8">

0 commit comments

Comments
 (0)