forked from Shinonome/dots-hyprland
20 lines
457 B
QML
20 lines
457 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
|
|
TextInput {
|
|
id: root
|
|
renderType: Text.NativeRendering
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: Looks.colors.fg
|
|
|
|
font {
|
|
hintingPreference: Font.PreferFullHinting
|
|
family: Looks.font.family.ui
|
|
pixelSize: Looks.font.pixelSize.large
|
|
weight: Looks.font.weight.regular
|
|
}
|
|
|
|
selectionColor: Looks.colors.selection
|
|
selectedTextColor: Looks.colors.selectionFg
|
|
}
|