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: "#f5f7fa" // Default Background
|
|
readonly property string base01: "#e8e9ed" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#a6afb8" // Selection Background
|
|
readonly property string base03: "#85939e" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#667581" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#586875" // Default Foreground, Caret
|
|
readonly property string base06: "#222e38" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#18262f" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#ef5253" // Red (Variables, errors)
|
|
readonly property string base09: "#e66b2b" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#e4b51c" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#7cc844" // Green (Strings, success states)
|
|
readonly property string base0C: "#52cbb0" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#33b5e1" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#a363d5" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#d73c9a" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|