From 3e35978b731be9fa3b0d636c49d191bc7a55ed2f Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 8 Mar 2026 17:15:07 -0500 Subject: [PATCH] Fix preset button text color for proper theme contrast Added explicit color property to .preset-name CSS class to ensure text is always visible in both light and dark themes. --- frontend/src/App.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index b3b072f..e289727 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -598,6 +598,7 @@ font-size: 0.7rem; text-align: center; line-height: 1.2; + color: var(--color-text-primary); } /* Modal styles */ -- 2.49.1