Skip to content

Commit 8d71154

Browse files
authored
Change progress fg & bg colors to provide better contrast (PowerShell#11455)
1 parent 6b5d6a0 commit 8d71154

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Microsoft.PowerShell.ConsoleHost/host/msh/ConsoleHostUserInterface.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,8 +1376,8 @@ public override void WriteErrorLine(string value)
13761376
public ConsoleColor VerboseBackgroundColor { get; set; } = Console.BackgroundColor;
13771377

13781378
// Progress colors
1379-
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Yellow;
1380-
public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.DarkCyan;
1379+
public ConsoleColor ProgressForegroundColor { get; set; } = ConsoleColor.Black;
1380+
public ConsoleColor ProgressBackgroundColor { get; set; } = ConsoleColor.Yellow;
13811381

13821382
#endregion Line-oriented interaction
13831383

0 commit comments

Comments
 (0)