From fcc253e7ca34bb08a0eb742b1e5247f74abc8759 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 20:19:07 -0800 Subject: [PATCH] fix: dark background + emoji favicon for rStack design consistency Standardize to dark background (#0f172a / slate-900) and add emoji data URI favicon matching the rStack ecosystem. Co-Authored-By: Claude Opus 4.6 --- app/globals.css | 11 ++--------- app/layout.tsx | 3 +++ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/app/globals.css b/app/globals.css index 13d40b8..66a5bdc 100644 --- a/app/globals.css +++ b/app/globals.css @@ -3,15 +3,8 @@ @tailwind utilities; :root { - --background: #ffffff; - --foreground: #171717; -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } + --background: #0f172a; + --foreground: #e2e8f0; } body { diff --git a/app/layout.tsx b/app/layout.tsx index 04bcb72..66d3420 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -16,6 +16,9 @@ const geistMono = localFont({ export const metadata: Metadata = { title: 'rFunds - Threshold-Based Flow Funding', description: 'Design, simulate, and share continuous funding flows with threshold-based mechanisms. Create interconnected funding funnels with overflow routing and outcome tracking.', + icons: { + icon: "data:image/svg+xml,📊", + }, openGraph: { title: 'rFunds - Threshold-Based Flow Funding', description: 'Design, simulate, and share continuous funding flows with threshold-based mechanisms.',