diff options
| author | neodarz <neodarz@neodarz.net> | 2020-10-04 20:34:50 +0200 | 
|---|---|---|
| committer | neodarz <neodarz@neodarz.net> | 2020-10-04 20:34:50 +0200 | 
| commit | 08890c3d4496738caf23424029b612f9984570c7 (patch) | |
| tree | 91030e115685a90809fab9e355defd4e9f75596b | |
| parent | 67659fc2d3c25a0ef657f9e191310b2c4dcda521 (diff) | |
| download | dotfiles-08890c3d4496738caf23424029b612f9984570c7.tar.xz dotfiles-08890c3d4496738caf23424029b612f9984570c7.zip | |
Add zathura config
Diffstat (limited to '')
| -rw-r--r-- | dotfiles/config/zathura/zathurarc | 54 | ||||
| -rw-r--r-- | dotfiles/config/zathura/zathurarc.material | 36 | 
2 files changed, 90 insertions, 0 deletions
| diff --git a/dotfiles/config/zathura/zathurarc b/dotfiles/config/zathura/zathurarc new file mode 100644 index 0000000..f75366e --- /dev/null +++ b/dotfiles/config/zathura/zathurarc @@ -0,0 +1,54 @@ +# Dracula color theme for Zathura +# link:( https://github.com/dracula/dracula-theme#color-palette ) +# Swaps Foreground for Background to get a light version +# Comment after the color is the color's name, as it appears in the palette + + +# Light/Default mode settings: +#  +# +set notification-error-bg       "#ff5555" # Red +set notification-error-fg       "#f8f8f2" # Foreground +set notification-warning-bg     "#ffb86c" # Orange +set notification-warning-fg     "#282a36" # Selection +set notification-bg             "#44475a" # Background +set notification-fg             "#f8f8f2" # Foreground + +set completion-bg               "#282a36" # Background +set completion-fg               "#f8f8f2" # Comment +set completion-group-bg         "#282a36" # Background +set completion-group-fg         "#50fa7b" # Comment +set completion-highlight-bg     "#bd93f9" # Selection +set completion-highlight-fg     "#282a36" # Foreground + +set index-bg                    "#282a36" # Background +set index-fg                    "#f8f8f2" # Foreground +set index-active-bg             "#bd93f9" # Current Line +set index-active-fg             "#282a36" # Foreground + +set inputbar-bg                 "#44475a" # Background +set inputbar-fg                 "#f8f8f2" # Foreground +set statusbar-bg                "#44475a" # Background +set statusbar-fg                "#f8f8f2" # Foreground + +set highlight-color             "#ffb86c" # Orange +set highlight-active-color      "#ff79c6" # Pink + +set default-bg                  "#282a36" # 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          "#282a36" # Background +set recolor-darkcolor           "#f8f8f2" # Foreground + +# Startup options +# +# +set adjust-open width +set recolor true diff --git a/dotfiles/config/zathura/zathurarc.material b/dotfiles/config/zathura/zathurarc.material new file mode 100644 index 0000000..20733d8 --- /dev/null +++ b/dotfiles/config/zathura/zathurarc.material @@ -0,0 +1,36 @@ +# Base16 Material Darker +# Author: Nate Peterson + +set default-bg                  "#212121" +set default-fg                  "#303030" + +set statusbar-fg                "#B2CCD6" +set statusbar-bg                "#353535" + +set inputbar-bg                 "#212121" +set inputbar-fg                 "#EEFFFF" + +set notification-bg             "#212121" +set notification-fg             "#EEFFFF" + +set notification-error-bg       "#212121" +set notification-error-fg       "#F07178" + +set notification-warning-bg     "#212121" +set notification-warning-fg     "#F07178" + +set highlight-color             "#FFCB6B" +set highlight-active-color      "#82AAFF" + +set completion-bg               "#303030" +set completion-fg               "#82AAFF" + +set completion-highlight-fg     "#EEFFFF" +set completion-highlight-bg     "#82AAFF" + +set recolor-lightcolor          "#212121" +set recolor-darkcolor           "#EEFFFF" + +set recolor                     "true" +set recolor-keephue             "false" +set selection-clipboard clipboard | 
