LightMode: better overview and transparency

This commit is contained in:
LemmyCook 2025-09-01 09:30:51 -04:00
parent e3d62388f7
commit 5d950b0a5e
2 changed files with 3 additions and 2 deletions

View file

@ -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)
}
}
}

View file

@ -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 {