import QtQuick 2.15
Item {
property color color: FluTheme.isDark ? "#FFFFFF" : "#999999"
property int radius: 4
id:root
anchors.fill: parent
anchors.margins: -4
Rectangle{
width: root.width
height: root.height
anchors.centerIn: parent
color: "#00000000"
opacity: 0.02
border.width: 1
radius: root.radius
border.color: root.color
}
width: root.width - 2
height: root.height - 2
opacity: 0.04
width: root.width - 4
height: root.height - 4
opacity: 0.06
width: root.width - 6
height: root.height - 6
opacity: 0.08
width: root.width - 8
height: root.height - 8
opacity: 0.1