From dfef2194a52c7a6c3854f7720f9523b84fc06cd7 Mon Sep 17 00:00:00 2001 From: Lukas Date: Mon, 16 Mar 2026 14:27:38 +0100 Subject: [PATCH] Add subtle radial gradient to app background Apply a soft blue radial glow centered on the viewport to add depth to the dark background, replacing the flat solid color. Co-Authored-By: Claude Opus 4.6 --- apps/web/src/index.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/web/src/index.css b/apps/web/src/index.css index 89d5921..c2df818 100644 --- a/apps/web/src/index.css +++ b/apps/web/src/index.css @@ -198,6 +198,12 @@ body { background-color: var(--color-background); + background-image: radial-gradient( + ellipse at 50% 40%, + oklch(0.26 0.055 250) 0%, + var(--color-background) 70% + ); + background-attachment: fixed; color: var(--color-foreground); font-family: var(--font-sans); }