Files

13 lines
569 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
{
2021-04-20 12:55:07 +02:00
public static TextStyle Title => TextStyle.Default.FontType(Fonts.Calibri).Color(Colors.Blue.Darken3).Size(26).Black();
public static TextStyle Headline => TextStyle.Default.FontType(Fonts.Calibri).Color(Colors.Blue.Medium).Size(16).SemiBold();
public static TextStyle Normal => TextStyle.Default.FontType(Fonts.Calibri).Color(Colors.Black).Size(11).LineHeight(1.25f).AlignLeft();
2021-01-16 01:31:39 +01:00
}
}