From 74f321099fc3723068e1b6199fdc11856b3ea502 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Fri, 14 Aug 2026 05:02:52 +0530 Subject: [PATCH] fix(coming-soon): bump near-invisible text opacity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .cs-form-note ('No spam...') and .cs-footer-copy ('© 2026...') were at 20-22% white opacity against the navy background - reported as not visible. Bumped to 50-55%, still visually secondary/muted but actually legible now. Co-Authored-By: Claude Sonnet 5 --- src/routes/coming-soon.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/routes/coming-soon.tsx b/src/routes/coming-soon.tsx index f6f4cb9..a5107d8 100644 --- a/src/routes/coming-soon.tsx +++ b/src/routes/coming-soon.tsx @@ -194,7 +194,9 @@ export default function ComingSoonPage() { .cs-form-note { font-size: 11px; - color: rgba(255,255,255,0.22); + /* Was 0.22 - close to invisible against the navy background. + 0.55 keeps it visually secondary but actually legible. */ + color: rgba(255,255,255,0.55); margin-bottom: 0; } .cs-form-success { @@ -215,7 +217,8 @@ export default function ComingSoonPage() { background: linear-gradient(to top, rgba(5,0,38,0.9) 0%, transparent 100%); } .cs-footer-copy { - font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; + /* Was 0.2 - same near-invisible issue as .cs-form-note. */ + font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; } .cs-footer-powered { display: flex; align-items: center; gap: 10px;