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: "#282a36" // Default Background
|
|
readonly property string base01: "#363447" // Lighter Background (Status bars, panels)
|
|
readonly property string base02: "#44475a" // Selection Background
|
|
readonly property string base03: "#6272a4" // Comments, Invisibles, line highlighting
|
|
|
|
// --- The Foregrounds (Darkest to Lightest) ---
|
|
readonly property string base04: "#9ea8c7" // Dark Foreground (Used for status bars)
|
|
readonly property string base05: "#f8f8f2" // Default Foreground, Caret
|
|
readonly property string base06: "#f0f1f4" // Light Foreground (Rarely used)
|
|
readonly property string base07: "#ffffff" // Lightest Foreground
|
|
|
|
// --- The Accent Colors ---
|
|
readonly property string base08: "#ff5555" // Red (Variables, errors)
|
|
readonly property string base09: "#ffb86c" // Orange (Integers, booleans, constants)
|
|
readonly property string base0A: "#f1fa8c" // Yellow (Classes, search text bg, warnings)
|
|
readonly property string base0B: "#50fa7b" // Green (Strings, success states)
|
|
readonly property string base0C: "#8be9fd" // Cyan (Support, regex, escape chars)
|
|
readonly property string base0D: "#80bfff" // Blue (Functions, methods, headings)
|
|
readonly property string base0E: "#ff79c6" // Purple/Mauve (Keywords, storage, selectors)
|
|
readonly property string base0F: "#bd93f9" // Brown/Flamingo (Deprecated, embedded tags)
|
|
}
|