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: "#f5f7ff" // Default Background
|
|
readonly property string base01: "#dfe2f1" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#979db4" // Selection Background
|
|
readonly property string base03: "#898ea4" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#6b7394" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#5e6687" // Default Foreground, Caret
|
|
readonly property string base06: "#293256" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#202746" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#c94922" // Red (Variables, errors)
|
|
readonly property string base09: "#c76b29" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#c08b30" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#ac9739" // Green (Strings, success states)
|
|
readonly property string base0C: "#22a2c9" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#3d8fd1" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#6679cc" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#9c637a" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|