diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-08-05 19:22:59 +0200 |
|---|---|---|
| committer | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-08-05 20:56:32 +0200 |
| commit | eef3f8a3ac5a506a5a0d405ac253185ce6cdd270 (patch) | |
| tree | e785a25ccd7a16bc5367ff6b47682fa372c9345c | |
| parent | 2671cd926c4c86f7967439daceca211ddfaffde3 (diff) | |
| download | monzero-gui-eef3f8a3ac5a506a5a0d405ac253185ce6cdd270.tar.gz monzero-gui-eef3f8a3ac5a506a5a0d405ac253185ce6cdd270.tar.xz monzero-gui-eef3f8a3ac5a506a5a0d405ac253185ce6cdd270.zip | |
Lighten up the grey colors a bit
| -rw-r--r-- | components/HistoryTableInnerColumn.qml | 4 | ||||
| -rw-r--r-- | components/Style.qml | 1 | ||||
| -rw-r--r-- | pages/settings/SettingsNode.qml | 6 | ||||
| -rw-r--r-- | pages/settings/SettingsWallet.qml | 8 |
4 files changed, 9 insertions, 10 deletions
diff --git a/components/HistoryTableInnerColumn.qml b/components/HistoryTableInnerColumn.qml index 8a8acbe7..566c2466 100644 --- a/components/HistoryTableInnerColumn.qml +++ b/components/HistoryTableInnerColumn.qml @@ -53,7 +53,7 @@ Rectangle{ font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 14 * scaleRatio text: labelHeader - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor } Text { @@ -77,7 +77,7 @@ Rectangle{ label2.color = MoneroComponents.Style.defaultFontColor; } onExited: { - label1.color = MoneroComponents.Style.greyFontColor; + label1.color = MoneroComponents.Style.dimmedFontColor label2.color = MoneroComponents.Style.dimmedFontColor; } onClicked: { diff --git a/components/Style.qml b/components/Style.qml index 21a27f7c..bf0a5084 100644 --- a/components/Style.qml +++ b/components/Style.qml @@ -11,7 +11,6 @@ QtObject { property string grey: "#404040" property string defaultFontColor: "white" - property string greyFontColor: "#808080" property string dimmedFontColor: "#BBBBBB" property string inputBoxBackground: "black" property string inputBoxBackgroundError: "#FFDDDD" diff --git a/pages/settings/SettingsNode.qml b/pages/settings/SettingsNode.qml index 58eff891..0bc1f39b 100644 --- a/pages/settings/SettingsNode.qml +++ b/pages/settings/SettingsNode.qml @@ -92,7 +92,7 @@ Rectangle{ anchors.topMargin: 2 * scaleRatio anchors.left: localNodeIcon.right anchors.leftMargin: 14 * scaleRatio - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 * scaleRatio horizontalAlignment: TextInput.AlignLeft @@ -191,7 +191,7 @@ Rectangle{ anchors.topMargin: 2 * scaleRatio anchors.left: remoteNodeIcon.right anchors.leftMargin: 14 * scaleRatio - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 * scaleRatio activeFocusOnPress: false @@ -244,7 +244,7 @@ Rectangle{ visible: !isMobile && persistentSettings.useRemoteNode TextArea { - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 15 * scaleRatio horizontalAlignment: TextInput.AlignLeft diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 6536d7c7..242decb2 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -54,7 +54,7 @@ Rectangle { TextArea { Layout.fillWidth: true - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 14 * scaleRatio horizontalAlignment: TextInput.AlignLeft @@ -145,7 +145,7 @@ Rectangle { TextArea { Layout.fillWidth: true - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 14 * scaleRatio horizontalAlignment: TextInput.AlignLeft @@ -236,7 +236,7 @@ Rectangle { TextArea { Layout.fillWidth: true - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 14 * scaleRatio horizontalAlignment: TextInput.AlignLeft @@ -325,7 +325,7 @@ Rectangle { TextArea { Layout.fillWidth: true - color: MoneroComponents.Style.greyFontColor + color: MoneroComponents.Style.dimmedFontColor font.family: MoneroComponents.Style.fontRegular.name font.pixelSize: 14 * scaleRatio horizontalAlignment: TextInput.AlignLeft |
