mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
@@ -62,6 +62,18 @@ namespace GHelper.UI
|
||||
|
||||
private static bool IsDarkTheme()
|
||||
{
|
||||
string? uiMode = AppConfig.GetString("ui_mode");
|
||||
|
||||
if (uiMode is not null && uiMode.ToLower() == "dark")
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
if (uiMode is not null && uiMode.ToLower() == "light")
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
using var key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Themes\Personalize");
|
||||
var registryValueObject = key?.GetValue("AppsUseLightTheme");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user