From ae08e990cc4a00c71fb36fcd6e9217fec3aabc83 Mon Sep 17 00:00:00 2001 From: Frog Date: Fri, 21 Nov 2025 02:52:01 -0800 Subject: [PATCH] Enable Dark Mode by Default - Enabled dark mode by default (Looks decent enough) --- CreamInstaller/Program.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CreamInstaller/Program.cs b/CreamInstaller/Program.cs index 8fb6235..ef3f924 100644 --- a/CreamInstaller/Program.cs +++ b/CreamInstaller/Program.cs @@ -43,8 +43,8 @@ internal static class Program internal static readonly string[] ProtectedGameDirectories = [@"\EasyAntiCheat", @"\BattlEye"]; internal static readonly string[] ProtectedGameDirectoryExceptions = []; - // Dark mode toggle (default false). Can be toggled via UI button. - internal static bool DarkModeEnabled; + // Dark mode enabled by default + internal static bool DarkModeEnabled = true; internal static bool IsGameBlocked(string name, string directory = null) => BlockProtectedGames && (ProtectedGames.Contains(name) || directory is not null && @@ -73,7 +73,7 @@ internal static class Program #if DEBUG DebugForm.Current.Attach(form); #endif - // Apply initial theme + // Apply initial theme (dark by default) Utility.ThemeManager.Apply(form); Application.Run(form); }