From eab342fadf950596c7c110ab54146452c3f88c54 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 10 May 2023 11:22:37 +0800 Subject: [PATCH] Add positive colour to Style.qml Signed-off-by: Claudio Cambra --- theme/Style/Style.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml index 7d2370b99..ba90ed2fc 100644 --- a/theme/Style/Style.qml +++ b/theme/Style/Style.qml @@ -17,6 +17,7 @@ QtObject { readonly property color menuBorder: Theme.darkMode ? Qt.lighter(backgroundColor, 2.5) : Qt.darker(backgroundColor, 1.5) readonly property color backgroundColor: Theme.systemPalette.base readonly property color buttonBackgroundColor: Theme.systemPalette.button + readonly property color positiveColor: Qt.rgba(0.38, 0.74, 0.38, 1) readonly property color currentUserHeaderColor: UserModel.currentUser ? UserModel.currentUser.headerColor : ncBlue readonly property color currentUserHeaderTextColor: UserModel.currentUser ? UserModel.currentUser.headerTextColor : ncHeaderTextColor