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: "#fafafa" // Default Background
|
|
readonly property string base01: "#e3e5e8" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#acb1b9" // Selection Background
|
|
readonly property string base03: "#9197a1" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#5e646f" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#474752" // Default Foreground, Caret
|
|
readonly property string base06: "#3a3a46" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#2e2e38" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#db7070" // Red (Variables, errors)
|
|
readonly property string base09: "#eba31a" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#ebcc1a" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#7c9f4b" // Green (Strings, success states)
|
|
readonly property string base0C: "#509c93" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#6587bf" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#b870ce" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#509c93" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|