more dynamic color scheme stuff

This commit is contained in:
Zacharias-Brohn
2025-11-23 23:34:24 +01:00
parent 5a87930cad
commit 5593cce7ca
6 changed files with 58 additions and 27 deletions
+6 -3
View File
@@ -114,12 +114,15 @@ PanelWindow {
y: 10
x: Screen.width
z: 1
property color backgroundColor: Config.useDynamicColors ? DynamicColors.tPalette.m3surface : Config.baseBgColor
implicitWidth: 400
implicitHeight: root.height - 20
color: Config.baseBgColor
color: backgroundColor
radius: 8
border.color: "#555555"
border.width: 1
border.width: Config.useDynamicColors ? 0 : 1
ColumnLayout {
anchors.fill: parent
anchors.margins: 10
@@ -129,7 +132,7 @@ PanelWindow {
Rectangle {
color: "#333333"
Layout.preferredHeight: 1
Layout.preferredHeight: Config.useDynamicColors ? 0 : 1
Layout.fillWidth: true
}