27 lines
1.6 KiB
Plaintext
27 lines
1.6 KiB
Plaintext
|
|
pragma Singleton
|
||
|
|
import QtQuick
|
||
|
|
|
||
|
|
QtObject {
|
||
|
|
// --- The Backgrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base00: "#{{base00-hex}}" // Default Background
|
||
|
|
readonly property string base01: "#{{base01-hex}}" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#{{base02-hex}}" // Selection Background
|
||
|
|
readonly property string base03: "#{{base03-hex}}" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#{{base04-hex}}" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#{{base05-hex}}" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#{{base06-hex}}" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#{{base07-hex}}" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#{{base08-hex}}" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#{{base09-hex}}" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#{{base0A-hex}}" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#{{base0B-hex}}" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#{{base0C-hex}}" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#{{base0D-hex}}" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#{{base0E-hex}}" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#{{base0F-hex}}" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|