From 143a8bdc65a79c51b0020af392bcc9b2456db61d Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Sun, 4 Jan 2026 16:42:39 -0500 Subject: [PATCH] Fix button text contrast - dark text on lime, white on gray MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- rpi/first-boot-wizard.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpi/first-boot-wizard.sh b/rpi/first-boot-wizard.sh index 12b428a..cbe5524 100755 --- a/rpi/first-boot-wizard.sh +++ b/rpi/first-boot-wizard.sh @@ -26,11 +26,11 @@ if ! command -v gum &>/dev/null; then exit 1 fi -# Gum styling - lime green buttons +# Gum styling - lime green buttons with white text export GUM_CONFIRM_SELECTED_BACKGROUND="82" -export GUM_CONFIRM_SELECTED_FOREGROUND="0" -export GUM_CONFIRM_UNSELECTED_BACKGROUND="" -export GUM_CONFIRM_UNSELECTED_FOREGROUND="245" +export GUM_CONFIRM_SELECTED_FOREGROUND="232" +export GUM_CONFIRM_UNSELECTED_BACKGROUND="238" +export GUM_CONFIRM_UNSELECTED_FOREGROUND="255" clear