pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#262626" // Default Background readonly property string base01: "#af5f5f" // Lighter Background (Status bars, panels) readonly property string base02: "#5f875f" // Selection Background readonly property string base03: "#87875f" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#5f87af" // Dark Foreground (Used for status bars) readonly property string base05: "#5f5f87" // Default Foreground, Caret readonly property string base06: "#5f8787" // Light Foreground (Rarely used) readonly property string base07: "#6c6c6c" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#444444" // Red (Variables, errors) readonly property string base09: "#ff8700" // Orange (Integers, booleans, constants) readonly property string base0A: "#87af87" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#ffffaf" // Green (Strings, success states) readonly property string base0C: "#87afd7" // Cyan (Support, regex, escape chars) readonly property string base0D: "#8787af" // Blue (Functions, methods, headings) readonly property string base0E: "#5fafaf" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#bcbcbc" // Brown/Flamingo (Deprecated, embedded tags) }