mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
17 lines
343 B
QML
17 lines
343 B
QML
import QtQuick
|
|
import qs.Commons
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Text {
|
|
id: root
|
|
|
|
font.family: Settings.data.ui.fontDefault
|
|
font.pointSize: Style.fontSizeM * scaling
|
|
font.weight: Style.fontWeightMedium
|
|
color: Color.mOnSurface
|
|
renderType: Text.QtRendering
|
|
font.hintingPreference: Font.PreferNoHinting
|
|
font.kerning: true
|
|
}
|