lux-shell/components/StyledRectangle.qml
2025-09-06 22:31:17 -04:00

15 lines
295 B
QML

import qs.config
import QtQuick
import Quickshell.Widgets
WrapperRectangle {
id: root
margin: 8
radius: Styling.theme.radiusBox
color: Styling.theme.base200
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.normal
}
}
}