@solikaldorei
I don't believe you can change the color of the title but you can change what the title says like this:
Console.Title = "your title here";
As for changing the font color inside the console window, that is possible. You basically change the entire console's font color for the line or lines you want to be a different color then change it back to default.
I personally use a helper method to do it:
static void ColoredConsoleWriteLine(ConsoleColor color, string text)
{
ConsoleColor originalColor = Console.ForegroundColor;
Console.ForegroundColor = color;
Console.WriteLine(text);
Console.ForegroundColor = originalColor;
}
To use it you simply call it like this whenever you want to write a colored line:
ColoredConsoleWriteLine(ConsoleColor.Red, "my message");
Here's a list of console colors in c#:
Black
DarkBlue
DarkGreen
DarkCyan
DarkRed
DarkMagenta
DarkYellow
Gray
DarkGray
Blue
Green
Cyan
Red
Magenta
Yellow
White
Black
DarkBlue
DarkGreen
DarkCyan
DarkRed
DarkMagenta
DarkYellow
Gray
DarkGray
Blue
Green
Cyan
Red
Magenta
Yellow
White