2026-03-11 14:14:04 +01:00
|
|
|
pragma Singleton
|
|
|
|
|
import QtQuick
|
|
|
|
|
|
2026-03-19 11:32:23 +01:00
|
|
|
QtObject {
|
|
|
|
|
// --- The Backgrounds (Darkest to Lightest) ---
|
2026-03-20 10:34:10 +01:00
|
|
|
readonly property string base00: "#181616" // Default Background
|
|
|
|
|
readonly property string base01: "#282727" // Lighter Background (Status bars, panels)
|
|
|
|
|
readonly property string base02: "#393836" // Selection Background
|
|
|
|
|
readonly property string base03: "#625e5a" // Comments, Invisibles, line highlighting
|
2026-03-19 11:32:23 +01:00
|
|
|
|
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
2026-03-20 10:34:10 +01:00
|
|
|
readonly property string base04: "#737c73" // Dark Foreground (Used for status bars)
|
|
|
|
|
readonly property string base05: "#c5c9c5" // Default Foreground, Caret
|
|
|
|
|
readonly property string base06: "#c8c093" // Light Foreground (Rarely used)
|
|
|
|
|
readonly property string base07: "#c5c9c5" // Lightest Foreground
|
2026-03-19 11:32:23 +01:00
|
|
|
|
|
|
|
|
// --- The Accent Colors ---
|
2026-03-20 10:34:10 +01:00
|
|
|
readonly property string base08: "#c4746e" // Red (Variables, errors)
|
|
|
|
|
readonly property string base09: "#b6927b" // Orange (Integers, booleans, constants)
|
|
|
|
|
readonly property string base0A: "#c4b28a" // Yellow (Classes, search text bg, warnings)
|
|
|
|
|
readonly property string base0B: "#8a9a7b" // Green (Strings, success states)
|
|
|
|
|
readonly property string base0C: "#8ea4a2" // Cyan (Support, regex, escape chars)
|
|
|
|
|
readonly property string base0D: "#8ba4b0" // Blue (Functions, methods, headings)
|
|
|
|
|
readonly property string base0E: "#a292a3" // Purple/Mauve (Keywords, storage, selectors)
|
|
|
|
|
readonly property string base0F: "#b98d7b" // Brown/Flamingo (Deprecated, embedded tags)
|
2026-03-11 14:14:04 +01:00
|
|
|
}
|