mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 17:47:09 +00:00
15 lines
315 B
QML
15 lines
315 B
QML
import qs.config
|
|
import QtQuick
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
Behavior on color {
|
|
enabled: Config.runtime.appearance.animations.enabled
|
|
ColorAnimation {
|
|
duration: Metrics.chronoDuration(600)
|
|
easing.type: Easing.BezierSpline
|
|
easing.bezierCurve: Appearance.animation.curves.standard
|
|
}
|
|
}
|
|
} |