init
This commit is contained in:
20
OpenArchival.Blazor.Theme/AppThemeFactory.cs
Normal file
20
OpenArchival.Blazor.Theme/AppThemeFactory.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
|
||||
namespace OpenArchival.Blazor.Theme;
|
||||
|
||||
using MudBlazor;
|
||||
public static class AppThemeFactory {
|
||||
|
||||
public static MudTheme GetTheme()
|
||||
{
|
||||
return new MudTheme()
|
||||
{
|
||||
PaletteLight = new PaletteLight()
|
||||
{
|
||||
Primary = Colors.Blue.Darken4,
|
||||
Secondary = Colors.Amber.Darken1,
|
||||
AppbarBackground = Colors.Blue.Darken4
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user