From dcc14a565d191468e4d2ff1c983a6a73f470da32 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sat, 1 Nov 2025 20:16:22 +0100 Subject: [PATCH] adjust urgent notif color --- .../ii/modules/common/widgets/NotificationAppIcon.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml b/dots/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml index 795a708be..b590f22ac 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/NotificationAppIcon.qml @@ -27,7 +27,7 @@ MaterialShape { // App icon ] shape: isUrgent ? urgentShapes[Math.floor(Math.random() * urgentShapes.length)] : MaterialShape.Shape.Circle - color: isUrgent ? Appearance.colors.colPrimary : Appearance.colors.colSecondaryContainer + color: isUrgent ? Appearance.colors.colPrimaryContainer : Appearance.colors.colSecondaryContainer Loader { id: materialSymbolLoader active: root.appIcon == "" @@ -40,7 +40,7 @@ MaterialShape { // App icon "priority_high" : guessedIcon } anchors.fill: parent - color: isUrgent ? Appearance.colors.colOnPrimary : Appearance.colors.colOnSecondaryContainer + color: isUrgent ? Appearance.colors.colOnPrimaryContainer : Appearance.colors.colOnSecondaryContainer iconSize: root.materialIconSize horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter