mharb 53e8ee1d7a Check-in Source P.3
Signed-off-by: mharb <mharb@noreply.localhost>
2025-08-02 19:41:42 -04:00

17 lines
421 B
C#

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();
}
}
}