Files
downkyicore/DownKyi/Utils/ThemeHelper.cs
2024-04-06 23:16:14 +08:00

19 lines
493 B
C#

using Avalonia.Styling;
using DownKyi.Core.Settings;
namespace DownKyi.Utils;
public static class ThemeHelper
{
public static void SetTheme(ThemeMode themeMode)
{
var themeVariant = themeMode switch
{
ThemeMode.Default => ThemeVariant.Default,
ThemeMode.Dark => ThemeVariant.Dark,
ThemeMode.Light => ThemeVariant.Light,
_ => ThemeVariant.Dark
};
App.Current.RequestedThemeVariant = themeVariant;
}
}