2020-05-11 19:53:44 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
2020-05-11 19:53:44 +00:00
|
|
|
|
|
|
|
QtObject {
|
2020-06-19 18:06:58 +00:00
|
|
|
property QtObject fontMedium: FontLoader { id: _fontMedium; source: "../fonts/InterStatus/InterStatus-Medium.otf"; }
|
|
|
|
property QtObject fontBold: FontLoader { id: _fontBold; source: "../fonts/InterStatus/InterStatus-Bold.otf"; }
|
|
|
|
property QtObject fontLight: FontLoader { id: _fontLight; source: "../fonts/InterStatus/InterStatus-Light.otf"; }
|
|
|
|
property QtObject fontRegular: FontLoader { id: _fontRegular; source: "../fonts/InterStatus/InterStatus-Regular.otf"; }
|
2020-06-24 19:58:17 +00:00
|
|
|
property QtObject fontEmoji: FontLoader { id: _fontEmoji; source: "../fonts/TwitterEmoji.ttf"; }
|
2020-06-19 18:06:58 +00:00
|
|
|
|
2020-05-26 21:56:56 +00:00
|
|
|
readonly property color white: "#FFFFFF"
|
|
|
|
readonly property color white2: "#FCFCFC"
|
|
|
|
readonly property color black: "#000000"
|
2020-05-11 19:53:44 +00:00
|
|
|
readonly property color grey: "#EEF2F5"
|
|
|
|
readonly property color lightBlue: "#ECEFFC"
|
|
|
|
readonly property color blue: "#4360DF"
|
2020-05-13 19:41:16 +00:00
|
|
|
readonly property color transparent: "#00000000"
|
2020-05-11 19:53:44 +00:00
|
|
|
readonly property color darkGrey: "#939BA1"
|
2020-05-13 18:17:18 +00:00
|
|
|
readonly property color lightBlueText: "#8f9fec"
|
2020-05-13 19:41:16 +00:00
|
|
|
readonly property color darkBlue: "#3c55c9"
|
|
|
|
readonly property color darkBlueBtn: "#5a70dd"
|
2020-06-10 20:32:04 +00:00
|
|
|
readonly property color red: "#FF2D55"
|
2020-05-12 19:17:56 +00:00
|
|
|
|
2020-06-12 20:47:44 +00:00
|
|
|
readonly property int xlPadding: 32
|
2020-05-28 14:32:58 +00:00
|
|
|
readonly property int bigPadding: 24
|
2020-05-12 19:17:56 +00:00
|
|
|
readonly property int padding: 16
|
2020-05-12 19:43:30 +00:00
|
|
|
readonly property int smallPadding: 10
|
2020-05-27 19:53:36 +00:00
|
|
|
readonly property int radius: 8
|
2020-06-23 18:51:10 +00:00
|
|
|
|
|
|
|
readonly property int leftTabPrefferedSize: 340
|
|
|
|
readonly property int leftTabMinimumWidth: 300
|
|
|
|
readonly property int leftTabMaximumWidth: 500
|
2020-05-11 19:53:44 +00:00
|
|
|
}
|