From 5ec7f5edc7745be429855cb0122e7ff3bed10ef1 Mon Sep 17 00:00:00 2001 From: kenji Date: Thu, 15 Jan 2026 16:11:59 -0600 Subject: [PATCH] style(matugen): update zathura template to mimic pywal aesthetic - Flattened UI elements (statusbar, inputbar, notifications) to use the surface background color, creating a seamless look similar to pywal themes. - Changed highlight colors to use 'tertiary' and 'secondary' accents for better visibility and style consistency. - Updated completion highlights for higher contrast. --- apps/matugen/templates/zathura | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/apps/matugen/templates/zathura b/apps/matugen/templates/zathura index bf7a7de..0f53152 100644 --- a/apps/matugen/templates/zathura +++ b/apps/matugen/templates/zathura @@ -1,13 +1,13 @@ set default-bg "#{{colors.surface.default.hex_stripped}}" set default-fg "#{{colors.on_surface.default.hex_stripped}}" -set statusbar-bg "#{{colors.surface_container.default.hex_stripped}}" +set statusbar-bg "#{{colors.surface.default.hex_stripped}}" set statusbar-fg "#{{colors.on_surface.default.hex_stripped}}" -set inputbar-bg "#{{colors.surface_container.default.hex_stripped}}" +set inputbar-bg "#{{colors.surface.default.hex_stripped}}" set inputbar-fg "#{{colors.on_surface.default.hex_stripped}}" -set notification-bg "#{{colors.surface_container_high.default.hex_stripped}}" +set notification-bg "#{{colors.surface.default.hex_stripped}}" set notification-fg "#{{colors.on_surface.default.hex_stripped}}" set notification-error-bg "#{{colors.error.default.hex_stripped}}" @@ -16,17 +16,17 @@ set notification-error-fg "#{{colors.on_error.default.hex_stripped}}" set notification-warning-bg "#{{colors.tertiary.default.hex_stripped}}" set notification-warning-fg "#{{colors.on_tertiary.default.hex_stripped}}" -set highlight-color "#{{colors.primary.default.hex_stripped}}" -set highlight-active-color "#{{colors.primary_container.default.hex_stripped}}" +set highlight-color "#{{colors.tertiary.default.hex_stripped}}" +set highlight-active-color "#{{colors.secondary.default.hex_stripped}}" -set completion-bg "#{{colors.surface_container.default.hex_stripped}}" +set completion-bg "#{{colors.surface.default.hex_stripped}}" set completion-fg "#{{colors.on_surface.default.hex_stripped}}" -set completion-group-bg "#{{colors.surface_container.default.hex_stripped}}" +set completion-group-bg "#{{colors.surface.default.hex_stripped}}" set completion-group-fg "#{{colors.on_surface.default.hex_stripped}}" -set completion-highlight-bg "#{{colors.primary.default.hex_stripped}}" -set completion-highlight-fg "#{{colors.on_primary.default.hex_stripped}}" +set completion-highlight-bg "#{{colors.on_surface.default.hex_stripped}}" +set completion-highlight-fg "#{{colors.surface.default.hex_stripped}}" set index-bg "#{{colors.surface.default.hex_stripped}}" set index-fg "#{{colors.on_surface.default.hex_stripped}}"