blob: a1d19d3c0635721802f4b50eb4d764205528e12b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import qs.services
import qs.config
StyledText {
property real fill
property int grade: Colours.light ? 0 : -25
font.family: Appearance.font.family.material
font.pointSize: Appearance.font.size.larger
font.variableAxes: ({
FILL: fill.toFixed(1),
GRAD: grade,
opsz: fontInfo.pixelSize,
wght: fontInfo.weight
})
}
|