aboutsummaryrefslogtreecommitdiff
path: root/components/Style.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2017-12-07 17:33:46 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:01 +0100
commit868fbe2f2d19681c84c432b472e86328c7c6e61d (patch)
tree386d8186d5ce2a86223fadf0f33863b32a5a27b8 /components/Style.qml
parent22792df5cdafec98da0a6045ee7c0f81ebed5ce2 (diff)
downloadmonzero-gui-868fbe2f2d19681c84c432b472e86328c7c6e61d.tar.gz
monzero-gui-868fbe2f2d19681c84c432b472e86328c7c6e61d.tar.xz
monzero-gui-868fbe2f2d19681c84c432b472e86328c7c6e61d.zip
Move default font color to Style.qml
Diffstat (limited to 'components/Style.qml')
-rw-r--r--components/Style.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/components/Style.qml b/components/Style.qml
index 2cab3cfe..b7077095 100644
--- a/components/Style.qml
+++ b/components/Style.qml
@@ -8,6 +8,7 @@ QtObject {
property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/SFUIDisplay-Light.otf"; }
property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/SFUIDisplay-Regular.otf"; }
+ property string defaultFontColor: "white"
property string inputBoxBackground: "black"
property string inputBoxBackgroundError: "#FFDDDD"
property string inputBoxColor: "white"
@@ -15,4 +16,6 @@ QtObject {
property string buttonBackgroundColorDisabled: "#3B3B3B"
property string buttonTextColor: "white"
property string buttonTextColorDisabled: "black"
+ property string dividerColor: "white"
+ property real dividerOpacity: 0.25
}