blob: ed5d791fefecf29f1d4275c128d7bd10ba9db017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import "root:/config"
import QtQuick
Text {
id: root
renderType: Text.NativeRendering
color: Appearance.colours.text
font.family: Appearance.font.family.sans
Behavior on color {
ColorAnimation {
duration: Appearance.anim.durations.normal
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.standard
}
}
}
|