From ac0136927791d60e573a532de689716d45d6c6cf Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Sat, 18 Apr 2026 15:45:00 -0500 Subject: [PATCH] Theme switcher: primary on light, accent-primary on dark for visibility Dark theme uses --accent-color-primary (#3f8ff0) instead of muted gray. Light theme uses --color-primary (#112855) for brand consistency. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/media/css/template.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/media/css/template.css b/src/media/css/template.css index 1c1d64c..8d2b19b 100644 --- a/src/media/css/template.css +++ b/src/media/css/template.css @@ -17095,13 +17095,17 @@ form .form-select { padding: .4rem .6rem; border-radius: 999px; border: none; - background: var(--muted-color, #6d757e); + background: var(--color-primary, #112855); box-shadow: var(--box-shadow, 0 .5rem 1rem #00000066); font: inherit; color: #fff; font-weight: 600; } +:root[data-bs-theme="dark"] #mokoThemeFab { + background: var(--accent-color-primary, #3f8ff0); +} + #mokoThemeFab.pos-br { right: 2.5rem; bottom: 1rem;