Extend wallpaper theming to Zen, VSCodium, and GNOME accents

- Zen browser: generates userChrome.css with palette colors
- VSCodium: merges workbench.colorCustomizations into settings.json
- GNOME: maps palette hue to closest accent color preset
- Add jq to GNOME packages for JSON merging

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-13 21:14:54 +01:00
parent 1ca92e96ba
commit 8359853fc9
5 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,11 @@
/* Wallpaper-based colors generated by matugen */
:root {
--zen-primary-color: {{colors.primary.default.hex}} !important;
--zen-colors-primary: {{colors.primary.default.hex}} !important;
--zen-colors-secondary: {{colors.secondary.default.hex}} !important;
--zen-colors-tertiary: {{colors.tertiary.default.hex}} !important;
--zen-colors-border: {{colors.outline_variant.default.hex}} !important;
--toolbar-bgcolor: {{colors.surface.default.hex}} !important;
--lwt-accent-color: {{colors.surface_container.default.hex}} !important;
--lwt-text-color: {{colors.on_surface.default.hex}} !important;
}