From d437b98a12c06a24c19fa2093d3ab643141564a5 Mon Sep 17 00:00:00 2001 From: Jaquee Date: Tue, 8 Aug 2017 10:45:17 +0200 Subject: [PATCH] standardbuttons - default colors --- components/StandardButton.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/StandardButton.qml b/components/StandardButton.qml index 3954c58c..0ee722b5 100644 --- a/components/StandardButton.qml +++ b/components/StandardButton.qml @@ -32,10 +32,10 @@ import QtQuick.Layouts 1.1 Item { id: button height: 37 * scaleRatio - property string shadowPressedColor - property string shadowReleasedColor - property string pressedColor - property string releasedColor + property string shadowPressedColor: "#B32D00" + property string shadowReleasedColor: "#FF4304" + property string pressedColor: "#FF4304" + property string releasedColor: "#FF6C3C" property string icon: "" property string textColor: "#FFFFFF" property int fontSize: 12 * scaleRatio