From 71994bbaf9f9247c08d46a919b6a979336039d43 Mon Sep 17 00:00:00 2001 From: Paul Payne Date: Mon, 15 Jun 2026 09:12:22 -0700 Subject: [PATCH] ui: fix unreadable select dropdowns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Native popups otherwise fall back to the OS default (light) + background while inheriting the light theme text — unreadable. Pin both. */ +select { + color: var(--foreground); +} +select option { + background-color: var(--card); + color: var(--foreground); +}