18 lines
523 B
QML
18 lines
523 B
QML
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: "#00000000"
|
|
readonly property color darkGrey: "#939BA1"
|
|
readonly property color lightBlueText: "#8f9fec"
|
|
readonly property color darkBlue: "#3c55c9"
|
|
readonly property color darkBlueBtn: "#5a70dd"
|
|
|
|
readonly property int padding: 16
|
|
readonly property int smallPadding: 10
|
|
}
|