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-07-02 15:14:31 +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-26 01:23:38 +00:00
|
|
|
|
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"
|
2020-08-05 12:38:45 +00:00
|
|
|
readonly property color cyan: "#00FFFF"
|
2020-05-11 19:53:44 +00:00
|
|
|
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-11-17 19:01:50 +00:00
|
|
|
readonly property color darkerGrey: "#717171"
|
|
|
|
readonly property color evenDarkerGrey: "#4C4C4C"
|
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-06-29 22:02:19 +00:00
|
|
|
readonly property color lightRed: "#FFEAEE"
|
|
|
|
readonly property color green: "#4EBC60"
|
2020-08-05 12:38:45 +00:00
|
|
|
readonly property color turquoise: "#007b7d"
|
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
|
|
|
}
|