Skip to content

Commit 0407d0f

Browse files
committed
Change text color
1 parent d526d17 commit 0407d0f

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

SaveWin10Pictures/Program.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal class Program
99
private static void Main()
1010
{
1111
Action<string> display = Console.WriteLine;
12-
Console.ForegroundColor = ConsoleColor.Magenta;
12+
Console.ForegroundColor = ConsoleColor.White;
1313
display("Checking if there are new images to be copied...");
1414
List<string> files = new List<string>();
1515
int counter = 0;
@@ -44,9 +44,11 @@ private static void Main()
4444
{
4545
Console.ForegroundColor = ConsoleColor.Green;
4646
}
47-
47+
48+
display(string.Empty);
4849
display($"{counter} image{Plural(counter)} {Plural(counter, "have")} been copied to the picture folder.");
49-
Console.ForegroundColor = ConsoleColor.Blue;
50+
display(string.Empty);
51+
Console.ForegroundColor = ConsoleColor.Yellow;
5052
display("Press any key to exit:");
5153
Console.ReadKey(); // comment for batch to production
5254
}

0 commit comments

Comments
 (0)