From 8c5604b51d14bcf2e226adcda7c25775bde8e310 Mon Sep 17 00:00:00 2001 From: lucy Date: Tue, 17 Mar 2026 14:05:44 +0100 Subject: [PATCH] add thing --- templates/config.yaml | 3 +++ templates/default.mustache | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 templates/config.yaml create mode 100644 templates/default.mustache diff --git a/templates/config.yaml b/templates/config.yaml new file mode 100644 index 0000000..e44aae8 --- /dev/null +++ b/templates/config.yaml @@ -0,0 +1,3 @@ +default: + extension: ".qml" + output: "build" diff --git a/templates/default.mustache b/templates/default.mustache new file mode 100644 index 0000000..4b8550a --- /dev/null +++ b/templates/default.mustache @@ -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) +}