mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-30 15:17:25 +00:00

* [autofix.ci] apply automated fixes * Update demos/usecases/esp-idf/README.md Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> * Update demos/usecases/esp-idf/rust-toolchain.toml Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev> --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Olivier Goffart <olivier.goffart@slint.dev>
11 lines
364 B
Text
11 lines
364 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { Palette } from "std-widgets.slint";
|
|
import { CosmicFontSettings } from "styling.slint";
|
|
|
|
export component TitleText inherits Text {
|
|
color: Palette.foreground;
|
|
font-size: CosmicFontSettings.title-2.font-size;
|
|
font-weight: CosmicFontSettings.title-2.font-weight;
|
|
}
|