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: "#1e1e3f" // Default Background
|
|
readonly property string base01: "#43d426" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#f1d000" // Selection Background
|
|
readonly property string base03: "#808080" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#6871ff" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#c7c7c7" // Default Foreground, Caret
|
|
readonly property string base06: "#ff77ff" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#ffffff" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#d90429" // Red (Variables, errors)
|
|
readonly property string base09: "#f92a1c" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#ffe700" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#3ad900" // Green (Strings, success states)
|
|
readonly property string base0C: "#00c5c7" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#6943ff" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#ff2c70" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#79e8fb" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|