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 11:41:56 +01:00
|
|
|
readonly property string base00: "#1d1f21" // Default Background
|
|
|
|
|
readonly property string base01: "#282a2e" // Lighter Background (Status bars, panels)
|
|
|
|
|
readonly property string base02: "#373b41" // Selection Background
|
|
|
|
|
readonly property string base03: "#969896" // Comments, Invisibles, line highlighting
|
2026-03-19 11:32:23 +01:00
|
|
|
|
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
2026-03-20 11:41:56 +01:00
|
|
|
readonly property string base04: "#b4b7b4" // Dark Foreground (Used for status bars)
|
|
|
|
|
readonly property string base05: "#c5c8c6" // Default Foreground, Caret
|
|
|
|
|
readonly property string base06: "#e0e0e0" // Light Foreground (Rarely used)
|
|
|
|
|
readonly property string base07: "#ffffff" // Lightest Foreground
|
2026-03-19 11:32:23 +01:00
|
|
|
|
|
|
|
|
// --- The Accent Colors ---
|
2026-03-20 11:41:56 +01:00
|
|
|
readonly property string base08: "#cc6666" // Red (Variables, errors)
|
|
|
|
|
readonly property string base09: "#de935f" // Orange (Integers, booleans, constants)
|
|
|
|
|
readonly property string base0A: "#f0c674" // Yellow (Classes, search text bg, warnings)
|
|
|
|
|
readonly property string base0B: "#b5bd68" // Green (Strings, success states)
|
|
|
|
|
readonly property string base0C: "#8abeb7" // Cyan (Support, regex, escape chars)
|
|
|
|
|
readonly property string base0D: "#81a2be" // Blue (Functions, methods, headings)
|
|
|
|
|
readonly property string base0E: "#b294bb" // Purple/Mauve (Keywords, storage, selectors)
|
|
|
|
|
readonly property string base0F: "#a3685a" // Brown/Flamingo (Deprecated, embedded tags)
|
2026-03-11 14:14:04 +01:00
|
|
|
}
|