Files
dotfiles/quickshell/components/TintEffect.qml
2026-08-10 23:57:26 +02:00

12 lines
286 B
QML

import QtQuick
import QtQuick.Effects
// Layer effect that recolours whatever it is applied to — used to tint the
// white texture tiles without shipping a copy per colour.
MultiEffect {
property color tintColor: "white"
colorization: 1.0
colorizationColor: tintColor
}