Move default font color to Style.qml

This commit is contained in:
Sander Ferdinand
2017-12-07 17:33:46 +01:00
committed by moneromooo-monero
parent 22792df5cd
commit 868fbe2f2d
7 changed files with 17 additions and 24 deletions

View File

@@ -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
}