Skip to content

Commit d8bf98a

Browse files
committed
Consistent step coloring
1 parent e482072 commit d8bf98a

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def _maybe_refresh(self):
142142
pass
143143

144144
def render(self):
145-
tree = Tree(f"[bold cyan]{self.title}[/bold cyan]", guide_style="grey50")
145+
tree = Tree(f"[cyan]{self.title}[/cyan]", guide_style="grey50")
146146
for step in self.steps:
147147
label = step["label"]
148148
detail_text = step["detail"].strip() if step["detail"] else ""
@@ -819,7 +819,7 @@ def init(
819819
raise typer.Exit(1)
820820

821821
console.print(Panel.fit(
822-
"[bold cyan]Specify Project Setup[/bold cyan]\n"
822+
"[cyan]Specify Project Setup[/cyan]\n"
823823
f"{'Initializing in current directory:' if here else 'Creating new project:'} [green]{project_path.name}[/green]"
824824
+ (f"\n[dim]Path: {project_path}[/dim]" if here else ""),
825825
border_style="cyan"
@@ -979,11 +979,11 @@ def init(
979979
step_num = 2
980980

981981
steps_lines.append(f"{step_num}. Start using slash commands with your AI agent:")
982-
steps_lines.append(" 2.1 [bold cyan]/constitution[/] - Establish project principles")
983-
steps_lines.append(" 2.2 [bold cyan]/specify[/] - Create specifications")
984-
steps_lines.append(" 2.3 [bold cyan]/plan[/] - Create implementation plans")
985-
steps_lines.append(" 2.4 [bold cyan]/tasks[/] - Generate actionable tasks")
986-
steps_lines.append(" 2.5 [bold cyan]/implement[/] - Execute implementation")
982+
steps_lines.append(" 2.1 [cyan]/constitution[/] - Establish project principles")
983+
steps_lines.append(" 2.2 [cyan]/specify[/] - Create specifications")
984+
steps_lines.append(" 2.3 [cyan]/plan[/] - Create implementation plans")
985+
steps_lines.append(" 2.4 [cyan]/tasks[/] - Generate actionable tasks")
986+
steps_lines.append(" 2.5 [cyan]/implement[/] - Execute implementation")
987987

988988
steps_panel = Panel("\n".join(steps_lines), title="Next steps", border_style="cyan", padding=(1,2))
989989
console.print()

0 commit comments

Comments
 (0)