pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#0a0920" // Default Background readonly property string base01: "#13133a" // Lighter Background (Status bars, panels) readonly property string base02: "#23255a" // Selection Background readonly property string base03: "#333773" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#4a5293" // Dark Foreground (Used for status bars) readonly property string base05: "#606bac" // Default Foreground, Caret readonly property string base06: "#7986c5" // Light Foreground (Rarely used) readonly property string base07: "#9aaae5" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#f768a3" // Red (Variables, errors) readonly property string base09: "#f78968" // Orange (Integers, booleans, constants) readonly property string base0A: "#f7d668" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#a2faa8" // Green (Strings, success states) readonly property string base0C: "#a2faf0" // Cyan (Support, regex, escape chars) readonly property string base0D: "#258fc4" // Blue (Functions, methods, headings) readonly property string base0E: "#c368f7" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#b85600" // Brown/Flamingo (Deprecated, embedded tags) }