dotfiles/.config/quickshell/modules/common/widgets/StyledTextArea.qml
2025-12-15 18:20:18 +01:00

15 lines
494 B
QML

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
}
}