From f4a08ea3a07edbb1641f54f74b0913368deaf5fd Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Tue, 26 May 2026 18:54:30 +0200 Subject: [PATCH] =?UTF-8?q?styles:=20fix=20--main=20oklch=20value=20(100?= =?UTF-8?q?=20=E2=86=92=201)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tailwind/CSS parser was normalizing the bare `100` lightness to `10000%`, which is out of range — browsers fell back to the SVG default (black), making the white logo invisible on the dark hero. --- src/styles/globals.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/globals.css b/src/styles/globals.css index d6c3775..51ab609 100644 --- a/src/styles/globals.css +++ b/src/styles/globals.css @@ -2,7 +2,7 @@ @import "tailwindcss"; :root { - --main: oklch(100 0 0); + --main: oklch(1 0 0); --secondary: oklch(0.85 0 0); --brand: oklch(0.5609 0.2483 280.67); --neutral: oklch(0.155 0.0395 285.68);