mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-06 23:39:27 -05:00
13 lines
386 B
QML
13 lines
386 B
QML
import "root:/modules/common"
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
Text {
|
|
renderType: Text.NativeRendering
|
|
font.hintingPreference: Font.PreferFullHinting
|
|
verticalAlignment: Text.AlignVCenter
|
|
font.family: Appearance?.font.family.main ?? "sans-serif"
|
|
font.pixelSize: Appearance?.font.pixelSize.small ?? 15
|
|
color: Appearance?.m3colors.m3onBackground ?? "black"
|
|
}
|