base16-quickshell/build/base16-jabuti.qml
2026-03-17 14:37:47 +01:00

27 lines
1.5 KiB
QML

pragma Singleton
import QtQuick
QtObject {
// --- The Backgrounds (Darkest to Lightest) ---
readonly property string base00: "#292a37" // Default Background
readonly property string base01: "#343545" // Lighter Background (Status bars, panels)
readonly property string base02: "#3c3e51" // Selection Background
readonly property string base03: "#45475d" // Comments, Invisibles, line highlighting
// --- The Foregrounds (Darkest to Lightest) ---
readonly property string base04: "#50526b" // Dark Foreground (Used for status bars)
readonly property string base05: "#c0cbe3" // Default Foreground, Caret
readonly property string base06: "#d9e0ee" // Light Foreground (Rarely used)
readonly property string base07: "#ffffff" // Lightest Foreground
// --- The Accent Colors ---
readonly property string base08: "#ec6a88" // Red (Variables, errors)
readonly property string base09: "#efb993" // Orange (Integers, booleans, constants)
readonly property string base0A: "#e1c697" // Yellow (Classes, search text bg, warnings)
readonly property string base0B: "#3fdaa4" // Green (Strings, success states)
readonly property string base0C: "#ff7eb6" // Cyan (Support, regex, escape chars)
readonly property string base0D: "#3fc6de" // Blue (Functions, methods, headings)
readonly property string base0E: "#be95ff" // Purple/Mauve (Keywords, storage, selectors)
readonly property string base0F: "#8b8da9" // Brown/Flamingo (Deprecated, embedded tags)
}