From a048e84f269b058a21ee14cc8e2d3a9b751dba2e Mon Sep 17 00:00:00 2001 From: treamz Date: Sun, 22 Mar 2026 00:11:33 +0300 Subject: [PATCH] Fix: landing nav uses CSS variables instead of hardcoded dark rgba --- public/landing.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/landing.html b/public/landing.html index 6cbdc67..465df50 100644 --- a/public/landing.html +++ b/public/landing.html @@ -490,12 +490,12 @@ align-items: center; justify-content: space-between; padding: 16px 32px; - background: rgba(6, 12, 24, 0.7); backdrop-filter: blur(12px); + background: var(--surface-800); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s; } .landing-nav.scrolled { - background: rgba(6, 12, 24, 0.85); + background: var(--surface-800); border-color: var(--surface-600); backdrop-filter: blur(12px); }