From a0df2a7af0391e7b0387d0d5954e4cd4d84f3abf Mon Sep 17 00:00:00 2001 From: quadbyte Date: Mon, 11 Aug 2025 13:46:59 -0400 Subject: [PATCH] Removed rippleEffect color --- Assets/Wallust/Templates/noctalia.json | 2 -- Services/Colors.qml | 6 ++---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Assets/Wallust/Templates/noctalia.json b/Assets/Wallust/Templates/noctalia.json index 22da0f5..f10f03e 100644 --- a/Assets/Wallust/Templates/noctalia.json +++ b/Assets/Wallust/Templates/noctalia.json @@ -18,8 +18,6 @@ "warning": "{{ color5 | lighten(0.3) }}", "highlight": "{{ color4 | lighten(0.4) }}", - "rippleEffect": "{{ color4 | lighten(0.1) }}", - "onAccent": "{{ background }}", "outline": "{{ background | lighten(0.3) }}", diff --git a/Services/Colors.qml b/Services/Colors.qml index d8ad5e6..25e6b74 100644 --- a/Services/Colors.qml +++ b/Services/Colors.qml @@ -31,9 +31,8 @@ Singleton { property color error: themeData.error property color warning: themeData.warning - // Highlights & Focus + // Highlights property color highlight: themeData.highlight - property color rippleEffect: themeData.rippleEffect // Additional Theme Properties property color onAccent: themeData.onAccent @@ -86,9 +85,8 @@ Singleton { property string error: "#eb6f92" property string warning: "#f6c177" - // Highlights & Focus + // Highlights property string highlight: "#c4a7e7" - property string rippleEffect: "#9ccfd8" // Additional Theme Properties property string onAccent: "#191724"