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: "#e9f1ef" // Default Background
|
||
|
|
readonly property string base01: "#ccd4d3" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#90b7b6" // Selection Background
|
||
|
|
readonly property string base03: "#5c787b" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#4b5b5f" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#385156" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#0e3c46" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#d2faff" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#cf432e" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#d27f46" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#cfad25" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#6ca38c" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#329ca2" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#39aac9" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#6e6582" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#865369" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|