pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#241d1a" // Default Background readonly property string base01: "#362b27" // Lighter Background (Status bars, panels) readonly property string base02: "#473933" // Selection Background readonly property string base03: "#594740" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#a78e84" // Dark Foreground (Used for status bars) readonly property string base05: "#b8a59d" // Default Foreground, Caret readonly property string base06: "#cabbb5" // Light Foreground (Rarely used) readonly property string base07: "#dcd2ce" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#f6998f" // Red (Variables, errors) readonly property string base09: "#ffa888" // Orange (Integers, booleans, constants) readonly property string base0A: "#ffc37a" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#b6c68a" // Green (Strings, success states) readonly property string base0C: "#c0bcdb" // Cyan (Support, regex, escape chars) readonly property string base0D: "#b0a4c3" // Blue (Functions, methods, headings) readonly property string base0E: "#d8a2b0" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#f1ae97" // Brown/Flamingo (Deprecated, embedded tags) }