pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#262427" // Default Background readonly property string base01: "#3b393c" // Lighter Background (Status bars, panels) readonly property string base02: "#514f52" // Selection Background readonly property string base03: "#676567" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#7c7b7d" // Dark Foreground (Used for status bars) readonly property string base05: "#fcfcfc" // Default Foreground, Caret readonly property string base06: "#eae9eb" // Light Foreground (Rarely used) readonly property string base07: "#fcfcfc" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#ff7272" // Red (Variables, errors) readonly property string base09: "#fc9d6f" // Orange (Integers, booleans, constants) readonly property string base0A: "#ffca58" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#bcdf59" // Green (Strings, success states) readonly property string base0C: "#aee8f4" // Cyan (Support, regex, escape chars) readonly property string base0D: "#49cae4" // Blue (Functions, methods, headings) readonly property string base0E: "#a093e2" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#ff8787" // Brown/Flamingo (Deprecated, embedded tags) }