2023-09-01 10:48:19 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
import QtQuick
|
|
|
|
|
2023-12-20 07:13:15 +00:00
|
|
|
CustomButtonForm {
|
|
|
|
rectangle.gradient: if (buttonColor == "grey"
|
|
|
|
&& Colors.currentTheme == Colors.dark) {
|
|
|
|
Colors.darkButtonGradient
|
|
|
|
} else if (buttonColor == "grey"
|
|
|
|
&& Colors.currentTheme == Colors.light) {
|
|
|
|
Colors.lightButtonGradient
|
|
|
|
} else {
|
|
|
|
Colors.greenButtonGradient
|
|
|
|
}
|
2023-09-01 10:48:19 +00:00
|
|
|
}
|