using System; using static System.Console; namespace ProtosXdigitalDemo { internal static class ConsoleSetup { public static void ApplyDefaultAppearance() { WindowUtility.SetAppearanceOptions(); WindowUtility.MoveWindowToCenter(); BackgroundColor = ConsoleColor.DarkBlue; ForegroundColor = ConsoleColor.White; Clear(); } } }