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: "#282828" // Default Background
|
|
readonly property string base01: "#383838" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#484848" // Selection Background
|
|
readonly property string base03: "#4c4c4c" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#b8b8b8" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#eeeeee" // Default Foreground, Caret
|
|
readonly property string base06: "#e8e8e8" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#feffff" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#f43753" // Red (Variables, errors)
|
|
readonly property string base09: "#dc9656" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#ffc24b" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#c9d05c" // Green (Strings, success states)
|
|
readonly property string base0C: "#73cef4" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#b3deef" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#d3b987" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#a16946" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|