summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/Colors.qml2
-rw-r--r--framework/qml/PositiveButton.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/qml/Colors.qml b/framework/qml/Colors.qml
index 9d1737d1..5e1f1689 100644
--- a/framework/qml/Colors.qml
+++ b/framework/qml/Colors.qml
@@ -29,7 +29,7 @@ Item {
29 property string highlightedTextColor: "#fcfcfc" 29 property string highlightedTextColor: "#fcfcfc"
30 30
31 31
32 property string positveColor: "#27ae60" 32 property string positiveColor: "#27ae60"
33 property string warningColor: "#f67400" 33 property string warningColor: "#f67400"
34 property string negativeColor: "#ed1515" 34 property string negativeColor: "#ed1515"
35} 35}
diff --git a/framework/qml/PositiveButton.qml b/framework/qml/PositiveButton.qml
index f526968b..8265a71a 100644
--- a/framework/qml/PositiveButton.qml
+++ b/framework/qml/PositiveButton.qml
@@ -34,7 +34,7 @@ T.Button {
34 hoverEnabled: true 34 hoverEnabled: true
35 35
36 background: Rectangle { 36 background: Rectangle {
37 color: root.pressed ? Colors.highlightColor : Colors.positveColor 37 color: root.pressed ? Colors.highlightColor : Colors.positiveColor
38 38
39 Rectangle { 39 Rectangle {
40 anchors.fill: parent 40 anchors.fill: parent