// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT export struct TextStyle { font_size: length, font_weight: int } export global MaterialTypography { out property regular: 300; out property medium: 600; out property semibold: 900; out property display_large: { font_size: 57px, font_weight: root.regular }; out property display_medium: { font_size: 45px, font_weight: root.regular }; out property display_small: { font_size: 36px, font_weight: root.regular }; out property headline_large: { font_size: 32px, font_weight: root.regular }; out property headline_medium: { font_size: 28px, font_weight: root.regular }; out property headline_small: { font_size: 24px, font_weight: root.regular }; out property title_large: { font_size: 22px, font_weight: root.regular }; out property title_medium: { font_size: 16px, font_weight: root.medium }; out property title_small: { font_size: 14px, font_weight: root.medium }; out property label_large: { font_size: 14px, font_weight: root.medium }; out property label_medium: { font_size: 12px, font_weight: root.medium }; out property label_medium_prominent: { font_size: 12px, font_weight: root.semibold }; out property label_small: { font_size: 11px, font_weight: root.medium }; out property body_large: { font_size: 16px, font_weight: root.regular }; out property body_medium: { font_size: 14px, font_weight: root.regular }; out property body_small: { font_size: 12px, font_weight: root.regular }; }