controlcenter: wallpaper title overlay to black

This commit is contained in:
ATMDA 2025-11-20 08:43:58 -05:00
parent 5a369702d1
commit 645159db80

View file

@ -403,27 +403,19 @@ Item {
gradient: Gradient { gradient: Gradient {
GradientStop { GradientStop {
position: 0.0 position: 0.0
color: Qt.rgba(Colours.palette.m3surfaceContainer.r, color: Qt.rgba(0, 0, 0, 0)
Colours.palette.m3surfaceContainer.g,
Colours.palette.m3surfaceContainer.b, 0)
} }
GradientStop { GradientStop {
position: 0.3 position: 0.3
color: Qt.rgba(Colours.palette.m3surfaceContainer.r, color: Qt.rgba(0, 0, 0, 0.7)
Colours.palette.m3surfaceContainer.g,
Colours.palette.m3surfaceContainer.b, 0.7)
} }
GradientStop { GradientStop {
position: 0.6 position: 0.6
color: Qt.rgba(Colours.palette.m3surfaceContainer.r, color: Qt.rgba(0, 0, 0, 0.9)
Colours.palette.m3surfaceContainer.g,
Colours.palette.m3surfaceContainer.b, 0.9)
} }
GradientStop { GradientStop {
position: 1.0 position: 1.0
color: Qt.rgba(Colours.palette.m3surfaceContainer.r, color: Qt.rgba(0, 0, 0, 0.95)
Colours.palette.m3surfaceContainer.g,
Colours.palette.m3surfaceContainer.b, 0.95)
} }
} }