Colorful.Console icon indicating copy to clipboard operation
Colorful.Console copied to clipboard

Overload for ReadLine and ReadKey that takes a colour

Open jamesfoster opened this issue 2 years ago • 0 comments

Would it be possible to add an overload for the Console.Read methods to allow specifying a colour?

var input = Console.ReadLine(UserInputColour);

instead of

Console.ForegroundColor = UserInputColour;
var input = Console.ReadLine();
Console.ForegroundColor = DefaultColour;

jamesfoster avatar Jun 01 '22 10:06 jamesfoster