91 lines
3.5 KiB
C#
91 lines
3.5 KiB
C#
using MudBlazor;
|
|
|
|
namespace FrontOffice.Main.Utilities;
|
|
|
|
public static class CustomMudTheme
|
|
{
|
|
public static MudTheme CustomMudBlazorTheme { get; set; } = new()
|
|
{
|
|
PaletteLight = new PaletteLight()
|
|
{
|
|
Primary = "#0380C0",
|
|
Background = "#F5F5F5",
|
|
AppbarBackground = "#F5F5F5",
|
|
TextPrimary = Colors.Gray.Darken3,
|
|
Surface = "#FFFFFF",
|
|
Divider = "#B2BFCB",
|
|
},
|
|
Typography = new Typography
|
|
{
|
|
Default = new DefaultTypography()
|
|
{
|
|
FontFamily = new[] { "Vazir", "Tahoma", "Segoe UI", "Arial", "sans-serif" }
|
|
},
|
|
H1 = new H1Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "2rem", LineHeight = "1.70", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
H2 = new H2Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1.875rem", LineHeight = "1.65", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
H3 = new H3Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1.5rem", LineHeight = "1.60", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
H4 = new H4Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1.25rem", LineHeight = "1.55", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
H5 = new H5Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1.125rem", LineHeight = "1.50", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
H6 = new H6Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1rem", LineHeight = "1.45", FontWeight = "800",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Subtitle1 = new Subtitle1Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1rem", LineHeight = "1.62", FontWeight = "500",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Subtitle2 = new Subtitle2Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "0.875rem", LineHeight = "1.60", FontWeight = "500",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Body1 = new Body1Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "1rem", LineHeight = "1.85", FontWeight = "400",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Body2 = new Body2Typography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "0.875rem", LineHeight = "1.80", FontWeight = "400",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Caption = new CaptionTypography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "0.75rem", LineHeight = "1.60", FontWeight = "400",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Overline = new OverlineTypography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "0.75rem", LineHeight = "1.60", FontWeight = "500",
|
|
LetterSpacing = "normal"
|
|
},
|
|
Button = new ButtonTypography()
|
|
{
|
|
FontFamily = new[] { "Vazir" }, FontSize = "0.875rem", LineHeight = "1.60", FontWeight = "600",
|
|
LetterSpacing = "normal", TextTransform = "none"
|
|
}
|
|
}
|
|
};
|
|
} |