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: "#1c1e26" // Default Background
|
|
readonly property string base01: "#232530" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#2e303e" // Selection Background
|
|
readonly property string base03: "#6f6f70" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#9da0a2" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#cbced0" // Default Foreground, Caret
|
|
readonly property string base06: "#dcdfe4" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#e3e6ee" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#e93c58" // Red (Variables, errors)
|
|
readonly property string base09: "#e58d7d" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#efb993" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#efaf8e" // Green (Strings, success states)
|
|
readonly property string base0C: "#24a8b4" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#df5273" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#b072d1" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#e4a382" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|