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: "#231e18" // Default Background
|
||
|
|
readonly property string base01: "#302b25" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#48413a" // Selection Background
|
||
|
|
readonly property string base03: "#9d8b70" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#b4a490" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#cabcb1" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#d7c8bc" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#e4d4c8" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#d35c5c" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#ca7f32" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#e0ac16" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#b7ba53" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#6eb958" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#88a4d3" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#bb90e2" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#b49368" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|