Hi there,
Firstly thanks for creating this project. I was testing out the project with the following code:
private static int Example1a()
{
// Console color defaults
VTConsole.SetColorBackground(Color.MidnightBlue);
VTConsole.SetColorForeground(Color.White);
Console.Clear();
Console.WriteLine("This is a test");
}
In windows terminal, powershell:
But I noticed that the background color of the window and background color of the text aren't the same? Am I doing something wrong?

