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: "#cabda0" // Default Background
|
|
readonly property string base01: "#bcad8c" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#af9f7d" // Selection Background
|
|
readonly property string base03: "#645538" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#110e06" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#382e1b" // Default Foreground, Caret
|
|
readonly property string base06: "#4b3e26" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#bcad8c" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#382e1b" // Red (Variables, errors)
|
|
readonly property string base09: "#110e06" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#110e06" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#110e06" // Green (Strings, success states)
|
|
readonly property string base0C: "#110e06" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#251e0f" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#382e1b" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#4b3e26" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|