base16-quickshell/build/base16-atelier-sulphurpool.qml

27 lines
1.5 KiB
QML
Raw 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: "#202746" // Default Background
readonly property string base01: "#293256" // Lighter Background (Status bars, panels)
readonly property string base02: "#5e6687" // Selection Background
readonly property string base03: "#6b7394" // Comments, Invisibles, line highlighting
// --- The Foregrounds (Darkest to Lightest) ---
readonly property string base04: "#898ea4" // Dark Foreground (Used for status bars)
readonly property string base05: "#979db4" // Default Foreground, Caret
readonly property string base06: "#dfe2f1" // Light Foreground (Rarely used)
readonly property string base07: "#f5f7ff" // 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)
}