base16-quickshell/build/base16-precious-dark-eleven.qml

27 lines
1.5 KiB
QML
Raw Permalink Normal View History

2026-03-17 14:37:47 +01:00
pragma Singleton
import QtQuick
QtObject {
// --- The Backgrounds (Darkest to Lightest) ---
readonly property string base00: "#1c1e20" // Default Background
readonly property string base01: "#292b2d" // Lighter Background (Status bars, panels)
readonly property string base02: "#37393a" // Selection Background
readonly property string base03: "#858585" // Comments, Invisibles, line highlighting
// --- The Foregrounds (Darkest to Lightest) ---
readonly property string base04: "#a8a8a7" // Dark Foreground (Used for status bars)
readonly property string base05: "#b8b7b6" // Default Foreground, Caret
readonly property string base06: "#b8b7b6" // Light Foreground (Rarely used)
readonly property string base07: "#b8b7b6" // Lightest Foreground
// --- The Accent Colors ---
readonly property string base08: "#ff8782" // Red (Variables, errors)
readonly property string base09: "#ea9755" // Orange (Integers, booleans, constants)
readonly property string base0A: "#d0a543" // Yellow (Classes, search text bg, warnings)
readonly property string base0B: "#95b658" // Green (Strings, success states)
readonly property string base0C: "#42bda7" // Cyan (Support, regex, escape chars)
readonly property string base0D: "#68b0ee" // Blue (Functions, methods, headings)
readonly property string base0E: "#b799fe" // Purple/Mauve (Keywords, storage, selectors)
readonly property string base0F: "#f382d8" // Brown/Flamingo (Deprecated, embedded tags)
}