16 lines
380 B
QML
16 lines
380 B
QML
import QtQuick
|
|
import ZShell.Config
|
|
import qs.Services
|
|
|
|
TextInput {
|
|
renderType: Text.NativeRendering
|
|
selectedTextColor: Colors.palette.m3onSecondaryContainer
|
|
selectionColor: Colors.tPalette.m3onSecondaryContainer
|
|
|
|
font {
|
|
family: Config.appearance?.font.family.sans ?? "sans-serif"
|
|
hintingPreference: Font.PreferFullHinting
|
|
pixelSize: Tokens?.font.size.normal ?? 15
|
|
}
|
|
}
|