18 lines
408 B
QML
18 lines
408 B
QML
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
|
|
}
|
|
}
|
|
}
|