diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-10 17:19:53 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-07-11 07:36:25 +0200 |
commit | df1a00606a07378c32ad21d9650377f8546eddd7 (patch) | |
tree | 42eab4dad26064773a6ff98137098113ddc58077 | |
parent | 31f1c8741b63b65e8ee5c70d52bfde543c22f086 (diff) | |
download | kube-df1a00606a07378c32ad21d9650377f8546eddd7.tar.gz kube-df1a00606a07378c32ad21d9650377f8546eddd7.zip |
Dedicated color for a dark background instead of abusing textColor
-rw-r--r-- | framework/qml/Colors.qml | 1 | ||||
-rw-r--r-- | views/conversation/qml/View.qml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/framework/qml/Colors.qml b/framework/qml/Colors.qml index 271d3564..dc942871 100644 --- a/framework/qml/Colors.qml +++ b/framework/qml/Colors.qml | |||
@@ -41,6 +41,7 @@ Item { | |||
41 | property string textColor: charcoalGrey | 41 | property string textColor: charcoalGrey |
42 | property string disabledTextColor: coastalFog | 42 | property string disabledTextColor: coastalFog |
43 | property string backgroundColor: cardboardGrey | 43 | property string backgroundColor: cardboardGrey |
44 | property string darkBackgroundColor: charcoalGrey | ||
44 | property string viewBackgroundColor: paperWhite | 45 | property string viewBackgroundColor: paperWhite |
45 | property string highlightColor: plasmaBlue | 46 | property string highlightColor: plasmaBlue |
46 | property string highlightedTextColor: paperWhite | 47 | property string highlightedTextColor: paperWhite |
diff --git a/views/conversation/qml/View.qml b/views/conversation/qml/View.qml index 33f4868f..82ca2af3 100644 --- a/views/conversation/qml/View.qml +++ b/views/conversation/qml/View.qml | |||
@@ -76,7 +76,7 @@ FocusScope { | |||
76 | Rectangle { | 76 | Rectangle { |
77 | width: Kube.Units.gridUnit * 10 | 77 | width: Kube.Units.gridUnit * 10 |
78 | Layout.fillHeight: parent.height | 78 | Layout.fillHeight: parent.height |
79 | color: Kube.Colors.textColor | 79 | color: Kube.Colors.darkBackgroundColor |
80 | 80 | ||
81 | Kube.PositiveButton { | 81 | Kube.PositiveButton { |
82 | id: newMailButton | 82 | id: newMailButton |