diff options
| author | selsta <selsta@sent.at> | 2019-04-05 18:49:37 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-04-08 20:40:35 +0200 |
| commit | 1e6e9289950f2d4a6c22d51b916adc6d0fef49d8 (patch) | |
| tree | 0822db37883845108175529b33d4fcba33b20d18 /components/Style.qml | |
| parent | 723ad8c8ae06fa6001b8081b97dbf0d27f3381f3 (diff) | |
| download | monzero-gui-1e6e9289950f2d4a6c22d51b916adc6d0fef49d8.tar.gz monzero-gui-1e6e9289950f2d4a6c22d51b916adc6d0fef49d8.tar.xz monzero-gui-1e6e9289950f2d4a6c22d51b916adc6d0fef49d8.zip | |
AddressBook: redesign
Diffstat (limited to 'components/Style.qml')
| -rw-r--r-- | components/Style.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/Style.qml b/components/Style.qml index cc106239..8555cb5e 100644 --- a/components/Style.qml +++ b/components/Style.qml @@ -8,6 +8,11 @@ QtObject { property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/Roboto-Light.ttf"; } property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/Roboto-Regular.ttf"; } + property QtObject fontMonoMedium: FontLoader { id: _fontMonoMedium; source: "qrc:/fonts/RobotoMono-Medium.ttf"; } + property QtObject fontMonoBold: FontLoader { id: _fontMonoBold; source: "qrc:/fonts/RobotoMono-Bold.ttf"; } + property QtObject fontMonoLight: FontLoader { id: _fontMonoLight; source: "qrc:/fonts/RobotoMono-Light.ttf"; } + property QtObject fontMonoRegular: FontLoader { id: _fontMonoRegular; source: "qrc:/fonts/RobotoMono-Regular.ttf"; } + property string grey: "#404040" property string orange: "#FF6C3C" property string white: "#FFFFFF" @@ -17,6 +22,7 @@ QtObject { property string defaultFontColor: "white" property string dimmedFontColor: "#BBBBBB" property string lightGreyFontColor: "#DFDFDF" + property string greyFontColor: "#808080" property string warningColor: "#963E00" property string errorColor: "#FA6800" property string inputBoxBackground: "black" |
