2026-01-14 23:18:18 +01:00
|
|
|
import QtQuick
|
2026-01-19 12:45:35 +01:00
|
|
|
import qs
|
|
|
|
|
import qs.settings
|
2026-01-14 23:18:18 +01:00
|
|
|
|
|
|
|
|
Text {
|
2026-02-01 17:51:55 +01:00
|
|
|
verticalAlignment: Text.AlignVCenter
|
2026-01-23 16:34:15 +01:00
|
|
|
color: Colors.onSurfaceColor
|
2026-01-14 23:18:18 +01:00
|
|
|
font.family: Settings.config.font
|
|
|
|
|
font.pixelSize: Settings.config.fontSize
|
2026-01-16 15:15:44 +01:00
|
|
|
font.variableAxes: ({
|
|
|
|
|
GRAD: 200,
|
|
|
|
|
wght: 400
|
|
|
|
|
})
|
2026-01-14 23:18:18 +01:00
|
|
|
}
|