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: "#141f2e" // Default Background
|
||
|
|
readonly property string base01: "#1e5c1e" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#273e5c" // Selection Background
|
||
|
|
readonly property string base03: "#a0ffa0" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#1e5c1e" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#ffcc33" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#91ccff" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#375780" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#fffab1" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#ff8080" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#91ccff" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#80ff80" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#80ff80" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#a2cff5" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#0099ff" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#e7e7e7" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|