From 48f3153bd2e46971d8a4b33df54ac982059a9996 Mon Sep 17 00:00:00 2001 From: Frank Stellmacher <171614930+Psychotoxical@users.noreply.github.com> Date: Sun, 17 May 2026 20:44:30 +0200 Subject: [PATCH] fix(now-playing): empty state uses theme-aware text color (#759) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `.np-empty-state` hardcoded `rgba(255, 255, 255, 0.5)` so the "Nothing playing yet…" message and its music-note icon were invisible against light themes (white text on white background). Switch to `var(--text-muted)`, matching the mobile `.mp-empty` rule and the shared `.empty-state` utility. --- src/styles/components/now-playing-page-2.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/components/now-playing-page-2.css b/src/styles/components/now-playing-page-2.css index 61db7c89..550afd0d 100644 --- a/src/styles/components/now-playing-page-2.css +++ b/src/styles/components/now-playing-page-2.css @@ -630,7 +630,7 @@ flex-direction: column; align-items: center; gap: 12px; - color: rgba(255, 255, 255, 0.5); + color: var(--text-muted); padding: 40px 0; }