Change summary
dot_config/private_zathura/zathurarc | 57 ---------------
dot_config/private_zathura/zathurarc.tmpl | 92 +++++++++++++++++++++++++
2 files changed, 92 insertions(+), 57 deletions(-)
Detailed changes
@@ -1,57 +0,0 @@
-set first-page-column 1
-set guioptions null
-
-# Dracula color theme for Zathura
-set window-title-basename "true"
-set selection-clipboard "clipboard"
-
-#
-# Dracula color theme
-#
-
-set notification-error-bg "#ff5555" # Red
-set notification-error-fg "#f8f8f2" # Foreground
-set notification-warning-bg "#ffb86c" # Orange
-set notification-warning-fg "#44475a" # Selection
-set notification-bg "#282a36" # Background
-set notification-fg "#f8f8f2" # Foreground
-
-set completion-bg "#282a36" # Background
-set completion-fg "#6272a4" # Comment
-set completion-group-bg "#282a36" # Background
-set completion-group-fg "#6272a4" # Comment
-set completion-highlight-bg "#44475a" # Selection
-set completion-highlight-fg "#f8f8f2" # Foreground
-
-set index-bg "#282a36" # Background
-set index-fg "#f8f8f2" # Foreground
-set index-active-bg "#44475a" # Current Line
-set index-active-fg "#f8f8f2" # Foreground
-
-set inputbar-bg "#282a36" # Background
-set inputbar-fg "#f8f8f2" # Foreground
-set statusbar-bg "#282a36" # Background
-set statusbar-fg "#f8f8f2" # Foreground
-
-set highlight-color "#ffb86c" # Orange
-set highlight-active-color "#ff79c6" # Pink
-
-set default-bg "#22212C" # Background
-set default-fg "#F8F8F2" # Foreground
-
-set render-loading true
-set render-loading-fg "#282a36" # Background
-set render-loading-bg "#f8f8f2" # Foreground
-
-#
-# Recolor mode settings
-#
-set recolor-lightcolor "#22212C" # Background
-set recolor-darkcolor "#F8F8F2" # Foreground
-
-#
-# Startup options
-#
-set adjust-open width
-set recolor "true"
-set recolor-keephue "true"
@@ -0,0 +1,92 @@
+set first-page-column 1
+set guioptions null
+
+set window-title-basename "true"
+set selection-clipboard "clipboard"
+
+
+{{- if eq .theme_variant "dark" }}
+set default-fg "#CAD3F5"
+set default-bg "#24273A"
+
+set completion-bg "#363A4F"
+set completion-fg "#CAD3F5"
+set completion-highlight-bg "#575268"
+set completion-highlight-fg "#CAD3F5"
+set completion-group-bg "#363A4F"
+set completion-group-fg "#8AADF4"
+
+set statusbar-fg "#CAD3F5"
+set statusbar-bg "#363A4F"
+
+set notification-bg "#363A4F"
+set notification-fg "#CAD3F5"
+set notification-error-bg "#363A4F"
+set notification-error-fg "#ED8796"
+set notification-warning-bg "#363A4F"
+set notification-warning-fg "#FAE3B0"
+
+set inputbar-fg "#CAD3F5"
+set inputbar-bg "#363A4F"
+
+set recolor-lightcolor "#24273A"
+set recolor-darkcolor "#CAD3F5"
+
+set index-fg "#CAD3F5"
+set index-bg "#24273A"
+set index-active-fg "#CAD3F5"
+set index-active-bg "#363A4F"
+
+set render-loading-bg "#24273A"
+set render-loading-fg "#CAD3F5"
+
+set highlight-color "#575268"
+set highlight-fg "#F5BDE6"
+set highlight-active-color "#F5BDE6"
+{{- end }}
+{{- if eq .theme_variant "light" }}
+set default-fg "#4C4F69"
+set default-bg "#EFF1F5"
+
+set completion-bg "#CCD0DA"
+set completion-fg "#4C4F69"
+set completion-highlight-bg "#575268"
+set completion-highlight-fg "#4C4F69"
+set completion-group-bg "#CCD0DA"
+set completion-group-fg "#1E66F5"
+
+set statusbar-fg "#4C4F69"
+set statusbar-bg "#CCD0DA"
+
+set notification-bg "#CCD0DA"
+set notification-fg "#4C4F69"
+set notification-error-bg "#CCD0DA"
+set notification-error-fg "#D20F39"
+set notification-warning-bg "#CCD0DA"
+set notification-warning-fg "#FAE3B0"
+
+set inputbar-fg "#4C4F69"
+set inputbar-bg "#CCD0DA"
+
+set recolor-lightcolor "#EFF1F5"
+set recolor-darkcolor "#4C4F69"
+
+set index-fg "#4C4F69"
+set index-bg "#EFF1F5"
+set index-active-fg "#4C4F69"
+set index-active-bg "#CCD0DA"
+
+set render-loading-bg "#EFF1F5"
+set render-loading-fg "#4C4F69"
+
+set highlight-color "#575268"
+set highlight-fg "#EA76CB"
+set highlight-active-color "#EA76CB"
+{{- end }}
+
+#
+# Startup options
+#
+set adjust-open width
+set recolor "true"
+set recolor-keephue "true"