summaryrefslogtreecommitdiff
path: root/widgets/Label.qml
blob: e1e22ba4a65eadcb4c335aeb9266eff2cf10e17f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import "root:/config"
import QtQuick

Text {
    id: root

    renderType: Text.NativeRendering

    Behavior on color {
        ColorAnimation {
            duration: Appearance.anim.durations.normal
            easing.type: Easing.BezierSpline
            easing.bezierCurve: Appearance.anim.curves.standard
        }
    }
}