lux-shell/components/StyledRectangle.qml
2025-09-07 22:32:25 -04:00

12 lines
235 B
QML

import qs.config
import QtQuick
Rectangle {
radius: Styling.theme.radiusBox
color: Styling.theme.base200
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.normal
}
}
}