Skip to content

Commit

Permalink
Use different color for exit selection item
Browse files Browse the repository at this point in the history
  • Loading branch information
YuriyDurov committed Jan 12, 2024
1 parent fd6d89b commit ef713d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BitzArt.Console/Menus/ConsoleSelectionMenuItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public ConsoleSelectionMenuItem(string name, Action? action = null, bool pauseOn
public bool IsExit = false;
public bool PauseOnComplete = false;

public override string ToString() => IsExit ? $"[pink1]{Name}[/]" : $"[cyan]{Name}[/]";
public override string ToString() => IsExit ? $"[wheat1]{Name}[/]" : $"[cyan]{Name}[/]";

internal static ConsoleSelectionMenuItem ExitItem => new("Exit")
{
Expand Down

0 comments on commit ef713d0

Please sign in to comment.