From 7b55910a786c7652ac80a576399ebd9f81a8ac72 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Fri, 11 Sep 2026 17:20:50 +0200 Subject: feat(palette): generate every themed config from one scheme Colours were written down five times: rofi's palette.rasi, the waybar theme, the kitty theme, the conky and dunst templates, and a MACCHIATO dict inside udt-accent. Changing scheme meant finding all five, and they had already drifted: the active waybar theme was Macchiato while theme.css next to it was Mocha, and nothing imported the latter. Now a scheme is two files. palette/.conf holds the colours under the scheme's own names, and palette/roles-.conf says what each is for. palette/roles.conf is one `scheme =` line selecting the pair. bin/udt-palette renders that into each consumer's syntax and install.sh runs it first. The role map is per-scheme rather than shared because the palettes are genuinely different shapes: Nord has no `base`, Dracula no `surface0`, and forcing Catppuccin's names onto them would have meant either renaming their colours or inventing values. A role names a palette colour with two optional modifiers, `name/75` for alpha and `name*50` for brightness. The second exists because GTK's shade() has no palette name to point at. Ships macchiato, tokyo-night, nord and dracula. --selftest resolves every role in every scheme and asserts they define the same set, so a scheme that cannot satisfy a consumer fails at install rather than when someone switches to it. Verified against the live configs: all 46 waybar colours resolve identically to the previously active theme including its alpha() and shade() derivations, the kitty theme is colour-for-colour identical, and the rofi palette has the same 26 values. Generated files are gitignored; switching scheme and switching back reproduces the originals. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_015gbjA2bmswN8jyPDKzrvqe --- palette/macchiato.conf | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 palette/macchiato.conf (limited to 'palette/macchiato.conf') diff --git a/palette/macchiato.conf b/palette/macchiato.conf new file mode 100644 index 0000000..8ba796f --- /dev/null +++ b/palette/macchiato.conf @@ -0,0 +1,40 @@ +# Catppuccin Macchiato. +# Copyright (C) 2026 Danilo M. +# Licensed under the GNU General Public License v2 only. +# +# Source: https://github.com/catppuccin/palette +# +# Colour definitions only, in the scheme's own names. Nothing here says what a +# colour is used for; roles.conf does that. Adding a scheme means adding a file +# like this one, not editing any consumer. + +rosewater = #f4dbd6 +flamingo = #f0c6c6 +pink = #f5bde6 +mauve = #c6a0f6 +red = #ed8796 +maroon = #ee99a0 +peach = #f5a97f +yellow = #eed49f +green = #a6da95 +teal = #8bd5ca +sky = #91d7e3 +sapphire = #7dc4e4 +blue = #8aadf4 +lavender = #b7bdf8 + +text = #cad3f5 +subtext1 = #b8c0e0 +subtext0 = #a5adcb + +overlay2 = #939ab7 +overlay1 = #8087a2 +overlay0 = #6e738d + +surface2 = #5b6078 +surface1 = #494d64 +surface0 = #363a4f + +base = #24273a +mantle = #1e2030 +crust = #181926 -- cgit v1.2.3