lux-shell/components/StyledWrapperRectangle.qml
2025-09-06 22:08:19 -04:00

20 lines
450 B
QML

import qs.config
import QtQuick
import Quickshell.Widgets
WrapperRectangle {
radius: Styling.theme.radiusBox
color: Styling.theme.base100
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
border.width: 2
border.color: Styling.theme.base100
Behavior on border.color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
}