- 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>
11 lines
612 B
CSS
11 lines
612 B
CSS
/* 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;
|
|
}
|