diff --git a/Modules/Background/Overview.qml b/Modules/Background/Overview.qml index 1b99a64..28f3641 100644 --- a/Modules/Background/Overview.qml +++ b/Modules/Background/Overview.qml @@ -65,9 +65,10 @@ Variants { blurMax: 128 } + // Make the overview darker Rectangle { anchors.fill: parent - color: Qt.rgba(Color.mSurface.r, Color.mSurface.g, Color.mSurface.b, 0.5) + color: Settings.data.colorSchemes.darkMode ? Qt.rgba(Color.mSurface.r, Color.mSurface.g, Color.mSurface.b, 0.5) : Qt.rgba(Color.mOnSurface.r, Color.mOnSurface.g, Color.mOnSurface.b, 0.5) } } } diff --git a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml index 5778f66..88f5da9 100644 --- a/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml +++ b/Modules/SettingsPanel/Tabs/WallpaperSelectorTab.qml @@ -191,7 +191,7 @@ ColumnLayout { Rectangle { anchors.fill: parent color: Color.mSurface - opacity: (mouseArea.containsMouse || isSelected) ? 0 : 0.4 + opacity: (mouseArea.containsMouse || isSelected) ? 0 : 0.3 radius: parent.radius Behavior on opacity {