add thing

This commit is contained in:
lucy 2026-03-17 14:05:44 +01:00
commit 8c5604b51d
2 changed files with 29 additions and 0 deletions

3
templates/config.yaml Normal file
View File

@ -0,0 +1,3 @@
default:
extension: ".qml"
output: "build"

View File

@ -0,0 +1,26 @@
pragma Singleton
import QtQuick
QtObject {
// --- The Backgrounds (Darkest to Lightest) ---
readonly property string base00: "#{{base00-hex}}" // Default Background
readonly property string base01: "#{{base01-hex}}" // Lighter Background (Status bars, panels)
readonly property string base02: "#{{base02-hex}}" // Selection Background
readonly property string base03: "#{{base03-hex}}" // Comments, Invisibles, line highlighting
// --- The Foregrounds (Darkest to Lightest) ---
readonly property string base04: "#{{base04-hex}}" // Dark Foreground (Used for status bars)
readonly property string base05: "#{{base05-hex}}" // Default Foreground, Caret
readonly property string base06: "#{{base06-hex}}" // Light Foreground (Rarely used)
readonly property string base07: "#{{base07-hex}}" // Lightest Foreground
// --- The Accent Colors ---
readonly property string base08: "#{{base08-hex}}" // Red (Variables, errors)
readonly property string base09: "#{{base09-hex}}" // Orange (Integers, booleans, constants)
readonly property string base0A: "#{{base0A-hex}}" // Yellow (Classes, search text bg, warnings)
readonly property string base0B: "#{{base0B-hex}}" // Green (Strings, success states)
readonly property string base0C: "#{{base0C-hex}}" // Cyan (Support, regex, escape chars)
readonly property string base0D: "#{{base0D-hex}}" // Blue (Functions, methods, headings)
readonly property string base0E: "#{{base0E-hex}}" // Purple/Mauve (Keywords, storage, selectors)
readonly property string base0F: "#{{base0F-hex}}" // Brown/Flamingo (Deprecated, embedded tags)
}