mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 23:09:26 -05:00
16 lines
440 B
QML
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"
|
|
}
|