2025-12-31 15:59:41 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import "./modules/settings/"
|
|
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
property real fill
|
|
|
|
|
font.family: "Material Symbols Rounded"
|
|
|
|
|
property int grade: 20
|
|
|
|
|
color: Colors.foreground
|
2025-12-31 16:18:06 +01:00
|
|
|
font.pixelSize: 14
|
2025-12-31 15:59:41 +01:00
|
|
|
font.variableAxes: ({
|
|
|
|
|
FILL: fill.toFixed(1),
|
|
|
|
|
GRAD: grade,
|
|
|
|
|
opsz: Settings.fontSize,
|
2025-12-31 16:18:06 +01:00
|
|
|
wght: 500
|
2025-12-31 15:59:41 +01:00
|
|
|
})
|
|
|
|
|
}
|