mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
16 lines
422 B
QML
16 lines
422 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 color lightBlueText: "#8f9fec"
|
|
|
|
readonly property int padding: 16
|
|
readonly property int smallPadding: 10
|
|
}
|