2020-05-11 19:53:44 +00:00
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
import QtQuick 2.8
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
readonly property color grey: "#EEF2F5"
|
|
|
|
readonly property color lightBlue: "#ECEFFC"
|
|
|
|
readonly property color blue: "#4360DF"
|
|
|
|
readonly property color transparent: "#ffffff"
|
|
|
|
readonly property color darkGrey: "#939BA1"
|
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-11 19:53:44 +00:00
|
|
|
}
|