mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
19 lines
493 B
C#
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;
|
|
}
|
|
} |