diff --git a/URLNotesGrabberCORE/Program.cs b/URLNotesGrabberCORE/Program.cs index a4f673c..27ca8c9 100644 --- a/URLNotesGrabberCORE/Program.cs +++ b/URLNotesGrabberCORE/Program.cs @@ -497,7 +497,10 @@ namespace URLNotesGrabberCORE string displayText = note.reply_text.Length > 100 ? note.reply_text.Substring(0, 100) + "..." : note.reply_text; + var previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine($" [{note.blog_name}] {displayText}"); + Console.ForegroundColor = previousColor; } else { @@ -515,7 +518,10 @@ namespace URLNotesGrabberCORE string displayText = note.reply_text.Length > 100 ? note.reply_text.Substring(0, 100) + "..." : note.reply_text; + var previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Cyan; Console.WriteLine($" [{note.blog_name}] {displayText} (reblog comment)"); + Console.ForegroundColor = previousColor; } }