2017-11-16 21:05:14 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.5
|
|
|
|
|
|
|
|
QtObject {
|
2018-06-21 16:29:31 +00:00
|
|
|
property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/Roboto-Medium.ttf"; }
|
|
|
|
property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/Roboto-Bold.ttf"; }
|
|
|
|
property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/Roboto-Light.ttf"; }
|
|
|
|
property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/Roboto-Regular.ttf"; }
|
2017-11-19 20:14:05 +00:00
|
|
|
|
2019-04-05 16:49:37 +00:00
|
|
|
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"; }
|
|
|
|
|
2017-12-26 23:53:21 +00:00
|
|
|
property string grey: "#404040"
|
2018-12-03 22:54:44 +00:00
|
|
|
property string orange: "#FF6C3C"
|
|
|
|
property string white: "#FFFFFF"
|
|
|
|
property string green: "#2EB358"
|
2018-12-08 15:55:29 +00:00
|
|
|
property string moneroGrey: "#4C4C4C"
|
2017-12-26 23:53:21 +00:00
|
|
|
|
2017-12-07 16:33:46 +00:00
|
|
|
property string defaultFontColor: "white"
|
2017-12-26 23:53:21 +00:00
|
|
|
property string dimmedFontColor: "#BBBBBB"
|
2019-01-14 00:02:44 +00:00
|
|
|
property string lightGreyFontColor: "#DFDFDF"
|
2019-04-05 16:49:37 +00:00
|
|
|
property string greyFontColor: "#808080"
|
2019-03-27 08:28:42 +00:00
|
|
|
property string warningColor: "#963E00"
|
2018-10-24 03:50:56 +00:00
|
|
|
property string errorColor: "#FA6800"
|
2017-11-19 20:14:05 +00:00
|
|
|
property string inputBoxBackground: "black"
|
|
|
|
property string inputBoxBackgroundError: "#FFDDDD"
|
|
|
|
property string inputBoxColor: "white"
|
2018-03-27 19:32:39 +00:00
|
|
|
property string legacy_placeholderFontColor: "#BABABA"
|
2018-04-29 22:52:48 +00:00
|
|
|
property string inputBorderColorActive: Qt.rgba(255, 255, 255, 0.38)
|
|
|
|
property string inputBorderColorInActive: Qt.rgba(255, 255, 255, 0.32)
|
|
|
|
property string inputBorderColorInvalid: Qt.rgba(255, 0, 0, 0.40)
|
2017-12-07 17:19:30 +00:00
|
|
|
|
2017-12-05 23:53:40 +00:00
|
|
|
property string buttonBackgroundColor: "#FA6800"
|
2017-12-07 17:19:30 +00:00
|
|
|
property string buttonBackgroundColorHover: "#E65E00"
|
2017-12-08 00:51:22 +00:00
|
|
|
property string buttonBackgroundColorDisabled: "#707070"
|
|
|
|
property string buttonBackgroundColorDisabledHover: "#808080"
|
2017-12-05 23:53:40 +00:00
|
|
|
property string buttonTextColor: "white"
|
|
|
|
property string buttonTextColorDisabled: "black"
|
2017-12-07 16:33:46 +00:00
|
|
|
property string dividerColor: "white"
|
2018-04-27 17:49:45 +00:00
|
|
|
property real dividerOpacity: 0.20
|
2017-11-16 21:05:14 +00:00
|
|
|
}
|