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: "#100f0f" // Default Background
|
||
|
|
readonly property string base01: "#1c1b1a" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#282726" // Selection Background
|
||
|
|
readonly property string base03: "#575653" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#878580" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#cecdc3" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#e6e4d9" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#fffcf0" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#d14d41" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#da702c" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#d0a215" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#879a39" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#3aa99f" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#4385be" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#8b7ec8" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#ce5d97" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|