26 lines
1.1 KiB
QML
26 lines
1.1 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
property QtObject color: QtObject {
|
|
readonly property color transparent: 'transparent'
|
|
readonly property color paleGray: '#D7D8DB'
|
|
readonly property color lightGray: '#C1C2C5'
|
|
readonly property color mutedGray: '#878B91'
|
|
readonly property color charcoalGray: '#494B50'
|
|
readonly property color slateGray: '#2C2D30'
|
|
readonly property color onyxBlack: '#1C1D21'
|
|
readonly property color midnightBlack: '#0E0E11'
|
|
readonly property color goldenApricot: '#FBB26A'
|
|
readonly property color burntOrange: '#A85809'
|
|
readonly property color mutedBrown: '#84603D'
|
|
readonly property color richBrown: '#633303'
|
|
readonly property color deepBrown: '#402102'
|
|
readonly property color vibrantRed: '#EB5757'
|
|
readonly property color darkCharcoal: '#261E1A'
|
|
readonly property color sheerWhite: Qt.rgba(1, 1, 1, 0.12)
|
|
readonly property color translucentWhite: Qt.rgba(1, 1, 1, 0.08)
|
|
readonly property color barelyTranslucentWhite: Qt.rgba(1, 1, 1, 0.05)
|
|
}
|
|
}
|