27 lines
1.5 KiB
QML
27 lines
1.5 KiB
QML
pragma Singleton
|
|
import QtQuick
|
|
|
|
QtObject {
|
|
// --- The Backgrounds (Darkest to Lightest) ---
|
|
readonly property string base00: "#0e091d" // Default Background
|
|
readonly property string base01: "#2a153c" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#4b2054" // Selection Background
|
|
readonly property string base03: "#74316b" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#8c406f" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#aa556f" // Default Foreground, Caret
|
|
readonly property string base06: "#c4686d" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#dc8f7c" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#c53253" // Red (Variables, errors)
|
|
readonly property string base09: "#ea4d60" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#ff6565" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#a68e5a" // Green (Strings, success states)
|
|
readonly property string base0C: "#8c9785" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#6e6080" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#a45782" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#984d51" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|