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: "#232c31" // Default Background
|
|
readonly property string base01: "#1c3657" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#2a343a" // Selection Background
|
|
readonly property string base03: "#3f4944" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#84898c" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#9ea7a6" // Default Foreground, Caret
|
|
readonly property string base06: "#a7cfa3" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#b5d8f6" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#2a5491" // Red (Variables, errors)
|
|
readonly property string base09: "#43820d" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#a03b1e" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#237986" // Green (Strings, success states)
|
|
readonly property string base0C: "#b02f30" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#484d79" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#c59820" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#c98344" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|