Skip to content

Commit e482072

Browse files
committed
Update __init__.py
1 parent aaa6df9 commit e482072

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,22 +235,22 @@ def select_with_arrows(options: dict, prompt_text: str = "Select an option", def
235235
def create_selection_panel():
236236
"""Create the selection panel with current selection highlighted."""
237237
table = Table.grid(padding=(0, 2))
238-
table.add_column(style="bright_blue", justify="left", width=3)
238+
table.add_column(style="cyan", justify="left", width=3)
239239
table.add_column(style="white", justify="left")
240240

241241
for i, key in enumerate(option_keys):
242242
if i == selected_index:
243-
table.add_row("▶", f"[bright_blue]{key}[/bright_blue] [dim]({options[key]})[/dim]")
243+
table.add_row("▶", f"[cyan]{key}[/cyan] [dim]({options[key]})[/dim]")
244244
else:
245-
table.add_row(" ", f"[blue]{key}[/blue] [dim]({options[key]})[/dim]")
245+
table.add_row(" ", f"[cyan]{key}[/cyan] [dim]({options[key]})[/dim]")
246246

247247
table.add_row("", "")
248248
table.add_row("", "[dim]Use ↑/↓ to navigate, Enter to select, Esc to cancel[/dim]")
249249

250250
return Panel(
251251
table,
252252
title=f"[bold]{prompt_text}[/bold]",
253-
border_style="blue",
253+
border_style="cyan",
254254
padding=(1, 2)
255255
)
256256

0 commit comments

Comments
 (0)