50 lines
1.8 KiB
QML
50 lines
1.8 KiB
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: 8
|
|
readonly property color color: "#1e1e2e"
|
|
readonly property int rounding: 25
|
|
}
|
|
|
|
readonly property QtObject catppuccin: QtObject {
|
|
readonly property color base: "#1e1e2e"
|
|
readonly property color mantle: "#181825"
|
|
readonly property color surface0: "#313244"
|
|
readonly property color surface1: "#45475a"
|
|
readonly property color surface2: "#585b70"
|
|
readonly property color text: "#cdd6f4"
|
|
readonly property color rosewater: "#f5e0dc"
|
|
readonly property color lavender: "#b4befe"
|
|
readonly property color red: "#f38ba8"
|
|
readonly property color peach: "#fab387"
|
|
readonly property color yellow: "#f9e2af"
|
|
readonly property color green: "#a6e3a1"
|
|
readonly property color teal: "#a6e3a1"
|
|
readonly property color blue: "#89b4fa"
|
|
readonly property color mauve: "#cba6f7"
|
|
readonly property color flamingo: "#f2cdcd"
|
|
}
|
|
readonly property QtObject volumeslider: QtObject {
|
|
readonly property int width: 50
|
|
}
|
|
|
|
}
|