summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-20 08:55:33 -0500
committerATMDA <atdma2600@gmail.com>2025-11-20 08:55:33 -0500
commita204fb62b50a2ac3d370d6e664e62deb1e7b6ee6 (patch)
tree4769d9b620cd4bd402db6e0ee48c3e280c275e71
parentcontrolcenter: wallpaper title overlay to black (diff)
downloadcaelestia-shell-a204fb62b50a2ac3d370d6e664e62deb1e7b6ee6.tar.gz
caelestia-shell-a204fb62b50a2ac3d370d6e664e62deb1e7b6ee6.tar.bz2
caelestia-shell-a204fb62b50a2ac3d370d6e664e62deb1e7b6ee6.zip
controlcenter: WallpaperGrid color updates to style
-rw-r--r--modules/controlcenter/components/WallpaperGrid.qml18
1 files changed, 14 insertions, 4 deletions
diff --git a/modules/controlcenter/components/WallpaperGrid.qml b/modules/controlcenter/components/WallpaperGrid.qml
index 7aee181..d1858bc 100644
--- a/modules/controlcenter/components/WallpaperGrid.qml
+++ b/modules/controlcenter/components/WallpaperGrid.qml
@@ -346,6 +346,7 @@ Item {
visible: opacity > 0
antialiasing: true
smooth: true
+ sourceSize: Qt.size(width, height)
opacity: status === Image.Ready ? 1 : 0
@@ -369,6 +370,7 @@ Item {
visible: opacity > 0
antialiasing: true
smooth: true
+ sourceSize: Qt.size(width, height)
opacity: status === Image.Ready && cachingImage.status !== Image.Ready ? 1 : 0
@@ -403,19 +405,27 @@ Item {
gradient: Gradient {
GradientStop {
position: 0.0
- color: Qt.rgba(0, 0, 0, 0)
+ color: Qt.rgba(Colours.palette.m3surface.r,
+ Colours.palette.m3surface.g,
+ Colours.palette.m3surface.b, 0)
}
GradientStop {
position: 0.3
- color: Qt.rgba(0, 0, 0, 0.7)
+ color: Qt.rgba(Colours.palette.m3surface.r,
+ Colours.palette.m3surface.g,
+ Colours.palette.m3surface.b, 0.7)
}
GradientStop {
position: 0.6
- color: Qt.rgba(0, 0, 0, 0.9)
+ color: Qt.rgba(Colours.palette.m3surface.r,
+ Colours.palette.m3surface.g,
+ Colours.palette.m3surface.b, 0.9)
}
GradientStop {
position: 1.0
- color: Qt.rgba(0, 0, 0, 0.95)
+ color: Qt.rgba(Colours.palette.m3surface.r,
+ Colours.palette.m3surface.g,
+ Colours.palette.m3surface.b, 0.95)
}
}