From 323a61997f893ee4b08eb96442028b2a8002781f Mon Sep 17 00:00:00 2001 From: Fredrik Johansson Date: Mon, 13 Jul 2026 16:54:03 +0200 Subject: [PATCH] Lighten win/loss overlay scrim to match the intro screen's touch The overlay's radial gradient was much darker/broader than the intro scrim, crushing the win/loss artwork (the inverted Torso, the ritual circle) that the intro screen showed off fine. Dropped the opacity stops so the same restrained look applies everywhere. Co-Authored-By: Claude Sonnet 5 --- src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index 40934b3..1dbe30a 100644 --- a/src/style.css +++ b/src/style.css @@ -297,7 +297,7 @@ body { #overlay.visible { display: flex; } .overlay-scrim { - background: radial-gradient(ellipse 60% 55% at center, rgba(6,6,14,0.94) 0%, rgba(6,6,14,0.8) 55%, rgba(6,6,14,0.35) 80%, transparent 100%); + background: radial-gradient(ellipse 55% 42% at center, rgba(6,6,14,0.8) 0%, rgba(6,6,14,0.5) 55%, rgba(6,6,14,0.12) 80%, transparent 100%); width: 100%; height: 100%; display: flex;