lux-shell/widgets/StyledLabel.qml
Benjamin Palko a8de6c8946 unfuck THAT
2025-07-28 23:16:40 -04:00

16 lines
287 B
QML

import qs.config
import QtQuick
import Quickshell.Widgets
WrapperRectangle {
id: root
margin: 8
radius: 8
color: Theme.palette.base100
Behavior on color {
ColorAnimation {
duration: 200
easing.type: Easing.InOutQuad
}
}
}