add a serif font

This commit is contained in:
Sina Atalay 2023-10-08 16:13:32 +02:00
parent 8790097351
commit 468dafa19d
5 changed files with 2 additions and 2 deletions

View File

@ -410,11 +410,11 @@ class Design(BaseModel):
title="Theme name", title="Theme name",
description='The only option is "Classic" for now.', description='The only option is "Classic" for now.',
) )
font: Literal["SourceSans3", "Roboto"] = Field( font: Literal["SourceSans3", "Roboto", "EBGaramond"] = Field(
default="SourceSans3", default="SourceSans3",
title="Font", title="Font",
description="The font of the CV.", description="The font of the CV.",
examples=["SourceSans3", "Roboto"], examples=["SourceSans3", "Roboto", "EBGaramond"],
) )
font_size: Literal["10pt", "11pt", "12pt"] = Field( font_size: Literal["10pt", "11pt", "12pt"] = Field(
default="10pt", default="10pt",