private ConsoleColorWorker(ConsoleColorSuit options)
        {
            BackgroundColor = Console.BackgroundColor;
            ForegroundColor = Console.ForegroundColor;

            Console.BackgroundColor = options.BackgroundColor;
            Console.ForegroundColor = options.ForegroundColor;
        }
 public static ConsoleColorWorker Start(ConsoleColorSuit options) => new(options);