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,27 @@
{
"workbench.colorCustomizations": {
"titleBar.activeBackground": "{{colors.surface_container.default.hex}}",
"titleBar.activeForeground": "{{colors.on_surface.default.hex}}",
"titleBar.inactiveBackground": "{{colors.surface_container_low.default.hex}}",
"activityBar.background": "{{colors.surface_container.default.hex}}",
"activityBar.foreground": "{{colors.on_surface.default.hex}}",
"sideBar.background": "{{colors.surface_container_low.default.hex}}",
"sideBar.foreground": "{{colors.on_surface.default.hex}}",
"editor.background": "{{colors.surface.default.hex}}",
"editor.foreground": "{{colors.on_surface.default.hex}}",
"statusBar.background": "{{colors.surface_container.default.hex}}",
"statusBar.foreground": "{{colors.on_surface.default.hex}}",
"tab.activeBackground": "{{colors.surface.default.hex}}",
"tab.inactiveBackground": "{{colors.surface_container.default.hex}}",
"tab.activeForeground": "{{colors.on_surface.default.hex}}",
"focusBorder": "{{colors.primary.default.hex}}",
"button.background": "{{colors.primary.default.hex}}",
"button.foreground": "{{colors.on_primary.default.hex}}",
"list.activeSelectionBackground": "{{colors.primary_container.default.hex}}",
"list.activeSelectionForeground": "{{colors.on_primary_container.default.hex}}",
"list.hoverBackground": "{{colors.surface_container_high.default.hex}}",
"terminal.background": "{{colors.surface.default.hex}}",
"terminal.foreground": "{{colors.on_surface.default.hex}}",
"panel.background": "{{colors.surface_container_low.default.hex}}"
}
}