pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#131213" // Default Background readonly property string base01: "#2f1823" // Lighter Background (Status bars, panels) readonly property string base02: "#472234" // Selection Background readonly property string base03: "#ffbee3" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#9b2a46" // Dark Foreground (Used for status bars) readonly property string base05: "#f15c99" // Default Foreground, Caret readonly property string base06: "#81506a" // Light Foreground (Rarely used) readonly property string base07: "#632227" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#b00b69" // Red (Variables, errors) readonly property string base09: "#ff9153" // Orange (Integers, booleans, constants) readonly property string base0A: "#ffcc00" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#9ddf69" // Green (Strings, success states) readonly property string base0C: "#714ca6" // Cyan (Support, regex, escape chars) readonly property string base0D: "#008080" // Blue (Functions, methods, headings) readonly property string base0E: "#a24030" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#a24030" // Brown/Flamingo (Deprecated, embedded tags) }