Files
DotNetSolutionTools/DotNetSolutionTools.Photino/AppThemeProvider.cs
2025-05-18 13:41:52 +10:00

16 lines
356 B
C#

using MudBlazor;
namespace DotNetSolutionTools.Photino;
public static class AppThemeProvider
{
public static MudTheme GetTheme()
{
var theme = new MudTheme();
theme.Typography.H5.FontSize = "1.4rem";
theme.Typography.H5.FontWeight = "500";
theme.Typography.H6.FontSize = "1.1rem";
return theme;
}
}