Files
z-bar-qt/Greeter/Components/CustomTextInput.qml
Zacharias-Brohn 6b482979fe greeter test
2026-03-18 23:39:37 +01:00

16 lines
391 B
QML

import QtQuick
import QtQuick.Controls
import qs.Config
TextInput {
renderType: Text.NativeRendering
selectedTextColor: DynamicColors.palette.m3onSecondaryContainer
selectionColor: DynamicColors.tPalette.colSecondaryContainer
font {
family: Appearance?.font.family.sans ?? "sans-serif"
hintingPreference: Font.PreferFullHinting
pixelSize: Appearance?.font.size.normal ?? 15
}
}