blob: 988c136d1d9e8bd8d95144501b1d66690a0a3590 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import "root:/modules/common"
import QtQuick
Text {
renderType: Text.NativeRendering
verticalAlignment: Text.AlignVCenter
font {
hintingPreference: Font.PreferFullHinting
family: Appearance?.font.family.uiFont ?? "sans-serif"
pixelSize: Appearance?.font.pixelSize.textBase ?? 15
}
color: Appearance?.m3colors.m3primaryText ?? "black"
}
|