Files
DotNetSolutionTools/DotNetSolutionTools.Photino/AppThemeProvider.cs
Matthew Parker [SSW] 5277a7eb70 Add Photino project
2024-11-21 20:48:11 +10:00

16 lines
354 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;
}
}