From 1fdaf24526ae688251307f2756bcdb9d7592e383 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Mon, 5 May 2025 14:50:18 +1000 Subject: refactor: move colours to separate service --- modules/launcher/ActionItem.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/launcher/ActionItem.qml') diff --git a/modules/launcher/ActionItem.qml b/modules/launcher/ActionItem.qml index f23cf0a..f4f7e2f 100644 --- a/modules/launcher/ActionItem.qml +++ b/modules/launcher/ActionItem.qml @@ -1,6 +1,6 @@ import "root:/widgets" +import "root:/services" import "root:/config" -import Quickshell import QtQuick PaddedRect { @@ -50,7 +50,7 @@ PaddedRect { StyledText { text: root.modelData.desc font.pointSize: Appearance.font.size.small - color: Appearance.alpha(Appearance.colours.m3outline, true) + color: Colours.alpha(Colours.palette.m3outline, true) elide: Text.ElideRight width: root.width - icon.width - Appearance.rounding.normal * 2 -- cgit v1.2.3-freya