blob: af3cf34d7638196b099eec6030626de16147986f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import "root:/modules/common"
import QtQuick
import QtQuick.Controls
TextArea {
renderType: Text.NativeRendering
selectedTextColor: Appearance.m3colors.m3selectionText
selectionColor: Appearance.m3colors.m3selectionBackground
placeholderTextColor: Appearance.m3colors.m3borderPrimary
font {
family: Appearance?.font.family.uiFont ?? "sans-serif"
pixelSize: Appearance?.font.pixelSize.textBase ?? 15
hintingPreference: Font.PreferFullHinting
}
}
|