Files
dots-hyprland/.config/quickshell/oo/modules/common/widgets/StyledText.qml
T
2025-07-27 08:52:38 +07:00

16 lines
440 B
QML

import qs.singletons
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?.colors.on_background ?? "black"
linkColor: Appearance?.colors.primary ?? "blue"
}