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
|
|
|
|
|
{
|
2022-07-19 15:58:35 +02:00
|
|
|
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
|
|
|
}
|
2022-04-28 16:21:56 +02:00
|
|
|
}
|