From 7aac5ac5a16a4e6cc766939e0336e70691fcbcc5 Mon Sep 17 00:00:00 2001 From: Yuxiang Qiu Date: Fri, 5 Dec 2025 02:32:48 +0000 Subject: [PATCH] dankbar: fix privacy indicator background color (#909) --- quickshell/Modules/DankBar/Widgets/PrivacyIndicator.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickshell/Modules/DankBar/Widgets/PrivacyIndicator.qml b/quickshell/Modules/DankBar/Widgets/PrivacyIndicator.qml index 9504e552..81c5ae86 100644 --- a/quickshell/Modules/DankBar/Widgets/PrivacyIndicator.qml +++ b/quickshell/Modules/DankBar/Widgets/PrivacyIndicator.qml @@ -86,7 +86,7 @@ Item { return "transparent"; } - const baseColor = privacyArea.containsMouse ? Theme.errorPressed : Theme.errorHover; + const baseColor = privacyArea.containsMouse ? Theme.widgetBaseHoverColor : Theme.widgetBaseBackgroundColor; const transparency = (root.barConfig && root.barConfig.widgetTransparency !== undefined) ? root.barConfig.widgetTransparency : 1.0; return Theme.withAlpha(baseColor, transparency); }