2017-11-16 23:05:14 +02:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.5
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
property QtObject fontMedium: FontLoader { id: _fontMedium; source: "qrc:/fonts/SFUIDisplay-Medium.otf"; }
|
|
|
|
property QtObject fontBold: FontLoader { id: _fontBold; source: "qrc:/fonts/SFUIDisplay-Bold.otf"; }
|
|
|
|
property QtObject fontLight: FontLoader { id: _fontLight; source: "qrc:/fonts/SFUIDisplay-Light.otf"; }
|
|
|
|
property QtObject fontRegular: FontLoader { id: _fontRegular; source: "qrc:/fonts/SFUIDisplay-Regular.otf"; }
|
2017-11-19 22:14:05 +02:00
|
|
|
|
2017-12-27 01:53:21 +02:00
|
|
|
property string grey: "#404040"
|
|
|
|
|
2017-12-07 18:33:46 +02:00
|
|
|
property string defaultFontColor: "white"
|
2017-12-27 01:53:21 +02:00
|
|
|
property string greyFontColor: "#808080"
|
|
|
|
property string dimmedFontColor: "#BBBBBB"
|
2017-11-19 22:14:05 +02:00
|
|
|
property string inputBoxBackground: "black"
|
|
|
|
property string inputBoxBackgroundError: "#FFDDDD"
|
|
|
|
property string inputBoxColor: "white"
|
2018-03-27 22:32:39 +03:00
|
|
|
property string legacy_placeholderFontColor: "#BABABA"
|
2018-04-30 01:52:48 +03: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 19:19:30 +02:00
|
|
|
|
2017-12-06 01:53:40 +02:00
|
|
|
property string buttonBackgroundColor: "#FA6800"
|
2017-12-07 19:19:30 +02:00
|
|
|
property string buttonBackgroundColorHover: "#E65E00"
|
2017-12-08 02:51:22 +02:00
|
|
|
property string buttonBackgroundColorDisabled: "#707070"
|
|
|
|
property string buttonBackgroundColorDisabledHover: "#808080"
|
2017-12-06 01:53:40 +02:00
|
|
|
property string buttonTextColor: "white"
|
|
|
|
property string buttonTextColorDisabled: "black"
|
2017-12-07 18:33:46 +02:00
|
|
|
property string dividerColor: "white"
|
2018-04-27 20:49:45 +03:00
|
|
|
property real dividerOpacity: 0.20
|
2017-11-16 23:05:14 +02:00
|
|
|
}
|