Files

14 lines
578 B
C#
Raw Permalink Normal View History

2021-01-16 01:31:39 +01:00
using QuestPDF.Fluent;
2021-04-09 19:11:17 +02:00
using QuestPDF.Helpers;
2021-01-16 01:31:39 +01:00
using QuestPDF.Infrastructure;
namespace QuestPDF.ReportSample
{
public static class Typography
{
public static TextStyle Title => TextStyle.Default.FontFamily(Fonts.Lato).FontColor(Colors.Blue.Darken3).FontSize(26).Black();
public static TextStyle Headline => TextStyle.Default.FontFamily(Fonts.Lato).FontColor(Colors.Blue.Medium).FontSize(16).SemiBold();
public static TextStyle Normal => TextStyle.Default.FontFamily(Fonts.Lato).FontColor(Colors.Black).FontSize(10).LineHeight(1.2f);
2021-01-16 01:31:39 +01:00
}
}