From cc54e2152025c5763e9d072987d0f222f9408624 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 7 Apr 2026 17:33:27 +0000 Subject: [PATCH] Fix Decap CMS dark mode: ensure all text is light colored Added catch-all rules for p, span, label, div, li, etc. to prevent black text on dark background. Chronicler #66 --- admin/index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/admin/index.html b/admin/index.html index 6a40bd5..dfb2e1c 100644 --- a/admin/index.html +++ b/admin/index.html @@ -322,6 +322,16 @@ MISC ═══════════════════════════════════════════════════════════ */ + /* Catch-all text colors - ensure nothing stays black */ + p, span, label, div, li, td, th, dt, dd, figcaption, legend, summary { + color: var(--ff-text) !important; + } + + /* Dimmed/secondary text */ + small, .text-muted, [class*="subtle"], [class*="secondary"], [class*="hint"], [class*="description"] { + color: var(--ff-text-dim) !important; + } + /* Dividers and borders */ hr, [class*="Divider"] { border-color: var(--ff-dark-lighter) !important;