diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 14:50:18 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 14:50:18 +1000 |
| commit | 1fdaf24526ae688251307f2756bcdb9d7592e383 (patch) | |
| tree | 9187b1efd11bfa7d1d2625da29c308a6a51c2842 /modules/launcher/Content.qml | |
| parent | dev: get rid of wrapper width/height = 0 warnings (diff) | |
| download | caelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.tar.gz caelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.tar.bz2 caelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.zip | |
refactor: move colours to separate service
Diffstat (limited to 'modules/launcher/Content.qml')
| -rw-r--r-- | modules/launcher/Content.qml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index 41904f7..6ecced5 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -5,7 +5,6 @@ import "root:/services" import "root:/config" import Quickshell import QtQuick -import QtQuick.Controls Item { id: root @@ -24,7 +23,7 @@ Item { StyledRect { id: listWrapper - color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true) + color: Colours.alpha(Colours.palette.m3surfaceContainer, true) radius: root.rounding implicitWidth: list.width + root.padding * 2 @@ -61,7 +60,7 @@ Item { placeholderText: qsTr(`Type "${LauncherConfig.actionPrefix}" for commands`) background: StyledRect { - color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true) + color: Colours.alpha(Colours.palette.m3surfaceContainer, true) radius: root.rounding } |