diff --git a/LeoCorpLibrary/Env.cs b/LeoCorpLibrary/Env.cs
index c18c4c7..b35bf99 100644
--- a/LeoCorpLibrary/Env.cs
+++ b/LeoCorpLibrary/Env.cs
@@ -539,6 +539,12 @@ public static void LaunchUWPApp(string packageFamilyName, string applicationID)
Process.Start("explorer.exe", $@"shell:appsFolder\{packageFamilyName}!{applicationID}"); // Synthax to launch UWP apps
}
+ ///
+ /// Gets the current of the operating system (Windows only).
+ ///
+ ///
+ /// Returns by default.
+ ///
public static SystemThemes SystemTheme
{
get
@@ -554,10 +560,24 @@ public static SystemThemes SystemTheme
}
}
+ ///
+ /// Available themes on Windows.
+ ///
public enum SystemThemes
{
+ ///
+ /// Dark theme.
+ ///
Dark,
+
+ ///
+ /// Light theme.
+ ///
Light,
+
+ ///
+ /// Unknown theme/OS not supported.
+ ///
Unknown
}