2026-01-16 14:44:10 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import "../settings/"
|
|
|
|
|
import "../"
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
property real fill
|
|
|
|
|
font.family: "Material Symbols Rounded"
|
|
|
|
|
color: Colors.foreground
|
|
|
|
|
font.pixelSize: Settings.config.fontSize + 2
|
2026-01-16 15:15:44 +01:00
|
|
|
font.variableAxes: ({
|
|
|
|
|
FILL: fill.toFixed(1),
|
|
|
|
|
GRAD: 200,
|
|
|
|
|
wght: 400
|
|
|
|
|
})
|
2026-01-16 14:44:10 +01:00
|
|
|
}
|