From e482072520aea1f3856d5fd5b817bc58c0a9e092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Den=20Delimarsky=20=F0=9F=8C=BA?= <53200638+localden@users.noreply.github.com> Date: Sat, 20 Sep 2025 00:17:10 -0700 Subject: [PATCH] Update __init__.py --- src/specify_cli/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index 7b08cbf..e796bce 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -235,14 +235,14 @@ def select_with_arrows(options: dict, prompt_text: str = "Select an option", def def create_selection_panel(): """Create the selection panel with current selection highlighted.""" table = Table.grid(padding=(0, 2)) - table.add_column(style="bright_blue", justify="left", width=3) + table.add_column(style="cyan", justify="left", width=3) table.add_column(style="white", justify="left") for i, key in enumerate(option_keys): if i == selected_index: - table.add_row("▶", f"[bright_blue]{key}[/bright_blue] [dim]({options[key]})[/dim]") + table.add_row("▶", f"[cyan]{key}[/cyan] [dim]({options[key]})[/dim]") else: - table.add_row(" ", f"[blue]{key}[/blue] [dim]({options[key]})[/dim]") + table.add_row(" ", f"[cyan]{key}[/cyan] [dim]({options[key]})[/dim]") table.add_row("", "") table.add_row("", "[dim]Use ↑/↓ to navigate, Enter to select, Esc to cancel[/dim]") @@ -250,7 +250,7 @@ def select_with_arrows(options: dict, prompt_text: str = "Select an option", def return Panel( table, title=f"[bold]{prompt_text}[/bold]", - border_style="blue", + border_style="cyan", padding=(1, 2) )