forked from Shinonome/dots-hyprland
20 lines
424 B
QML
20 lines
424 B
QML
import QtQuick
|
|
|
|
Text {
|
|
id: root
|
|
|
|
renderType: Text.NativeRendering
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: Looks.colors.fg
|
|
|
|
font {
|
|
hintingPreference: Font.PreferDefaultHinting
|
|
family: Looks.font.family.ui
|
|
pixelSize: Looks.font.pixelSize.normal
|
|
weight: Looks.font.weight.regular
|
|
variableAxes: Looks.font.variableAxes.ui
|
|
}
|
|
|
|
linkColor: Looks.colors.link
|
|
}
|