- Shell theme CSS now outputs directly to themes directory - Zen userChrome.css updated with more UI variables - Remove redundant copy step from recolor script Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
965 B
CSS
15 lines
965 B
CSS
/* Wallpaper-based colors generated by matugen */
|
|
:root {
|
|
--zen-primary-color: {{colors.primary.default.hex}} !important;
|
|
--zen-colors-primary: {{colors.primary_container.default.hex}} !important;
|
|
--zen-colors-secondary: {{colors.secondary_container.default.hex}} !important;
|
|
--zen-colors-tertiary: {{colors.tertiary_container.default.hex}} !important;
|
|
--zen-colors-border: {{colors.outline_variant.default.hex}} !important;
|
|
--toolbar-bgcolor: {{colors.surface_container.default.hex}} !important;
|
|
--lwt-accent-color: {{colors.surface_container.default.hex}} !important;
|
|
--lwt-text-color: {{colors.on_surface.default.hex}} !important;
|
|
--tab-selected-bgcolor: {{colors.surface_container_high.default.hex}} !important;
|
|
--arrowpanel-background: {{colors.surface_container.default.hex}} !important;
|
|
--arrowpanel-color: {{colors.on_surface.default.hex}} !important;
|
|
--urlbar-box-bgcolor: {{colors.surface_container_low.default.hex}} !important;
|
|
}
|