color anim on wrapper rect

This commit is contained in:
Benjamin Palko 2025-09-02 20:17:03 -04:00
parent 2f575bc541
commit 49fa675f70

View file

@ -1,7 +1,14 @@
import qs.config
import QtQuick
import Quickshell.Widgets
WrapperRectangle {
color: Theme.palette.base300
radius: 8
color: Theme.palette.base300
Behavior on color {
ColorAnimation {
duration: 200
easing.type: Easing.InOutQuad
}
}
}