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: "#efefef" // Default Background
|
||
|
|
readonly property string base01: "#bebed2" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#9e9eaf" // Selection Background
|
||
|
|
readonly property string base03: "#7c7c98" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#505063" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#313145" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#22223a" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#1a1a2f" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#f43979" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#d22a8b" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#ff669b" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#0073a8" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#2155d6" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#471397" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#6916b6" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#8d17a5" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|