diff --git a/styles/CwtchTextFieldStyle.qml b/styles/CwtchTextFieldStyle.qml index 9175e21..a131b28 100644 --- a/styles/CwtchTextFieldStyle.qml +++ b/styles/CwtchTextFieldStyle.qml @@ -1,5 +1,6 @@ import QtQuick.Controls.Styles 1.4 import QtQuick 2.7 +import "../theme" TextFieldStyle { id: root @@ -9,7 +10,7 @@ TextFieldStyle { background: Rectangle { radius: 2 - color: windowItem.cwtch_background_color - border.color: windowItem.cwtch_color + color: Theme.backgroundPaneColor + border.color: Theme.defaultButtonActiveColor//?? } }