Files
illogical-impulse/.config/quickshell/modules/common/widgets/StyledText.qml
T
2025-06-09 23:04:04 +02:00

16 lines
446 B
QML

import "root:/modules/common"
import QtQuick
import QtQuick.Layouts
Text {
renderType: Text.NativeRendering
verticalAlignment: Text.AlignVCenter
font {
hintingPreference: Font.PreferFullHinting
family: Appearance?.font.family.main ?? "sans-serif"
pixelSize: Appearance?.font.pixelSize.small ?? 15
}
color: Appearance?.m3colors.m3onBackground ?? "black"
linkColor: Appearance?.m3colors.m3primary
}