mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-06 07:19:27 -05:00
17 lines
471 B
QML
17 lines
471 B
QML
import "root:/modules/common"
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
Label {
|
|
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
|
|
}
|