mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:09:07 +00:00
12 lines
315 B
C#
12 lines
315 B
C#
using AIStudio.Settings;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public static class MudThemeExtensions
|
|
{
|
|
public static Palette GetCurrentPalette(this MudTheme theme, SettingsManager settingsManager) => settingsManager.IsDarkMode switch
|
|
{
|
|
true => theme.PaletteDark,
|
|
false => theme.PaletteLight,
|
|
};
|
|
} |