Skip to content

Commit 6b74eb2

Browse files
fix(idea): use deep ash page background on public note view
Swap pitch black shells for #161412 so the note surface reads as the primary plane against OpenBricks ash chrome. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 8ec43bf commit 6b74eb2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/(app)/idea/[id]/IdeaPageClient.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ export default function IdeaPageClient({ noteId, decryptionKey }: IdeaPageClient
292292
// Loading
293293
if (access.role === 'loading' || authLoading) {
294294
return (
295-
<div className="min-h-screen bg-[#000000] flex items-center justify-center">
295+
<div className="min-h-screen bg-[#161412] flex items-center justify-center">
296296
<div className="flex flex-col items-center gap-4">
297297
<div className="w-10 h-10 rounded-full border-2 border-[#6366F1]/30 border-t-[#6366F1] animate-spin" />
298298
<p className="text-white/40 text-sm font-semibold">Loading note…</p>
@@ -308,7 +308,7 @@ export default function IdeaPageClient({ noteId, decryptionKey }: IdeaPageClient
308308
const needsLogin = !isAuthenticated && !isExpired && !isNotFound;
309309

310310
return (
311-
<div className="min-h-screen bg-[#000000] flex items-center justify-center px-6">
311+
<div className="min-h-screen bg-[#161412] flex items-center justify-center px-6">
312312
<div className="max-w-md w-full text-center space-y-8">
313313
{/* Icon */}
314314
<div className="relative mx-auto w-20 h-20">
@@ -381,7 +381,7 @@ export default function IdeaPageClient({ noteId, decryptionKey }: IdeaPageClient
381381
const showExpand = false; // page layout — no expand button needed
382382

383383
return (
384-
<div className="min-h-screen bg-[#000000] flex flex-col">
384+
<div className="min-h-screen bg-[#161412] flex flex-col">
385385
<NoteDetailSidebar
386386
note={note}
387387
onUpdate={handleNoteUpdate}

0 commit comments

Comments
 (0)