From 709cd1f528d7fd905ccbbcde412b2484cda1d84f Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 17:43:03 -0800 Subject: [PATCH] fix(style): fix illegible theme dropdown options in dark mode --- src/styles/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index ea84f85..2626f76 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -150,6 +150,11 @@ starlight-theme-select select option { background-color: var(--background-color); } +html[data-theme="dark"] starlight-theme-select select option { + color: var(--witch-purple) !important; + background-color: var(--witch-lavender) !important; +} + .social-icons::after { display: none; }