pragma Singleton import QtQuick QtObject { // --- The Backgrounds (Darkest to Lightest) --- readonly property string base00: "#271c3a" // Default Background readonly property string base01: "#100323" // Lighter Background (Status bars, panels) readonly property string base02: "#3e2d5c" // Selection Background readonly property string base03: "#5d5766" // Comments, Invisibles, line highlighting // --- The Foregrounds (Darkest to Lightest) --- readonly property string base04: "#bebcbf" // Dark Foreground (Used for status bars) readonly property string base05: "#dedcdf" // Default Foreground, Caret readonly property string base06: "#edeaef" // Light Foreground (Rarely used) readonly property string base07: "#bbaadd" // Lightest Foreground // --- The Accent Colors --- readonly property string base08: "#a92258" // Red (Variables, errors) readonly property string base09: "#918889" // Orange (Integers, booleans, constants) readonly property string base0A: "#804ead" // Yellow (Classes, search text bg, warnings) readonly property string base0B: "#c6914b" // Green (Strings, success states) readonly property string base0C: "#7263aa" // Cyan (Support, regex, escape chars) readonly property string base0D: "#8e7dc6" // Blue (Functions, methods, headings) readonly property string base0E: "#953b9d" // Purple/Mauve (Keywords, storage, selectors) readonly property string base0F: "#59325c" // Brown/Flamingo (Deprecated, embedded tags) }