diff options
| author | 2017-02-12 17:12:25 +0100 | |
|---|---|---|
| committer | 2017-02-12 17:12:25 +0100 | |
| commit | 327b90c9e55f17396660aa96534976deb313c33a (patch) | |
| tree | 057a6d67cdb8e9ae047e39e51b386245fd4086a9 | |
| parent | 333d2dd04aa11371799e3788de4b614cde212e73 (diff) | |
Match vim colors better
Zathura status line, command line bar, error message now looks exactly
like the base16 schemes in vim. However, the completion menu doesn't
look the same as in vim because the way, zathura status line was merged
with the completion menu, was not very good looking. Furthermore, the
pdf recolor feature has been disable by default since it looks more
'sane'.
| -rw-r--r-- | templates/default.mustache | 39 |
1 files changed, 15 insertions, 24 deletions
diff --git a/templates/default.mustache b/templates/default.mustache index e87673c..4fe1a5c 100644 --- a/templates/default.mustache +++ b/templates/default.mustache @@ -1,44 +1,35 @@ # Base16 {{scheme-name}} # Author: {{scheme-author}} -# zathurarc-dark -# based on -# https://github.com/chriskempson/base16-builder/blob/master/templates/zathura/zathurarc-dark.erb -# by https://github.com/esn89/base16-zathura/blob/master/zathurarc-dark - set default-bg "#{{base00-hex}}" set default-fg "#{{base01-hex}}" set statusbar-fg "#{{base04-hex}}" -set statusbar-bg "#{{base01-hex}}" +set statusbar-bg "#{{base02-hex}}" set inputbar-bg "#{{base00-hex}}" -set inputbar-fg "#{{base02-hex}}" +set inputbar-fg "#{{base07-hex}}" + +set notification-bg "#{{base00-hex}}" +set notification-fg "#{{base07-hex}}" -set notification-error-bg "#{{base08-hex}}" -set notification-error-fg "#{{base00-hex}}" +set notification-error-bg "#{{base00-hex}}" +set notification-error-fg "#{{base08-hex}}" -set notification-warning-bg "#{{base08-hex}}" -set notification-warning-fg "#{{base00-hex}}" +set notification-warning-bg "#{{base00-hex}}" +set notification-warning-fg "#{{base08-hex}}" set highlight-color "#{{base0A-hex}}" set highlight-active-color "#{{base0D-hex}}" -set completion-highlight-fg "#{{base02-hex}}" -set completion-highlight-bg "#{{base0C-hex}}" +set completion-bg "#{{base01-hex}}" +set completion-fg "#{{base0D-hex}}" -set completion-bg "#{{base02-hex}}" -set completion-fg "#{{base0C-hex}}" - -set notification-bg "#{{base0B-hex}}" -set notification-fg "#{{base00-hex}}" +set completion-highlight-fg "#{{base07-hex}}" +set completion-highlight-bg "#{{base0D-hex}}" set recolor-lightcolor "#{{base00-hex}}" set recolor-darkcolor "#{{base06-hex}}" -set recolor "true" - -# setting recolor-keep true will keep any color your pdf has. -# if it is false, it'll just be black and white -set recolor-keephue "true" -# Rest of your configs go here: +set recolor "false" +set recolor-keephue "false" |
