public Font( family as String = "Segoe UI Variable Text, Segoe UI, SF Pro Text, Helvetica Neue, DejaVu Sans, Arial, sans-serif", size as Int = 13, bold as Boolean = false, italic as Boolean = false ):
Creates an immutable font.
Empty families fall back to the standard Klyn UI family. Sizes lower than one pixel are normalized to one pixel.
| Parameter | Description |
|---|---|
family | Operating-system family or fallback list. |
size | Size in logical pixels. |
bold | Whether to request a bold face. |
italic | Whether to request an italic face. |
font = Font("Cascadia Code", 15, bold=true, italic=false)