summaryrefslogtreecommitdiff
path: root/widgets/LayerShadow.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 14:50:18 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-05 14:50:18 +1000
commit1fdaf24526ae688251307f2756bcdb9d7592e383 (patch)
tree9187b1efd11bfa7d1d2625da29c308a6a51c2842 /widgets/LayerShadow.qml
parentdev: get rid of wrapper width/height = 0 warnings (diff)
downloadcaelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.tar.gz
caelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.tar.bz2
caelestia-shell-1fdaf24526ae688251307f2756bcdb9d7592e383.zip
refactor: move colours to separate service
Diffstat (limited to 'widgets/LayerShadow.qml')
-rw-r--r--widgets/LayerShadow.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/LayerShadow.qml b/widgets/LayerShadow.qml
index 1694a8e..b5f84c9 100644
--- a/widgets/LayerShadow.qml
+++ b/widgets/LayerShadow.qml
@@ -1,9 +1,9 @@
-import "root:/config"
+import "root:/services"
import Qt5Compat.GraphicalEffects
DropShadow {
anchors.fill: source
- color: Qt.alpha(Appearance.colours.m3shadow, 0.7)
+ color: Qt.alpha(Colours.palette.m3shadow, 0.7)
radius: 10
samples: 1 + radius * 2
}