27 lines
1.5 KiB
QML
27 lines
1.5 KiB
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
// --- The Backgrounds (Darkest to Lightest) ---
|
|
readonly property string base00: "#100510" // Default Background
|
|
readonly property string base01: "#302030" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#403040" // Selection Background
|
|
readonly property string base03: "#605060" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#bbb0bb" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#ddd0dd" // Default Foreground, Caret
|
|
readonly property string base06: "#eee0ee" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#fff0ff" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#ff1d0d" // Red (Variables, errors)
|
|
readonly property string base09: "#ccae14" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#f000a0" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#14cc64" // Green (Strings, success states)
|
|
readonly property string base0C: "#0075b0" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#00a0f0" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#b000d0" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#6a2a3c" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|