Compare commits

...

2 Commits

Author SHA1 Message Date
7a95288f81 theme: increase contrast 2026-06-04 21:39:52 +02:00
fa3e41ecc2 clock: move near end of bar 2026-06-04 21:39:16 +02:00
2 changed files with 22 additions and 26 deletions

View File

@@ -11,28 +11,28 @@ Singleton {
readonly property int padding: 10
readonly property int gap: 4
// --- palette (Catppuccin Mocha, darkened toward OLED black) ---
readonly property color base: "#0d0d12"
readonly property color mantle: "#08080b"
readonly property color surface0: "#1c1c28"
readonly property color surface1: "#2a2a3a"
readonly property color overlay: "#52526a"
readonly property color text: "#cdd6f4"
readonly property color subtext: "#a6adc8"
// --- palette (deep near-black base, high-contrast foreground) ---
readonly property color base: "#05060a"
readonly property color mantle: "#000000"
readonly property color surface0: "#15161f"
readonly property color surface1: "#232532"
readonly property color overlay: "#4a4d63"
readonly property color text: "#eef1f8"
readonly property color subtext: "#b4bbd0"
readonly property color rosewater: "#f5e0dc"
readonly property color red: "#f38ba8"
readonly property color peach: "#fab387"
readonly property color yellow: "#f9e2af"
readonly property color green: "#a6e3a1"
readonly property color teal: "#94e2d5"
readonly property color sky: "#89dceb"
readonly property color blue: "#89b4fa"
readonly property color mauve: "#cba6f7"
readonly property color lavender: "#b4befe"
readonly property color rosewater: "#ffdfd6"
readonly property color red: "#ff7a93"
readonly property color peach: "#ffb074"
readonly property color yellow: "#ffe07a"
readonly property color green: "#8ff09a"
readonly property color teal: "#7ff0df"
readonly property color sky: "#74d9ff"
readonly property color blue: "#7aa9ff"
readonly property color mauve: "#c799ff"
readonly property color lavender: "#aebcff"
// bar background, slightly translucent
readonly property color barColor: Qt.rgba(0.051, 0.051, 0.071, 0.94)
// bar background, near-opaque true black
readonly property color barColor: Qt.rgba(0.02, 0.024, 0.039, 0.96)
// --- typography ---
readonly property string font: "Inter, sans-serif"

View File

@@ -45,12 +45,7 @@ PanelWindow {
screen: panel.modelData
}
// center: clock
Clock {
anchors.centerIn: parent
}
// right: battery, system metrics, volume, tray
// right: battery, system metrics, volume, clock, tray
RowLayout {
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
@@ -64,6 +59,7 @@ PanelWindow {
Disk {}
Network {}
Volume {}
Clock {}
Tray { panelWindow: panel }
}
}