15 lines
369 B
QML
15 lines
369 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: "#ffffff"
|
|
readonly property color darkGrey: "#939BA1"
|
|
|
|
readonly property int padding: 16
|
|
readonly property int smallPadding: 10
|
|
}
|