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: "#0c0c0c" // Default Background
|
|
readonly property string base01: "#2f2f2f" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#535353" // Selection Background
|
|
readonly property string base03: "#767676" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#b9b9b9" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#cccccc" // Default Foreground, Caret
|
|
readonly property string base06: "#dfdfdf" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#f2f2f2" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#e74856" // Red (Variables, errors)
|
|
readonly property string base09: "#c19c00" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#f9f1a5" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#16c60c" // Green (Strings, success states)
|
|
readonly property string base0C: "#61d6d6" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#3b78ff" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#b4009e" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#13a10e" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|