From 9545f2c407ca8eebaf36e3049dea6b5b98b8d674 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 20:19:08 -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 c8440d3..3b63e96 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -17,6 +17,9 @@ const geistMono = localFont({ export const metadata: Metadata = { title: 'rTube - Community Video Hosting, Storage & Streaming', description: 'Who needs YouTube, when you have (ou)rTube! Self-hosted video recording, live streaming, and storage for rSpace communities.', + icons: { + icon: "data:image/svg+xml,🎬", + }, openGraph: { title: 'rTube - Community Video Hosting, Storage & Streaming', description: 'Who needs YouTube, when you have (ou)rTube! Self-hosted video recording, live streaming, and storage for rSpace communities.',