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: "#e8f0ea" // Default Background
|
|
readonly property string base01: "#d1e0d7" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#b9d0c3" // Selection Background
|
|
readonly property string base03: "#8a9a91" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#4b5a51" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#364c40" // Default Foreground, Caret
|
|
readonly property string base06: "#2a3b32" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#1e2a24" // 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: "#968400" // 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)
|
|
}
|