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();
|
2021-04-16 01:19:34 +02:00
|
|
|
public static TextStyle Headline => TextStyle.Default.FontType(Fonts.Calibri).Color(Colors.Blue.Medium).Size(16).SemiBold();
|
2021-10-07 22:38:41 +02:00
|
|
|
public static TextStyle Normal => TextStyle.Default.FontType(Fonts.Verdana).Color(Colors.Black).Size(10).LineHeight(1.2f);
|
2021-01-16 01:31:39 +01:00
|
|
|
}
|
|
|
|
|
}
|