| 1 | // Copyright © SixtyFPS GmbH <info@slint.dev> |
|---|---|
| 2 | // SPDX-License-Identifier: MIT |
| 3 | |
| 4 | import { Palette } from "std-widgets.slint"; |
| 5 | import { CosmicFontSettings } from "styling.slint"; |
| 6 | |
| 7 | export component TitleText inherits Text { |
| 8 | color: Palette.foreground; |
| 9 | font-size: CosmicFontSettings.title-2.font-size; |
| 10 | font-weight: CosmicFontSettings.title-2.font-weight; |
| 11 | } |
| 12 |
