Skip to content

FontWeight

The FontWeight namespace contains constants for various font weights, following the CSS specification.

The following constants are available in the FontWeight namespace. They are all unitless float values.

NameValueDescription
thin100Thin
extra-light200Extra Light
light300Light
normal400Normal
medium500Medium
semi-bold600Semi Bold
bold700Bold
extra-bold800Extra Bold
black900Black
export component Example inherits Window {
Text {
text: "Hello World";
font-weight: FontWeight.bold;
}
}
slint

© 2026 SixtyFPS GmbH