19 lines
606 B
QML
19 lines
606 B
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
// Core palette
|
|
readonly property color bg: '#000000'
|
|
readonly property color accent: '#9B1A1A'
|
|
readonly property color border: '#FFFFFF'
|
|
readonly property color text: '#FFFFFF'
|
|
readonly property color textDim: '#888888'
|
|
readonly property color textDisabled: '#444444'
|
|
readonly property color progressTrack: '#333333'
|
|
|
|
// Shape / sizing
|
|
readonly property int radius: 4
|
|
readonly property int borderWidth: 2
|
|
readonly property int enclosureMargin: 3
|
|
}
|