2020-05-11 15:53:44 -04:00
|
|
|
pragma Singleton
|
|
|
|
|
2020-06-17 15:18:31 -04:00
|
|
|
import QtQuick 2.13
|
2020-05-11 15:53:44 -04:00
|
|
|
|
|
|
|
QtObject {
|
2020-06-19 14:06:58 -04: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-05-26 17:56:56 -04:00
|
|
|
readonly property color white: "#FFFFFF"
|
|
|
|
readonly property color white2: "#FCFCFC"
|
|
|
|
readonly property color black: "#000000"
|
2020-05-11 15:53:44 -04:00
|
|
|
readonly property color grey: "#EEF2F5"
|
|
|
|
readonly property color lightBlue: "#ECEFFC"
|
|
|
|
readonly property color blue: "#4360DF"
|
2020-05-13 15:41:16 -04:00
|
|
|
readonly property color transparent: "#00000000"
|
2020-05-11 15:53:44 -04:00
|
|
|
readonly property color darkGrey: "#939BA1"
|
2020-05-13 14:17:18 -04:00
|
|
|
readonly property color lightBlueText: "#8f9fec"
|
2020-05-13 15:41:16 -04:00
|
|
|
readonly property color darkBlue: "#3c55c9"
|
|
|
|
readonly property color darkBlueBtn: "#5a70dd"
|
2020-06-10 16:32:04 -04:00
|
|
|
readonly property color red: "#FF2D55"
|
2020-05-12 15:17:56 -04:00
|
|
|
|
2020-06-12 16:47:44 -04:00
|
|
|
readonly property int xlPadding: 32
|
2020-05-28 10:32:58 -04:00
|
|
|
readonly property int bigPadding: 24
|
2020-05-12 15:17:56 -04:00
|
|
|
readonly property int padding: 16
|
2020-05-12 15:43:30 -04:00
|
|
|
readonly property int smallPadding: 10
|
2020-05-27 15:53:36 -04:00
|
|
|
readonly property int radius: 8
|
2020-06-23 14:51:10 -04:00
|
|
|
|
|
|
|
readonly property int leftTabPrefferedSize: 340
|
|
|
|
readonly property int leftTabMinimumWidth: 300
|
|
|
|
readonly property int leftTabMaximumWidth: 500
|
2020-05-11 15:53:44 -04:00
|
|
|
}
|