From d8b8e4f5c2d539d318fdd0ed5f12fd7e9955232d Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Sun, 4 Jan 2026 16:43:20 -0500 Subject: [PATCH] Add bold text for selected buttons 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rpi/first-boot-wizard.sh b/rpi/first-boot-wizard.sh index cbe5524..f4da2cf 100755 --- a/rpi/first-boot-wizard.sh +++ b/rpi/first-boot-wizard.sh @@ -26,9 +26,10 @@ if ! command -v gum &>/dev/null; then exit 1 fi -# Gum styling - lime green buttons with white text +# Gum styling - lime green buttons with bold dark text export GUM_CONFIRM_SELECTED_BACKGROUND="82" export GUM_CONFIRM_SELECTED_FOREGROUND="232" +export GUM_CONFIRM_SELECTED_BOLD="true" export GUM_CONFIRM_UNSELECTED_BACKGROUND="238" export GUM_CONFIRM_UNSELECTED_FOREGROUND="255"