Files
SharpIDE/src/SharpIDE.Photino/AppThemeProvider.cs
Matt Parker [SSW] 00d8c105e8 Initial commit
2025-01-10 18:30:33 +10:00

16 lines
306 B
C#

using MudBlazor;
namespace SharpIDE.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;
}
}