pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#1a1a2f" // Default Background readonly property string base01: "#202030" // Lighter Background (Status bars, panels) readonly property string base02: "#2a2a3f" // Selection Background readonly property string base03: "#313140" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#515155" // Dark Foreground (Used for status bars) readonly property string base05: "#818175" // Default Foreground, Caret readonly property string base06: "#fff2d1" // Light Foreground (Rarely used) readonly property string base07: "#fff8e1" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#ff662a" // Red (Variables, errors) readonly property string base09: "#ff773a" // Orange (Integers, booleans, constants) readonly property string base0A: "#ffd15e" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#8cd97c" // Green (Strings, success states) readonly property string base0C: "#4cad83" // Cyan (Support, regex, escape chars) readonly property string base0D: "#2b926f" // Blue (Functions, methods, headings) readonly property string base0E: "#1b825f" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#b4d97c" // Brown/Flamingo (Deprecated, embedded tags) }