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 /widgets/StateLayer.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 'widgets/StateLayer.qml')
| -rw-r--r-- | widgets/StateLayer.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/widgets/StateLayer.qml b/widgets/StateLayer.qml index e1a7b61..4508453 100644 --- a/widgets/StateLayer.qml +++ b/widgets/StateLayer.qml @@ -1,4 +1,5 @@ import "root:/widgets" +import "root:/services" import "root:/config" import QtQuick @@ -10,7 +11,7 @@ Rectangle { anchors.fill: parent - color: Appearance.colours.m3onSurface + color: Colours.palette.m3onSurface opacity: mouse.pressed ? 0.1 : mouse.hovered ? 0.08 : 0 MouseArea { |