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