From 3fcbc5d7b4845d1e0b4a203c7f63ee6671f876f9 Mon Sep 17 00:00:00 2001 From: Hikari Date: Tue, 3 Mar 2026 17:05:28 -0800 Subject: [PATCH] fix(style): fix illegible theme select dropdown in light mode Targets the select and option elements within starlight-theme-select to apply the primary colour and background, preventing white-on-white text in the dropdown. --- src/styles/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/styles/style.css b/src/styles/style.css index b0383aa..8bdc8b1 100644 --- a/src/styles/style.css +++ b/src/styles/style.css @@ -124,6 +124,16 @@ starlight-theme-select > label { color: var(--primary-color) !important; } +starlight-theme-select select { + color: var(--primary-color) !important; + background-color: var(--background-color) !important; +} + +starlight-theme-select select option { + color: var(--primary-color); + background-color: var(--background-color); +} + .social-icons::after { display: none; }