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: "#17191e" // Default Background
|
||
|
|
readonly property string base01: "#22262d" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#3c3f4c" // Selection Background
|
||
|
|
readonly property string base03: "#383a47" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#555e70" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#8b9cbe" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#b2bfd9" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#f4f4f7" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#ff29a8" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#85ffe0" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#f0ffaa" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#0badff" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#8265ff" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#00eaff" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#00f6d9" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#ff3d81" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|