AdminPanel/Netina.AdminPanel.PWA/Models/MainTheme.cs

27 lines
633 B
C#

namespace Netina.AdminPanel.PWA.Models;
public static class MainTheme
{
public static MudTheme MyCustomTheme = new MudTheme()
{
Typography = new Typography()
{
Default = new Default()
{
FontFamily = new[] { "iranyekan" }
}
},
Palette = new PaletteLight()
{
Primary = "#001A46",
Secondary = "#E59F2E",
},
PaletteDark = new PaletteDark()
{
Primary = "#E59F2E",
Secondary = "#E59F2E",
}
};
public static bool IsDarkMode { get; set; } = true;
}