32 lines
949 B
QML
32 lines
949 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
readonly property QtObject bar: QtObject {
|
|
readonly property int width: 50
|
|
readonly property var colors: QtObject {
|
|
readonly property color bar: "#1e1e2e"
|
|
readonly property color barOutline: "#50ffffff"
|
|
readonly property color widget: "#25ceffff"
|
|
readonly property color widgetActive: "#80ceffff"
|
|
readonly property color widgetOutline: "#40ffffff"
|
|
readonly property color widgetOutlineSeparate: "#20ffffff"
|
|
readonly property color separator: "#60ffffff"
|
|
}
|
|
}
|
|
|
|
readonly property QtObject border: QtObject {
|
|
readonly property int thickness: 0
|
|
readonly property color color: "#1e1e2e"
|
|
readonly property int rounding: 0
|
|
}
|
|
|
|
readonly property QtObject volumeslider: QtObject {
|
|
readonly property int width: 50
|
|
}
|
|
|
|
}
|