2026-01-16 14:44:10 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import "../settings/"
|
|
|
|
|
import "../"
|
|
|
|
|
|
|
|
|
|
Text {
|
2026-01-18 01:29:27 +01:00
|
|
|
font.family: "Material Symbols Sharp"
|
2026-01-16 14:44:10 +01:00
|
|
|
color: Colors.foreground
|
2026-01-16 20:39:21 +01:00
|
|
|
font.pixelSize: Settings.config.fontSize + 1
|
2026-01-16 15:15:44 +01:00
|
|
|
font.variableAxes: ({
|
2026-01-18 01:29:27 +01:00
|
|
|
FILL: 1,
|
2026-01-16 15:15:44 +01:00
|
|
|
GRAD: 200,
|
2026-01-18 01:29:27 +01:00
|
|
|
wght: 500
|
2026-01-16 15:15:44 +01:00
|
|
|
})
|
2026-01-16 14:44:10 +01:00
|
|
|
}
|