From a3c8f48d55b30bfdd8db5447e17f81930486724d Mon Sep 17 00:00:00 2001 From: rafa Date: Fri, 14 Aug 2026 08:31:11 -0400 Subject: [PATCH] fix: emphasize dark-mode toggle moon Co-authored-by: rafa Signed-off-by: rafa --- mu-plugins/fea-accesibilidad.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mu-plugins/fea-accesibilidad.php b/mu-plugins/fea-accesibilidad.php index e576a0a..bcdb1a3 100644 --- a/mu-plugins/fea-accesibilidad.php +++ b/mu-plugins/fea-accesibilidad.php @@ -84,6 +84,14 @@ add_action('wp_head', function () { } #fea-theme-btn:hover { background: rgba(0,0,0,0.06); } + /* La luna debe destacar también sobre cabeceras claras. */ + html:not([data-fea-theme="dark"]) #fea-theme-btn { + background: #000; + border-color: #000; + color: #f6c744; + } + html:not([data-fea-theme="dark"]) #fea-theme-btn:hover { background: #242424; } + /* ══════════════════════════════════════════════════════════════════ MODO OSCURO — activado por [data-fea-theme="dark"] en ══════════════════════════════════════════════════════════════════ */