mirror of
https://github.com/belsabbagh/dotfiles.git
synced 2026-04-11 01:26:46 +00:00
15 lines
233 B
QML
15 lines
233 B
QML
import ".."
|
|
import QtQuick
|
|
import QtQuick.Effects
|
|
|
|
MultiEffect {
|
|
property color sourceColor: "black"
|
|
|
|
colorization: 1
|
|
brightness: 1 - sourceColor.hslLightness
|
|
|
|
Behavior on colorizationColor {
|
|
CAnim {}
|
|
}
|
|
}
|