pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#292a44" // Default Background readonly property string base01: "#663399" // Lighter Background (Status bars, panels) readonly property string base02: "#383a62" // Selection Background readonly property string base03: "#666699" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#a0a0c5" // Dark Foreground (Used for status bars) readonly property string base05: "#f1eff8" // Default Foreground, Caret readonly property string base06: "#ccccff" // Light Foreground (Rarely used) readonly property string base07: "#53495d" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#a0a0c5" // Red (Variables, errors) readonly property string base09: "#efe4a1" // Orange (Integers, booleans, constants) readonly property string base0A: "#ae81ff" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#6dfedf" // Green (Strings, success states) readonly property string base0C: "#8eaee0" // Cyan (Support, regex, escape chars) readonly property string base0D: "#2de0a7" // Blue (Functions, methods, headings) readonly property string base0E: "#7aa5ff" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#ff79c6" // Brown/Flamingo (Deprecated, embedded tags) }