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: "#f1ecf1" // Default Background
|
|
readonly property string base01: "#e0dee0" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#d8d5d5" // Selection Background
|
|
readonly property string base03: "#b5b4b6" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#979598" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#515151" // Default Foreground, Caret
|
|
readonly property string base06: "#474545" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#2d2c2c" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#fe3e31" // Red (Variables, errors)
|
|
readonly property string base09: "#fe6d08" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#f7e203" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#47f74c" // Green (Strings, success states)
|
|
readonly property string base0C: "#0f9cfd" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#2931df" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#611fce" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#b16f40" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|