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: "#1e2a24" // Default Background
|
||
|
|
readonly property string base01: "#2a3b32" // Lighter Background (Status bars, panels)
|
||
|
|
readonly property string base02: "#364c40" // Selection Background
|
||
|
|
readonly property string base03: "#5f7368" // Comments, Invisibles, line highlighting
|
||
|
|
|
||
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
||
|
|
readonly property string base04: "#8a9a91" // Dark Foreground (Used for status bars)
|
||
|
|
readonly property string base05: "#a7b8af" // Default Foreground, Caret
|
||
|
|
readonly property string base06: "#c1cdc7" // Light Foreground (Rarely used)
|
||
|
|
readonly property string base07: "#dbe3de" // Lightest Foreground
|
||
|
|
|
||
|
|
// --- The Accent Colors ---
|
||
|
|
readonly property string base08: "#c60c30" // Red (Variables, errors)
|
||
|
|
readonly property string base09: "#f9461c" // Orange (Integers, booleans, constants)
|
||
|
|
readonly property string base0A: "#f9e300" // Yellow (Classes, search text bg, warnings)
|
||
|
|
readonly property string base0B: "#009b3a" // Green (Strings, success states)
|
||
|
|
readonly property string base0C: "#00a1de" // Cyan (Support, regex, escape chars)
|
||
|
|
readonly property string base0D: "#522398" // Blue (Functions, methods, headings)
|
||
|
|
readonly property string base0E: "#e27ea6" // Purple/Mauve (Keywords, storage, selectors)
|
||
|
|
readonly property string base0F: "#62361b" // Brown/Flamingo (Deprecated, embedded tags)
|
||
|
|
}
|