pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#202124" // Default Background readonly property string base01: "#27292c" // Lighter Background (Status bars, panels) readonly property string base02: "#323639" // Selection Background readonly property string base03: "#44464d" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#676c71" // Dark Foreground (Used for status bars) readonly property string base05: "#80868b" // Default Foreground, Caret readonly property string base06: "#9e9e9e" // Light Foreground (Rarely used) readonly property string base07: "#ffffff" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#f44336" // Red (Variables, errors) readonly property string base09: "#ff9800" // Orange (Integers, booleans, constants) readonly property string base0A: "#ffeb3b" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#00e676" // Green (Strings, success states) readonly property string base0C: "#00bcd4" // Cyan (Support, regex, escape chars) readonly property string base0D: "#2196f3" // Blue (Functions, methods, headings) readonly property string base0E: "#673ab7" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#8d6e63" // Brown/Flamingo (Deprecated, embedded tags) }