public ConsoleColorContext(
            IConsole console,
            ConsoleColors.Profile colorProfile)
        {
            _console = console;

            _console.SetColors(
                colorProfile.Foreground,
                colorProfile.Background);
        }
 public static IDisposable ColorContext(
     this IConsole console,
     ConsoleColors.Profile colorProfile)
 {
     return(new ConsoleColorContext(console, colorProfile));
 }