more hacking friendly widgets

This commit is contained in:
end-4
2025-05-26 11:40:13 +02:00
parent 6c1b27bac9
commit a2ab9d2877
9 changed files with 100 additions and 101 deletions
@@ -6,7 +6,7 @@ Text {
renderType: Text.NativeRendering
font.hintingPreference: Font.PreferFullHinting
verticalAlignment: Text.AlignVCenter
font.family: Appearance.font.family.main
font.pixelSize: Appearance.font.pixelSize.small
color: Appearance.m3colors.m3onBackground
font.family: Appearance?.font.family.main ?? "sans-serif"
font.pixelSize: Appearance?.font.pixelSize.small ?? 15
color: Appearance?.m3colors.m3onBackground ?? "black"
}