Skip to content

Commit

Permalink
Change progress fg & bg colors to provide better contrast (PowerShell…
Browse files Browse the repository at this point in the history
  • Loading branch information
rkeithhill committed Apr 3, 2020
1 parent 6b5d6a0 commit 8d71154
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1376,8 +1376,8 @@ public override void WriteErrorLine(string value)
public ConsoleColor VerboseBackgroundColor { get; set; } = Console.BackgroundColor;

// Progress colors
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Yellow;
public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.DarkCyan;
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Black;
public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.Yellow;

#endregion Line-oriented interaction

Expand Down

0 comments on commit 8d71154

Please sign in to comment.