bar: tray: not make icons fully monochrome

This commit is contained in:
end-4
2025-07-22 09:17:03 +07:00
parent 02f1c461c5
commit c0f7504b36
@@ -59,12 +59,12 @@ MouseArea {
visible: false // There's already color overlay visible: false // There's already color overlay
anchors.fill: parent anchors.fill: parent
source: trayIcon source: trayIcon
desaturation: 1 // 1.0 means fully grayscale desaturation: 0.8 // 1.0 means fully grayscale
} }
ColorOverlay { ColorOverlay {
anchors.fill: desaturatedIcon anchors.fill: desaturatedIcon
source: desaturatedIcon source: desaturatedIcon
color: ColorUtils.transparentize(Appearance.colors.colOnLayer0, 0.6) color: ColorUtils.transparentize(Appearance.colors.colOnLayer0, 0.9)
} }
} }
} }