From 3803ce418f79684e882c35f2919afaec3e60c932 Mon Sep 17 00:00:00 2001 From: erinn Date: Tue, 19 May 2020 16:28:44 -0700 Subject: [PATCH] updating styles to use theme colours --- styles/CwtchTextAreaStyle.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/styles/CwtchTextAreaStyle.qml b/styles/CwtchTextAreaStyle.qml index 4e0e584..f239b03 100644 --- a/styles/CwtchTextAreaStyle.qml +++ b/styles/CwtchTextAreaStyle.qml @@ -1,8 +1,8 @@ import QtQuick.Controls.Styles 1.4 import QtQuick 2.7 - +import "theme" TextAreaStyle { textColor: "black" - backgroundColor: windowItem.cwtch_background_color + backgroundColor: Theme.backgroundPaneColor }