Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/theme
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-10-21 14:46:51 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-10-21 14:46:51 +0300
commitc6c2d4cf4c888bed8500468fdc3d99c0220b2ae4 (patch)
tree8addfa08ad8f12da345a88cbea31f23498a8417f /theme
parenta2e3f9d63a574fae661b96fc815cf3855c1762d9 (diff)
Use the Theme colors for the header part of the window
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'theme')
-rw-r--r--theme/Style/Style.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/theme/Style/Style.qml b/theme/Style/Style.qml
index 039a77cb9..7a0679188 100644
--- a/theme/Style/Style.qml
+++ b/theme/Style/Style.qml
@@ -3,10 +3,12 @@ pragma Singleton
// Minimum for this is Qt 5.5
import QtQuick 2.5
+import com.nextcloud.desktopclient 1.0
+
QtObject {
// Colors
- property color ncBlue: "#0082c9"
- property color ncTextColor: "white"
+ property color ncBlue: Theme.wizardHeaderBackgroundColor
+ property color ncTextColor: Theme.wizardHeaderTitleColor
property color lightHover: "#f7f7f7"
property color menuBorder: "#bdbdbd"