import QtQuick 2.0 import QtQuick.Controls 2.13 import QtGraphicalEffects 1.13 import "qrc:/theme" LinearGradient { anchors.fill: parent start: Qt.point(parent.width, parent.height/2) end: Qt.point(0, 0) gradient: Gradient { GradientStop { position: 0 color: Theme.current.isDarkTheme ? "#10FFFFFF" : "#4DFFFFFF" } GradientStop { position: 0.08 color: Theme.current.isDarkTheme ? "#20FFFFFF" : "#80FFFFFF" } GradientStop { position: 0.27 color: Theme.current.isDarkTheme ? "#05FFFFFF" : "#21FFFFFF" } GradientStop { position: 1 color: Theme.current.isDarkTheme ? "#05FFFFFF" : "#21FFFFFF" } } }