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: "#28211c" // Default Background
|
|
readonly property string base01: "#36312e" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#5e5d5c" // Selection Background
|
|
readonly property string base03: "#666666" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#797977" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#8a8986" // Default Foreground, Caret
|
|
readonly property string base06: "#9d9b97" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#baae9e" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#cf6a4c" // Red (Variables, errors)
|
|
readonly property string base09: "#cf7d34" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#f9ee98" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#54be0d" // Green (Strings, success states)
|
|
readonly property string base0C: "#afc4db" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#5ea6ea" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#9b859d" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#937121" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|