pragma Singleton import Quickshell import QtQuick Singleton { // Sizing readonly property int barHeight: 40 readonly property int radius: 6 readonly property int spacing: 4 readonly property int padding: 6 readonly property int iconSize: 22 readonly property int borderWidth: 1 // Palette readonly property color background: "#14161b" readonly property color surface: "#1c1f26" readonly property color surfaceHover: "#272b34" readonly property color surfaceActive: "#323845" readonly property color border: "#2c313c" readonly property color text: "#d6dae2" readonly property color textDim: "#8b93a3" readonly property color accent: "#6ea8fe" readonly property color danger: "#e4677a" // Type readonly property string fontFamily: "sans-serif" readonly property int fontSize: 12 readonly property int fontSizeSmall: 10 // Motion readonly property int animDuration: 110 readonly property int animEasing: Easing.OutQuad }