2020-05-11 19:53:44 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.8
|
|
|
|
|
|
|
|
QtObject {
|
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-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-05-11 19:53:44 +00:00
|
|
|
}
|