FontSettingsDto
Typography settings for a specific text element (headings, body, tables, etc.) in a design theme.
Defines font family, size, color, and text decorations.
Properties
| Name | Type | Description |
|---|---|---|
| fontFamily | string | Font family name (e.g., "Arial", "Times New Roman", "Helvetica") |
Font family name (e.g., "Arial", "Times New Roman", "Helvetica") | ||
| fontSize | number | Font size in points |
Font size in points | ||
| color | string | Text color in hex format (e.g., "#000000" for black) |
Text color in hex format (e.g., "#000000" for black) | ||
| bold | boolean | Whether the text should be bold |
Whether the text should be bold | ||
| italic | boolean | Whether the text should be italic |
Whether the text should be italic | ||
| underline | boolean | Whether the text should be underlined |
Whether the text should be underlined | ||
JSON Example
{
"fontFamily": "string",
"fontSize": 0,
"color": "string",
"bold": false,
"italic": false
}