From a72afcafbbe46ed7f9bec91b667d2cfe341c8517 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Mon, 11 Aug 2025 08:40:28 -0400 Subject: [PATCH] Notification: subtle gradient --- Modules/Notification/Notification.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Modules/Notification/Notification.qml b/Modules/Notification/Notification.qml index 83fdfa8..53f4222 100644 --- a/Modules/Notification/Notification.qml +++ b/Modules/Notification/Notification.qml @@ -62,10 +62,13 @@ PanelWindow { width: 360 * scaling height: Math.max(80 * scaling, contentColumn.implicitHeight + (Style.marginMedium * 2 * scaling)) clip: true - color: Colors.backgroundSecondary radius: Style.radiusMedium * scaling border.color: Colors.accentPrimary border.width: Math.max(1, Style.borderThin * scaling) + gradient: Gradient { + GradientStop { position: 0.0; color: Colors.backgroundTertiary } + GradientStop { position: 1.0; color: Colors.backgroundSecondary } + } // Animation properties property real scaleValue: 0.8