From 5c3c3b97205e544ef8ddfa70b9d43f267c3aed61 Mon Sep 17 00:00:00 2001 From: Marco Allegretti Date: Fri, 17 Apr 2026 14:29:29 +0200 Subject: [PATCH] Add translucent background to convergence dock The dock's LayerShell window is transparent; icon labels are hardcoded white (designed to float over wallpaper on mobile). A dark semi-transparent fill keeps labels legible on any wallpaper without coupling to the Plasma theme color. --- containments/homescreens/folio/qml/main.qml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/containments/homescreens/folio/qml/main.qml b/containments/homescreens/folio/qml/main.qml index 959f48c6..f9e5269b 100644 --- a/containments/homescreens/folio/qml/main.qml +++ b/containments/homescreens/folio/qml/main.qml @@ -223,9 +223,7 @@ ContainmentItem { Rectangle { anchors.fill: parent - Kirigami.Theme.inherit: false - Kirigami.Theme.colorSet: Kirigami.Theme.Window - color: Kirigami.Theme.backgroundColor + color: Qt.rgba(0, 0, 0, 0.5) transform: Translate { y: dockOverlay.dockOffset } }