diff options
| author | 2017-02-12 12:07:45 +0100 | |
|---|---|---|
| committer | 2017-02-12 12:07:45 +0100 | |
| commit | 989d98efcee4a36cd4e708cc9e881519bf047c23 (patch) | |
| tree | 9d5fce8e229bd94dea8a9d3ecb0ac2495587e2e1 | |
Initial commit
Base16 zathura template for the the new implementation of base16.
https://github.com/chriskempson/base16 based on esn89 templates from the
deprecated project
https://github.com/chriskempson/base16-builder/tree/master/templates/zathura
| -rw-r--r-- | README.md | 23 | ||||
| -rw-r--r-- | templates/config.yaml | 3 | ||||
| -rw-r--r-- | templates/default.mustache | 44 |
3 files changed, 70 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..54cc151 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# base16-zathura + +This repository provide [base16][1] colorschemes for [zathura][2], a +minimalistic plugin based document viewer which focus on keyboard interaction. + +It is meant to be used along with the [new implementation][3] of base16 colorscheme +project, which propose a modular approach, by separating templates, schemes and +builder into different repositories. + + +<!--```bash--> +<!-- back up your old zathura config--> +<!--cp ~/.config/zathura/zathurarc--> +<!--mkdir -p ~/.config/zathura--> +<!--curl https://raw.githubusercontent.com/khamer/base16-termite/master/themes/base16-default-dark.config >> ~/.config/termite/config--> +<!--```--> + +# References + +[1]: https://chriskempson.github.io/base16/ +[2]: https://pwmt.org/projects/zathura/ +[3]: https://github.com/chriskempson/base16 +<!--[4]: https://github.com/chriskempson/base16-builder--> diff --git a/templates/config.yaml b/templates/config.yaml new file mode 100644 index 0000000..7ffbf32 --- /dev/null +++ b/templates/config.yaml @@ -0,0 +1,3 @@ +default: + extension: .config + output: colorschemes diff --git a/templates/default.mustache b/templates/default.mustache new file mode 100644 index 0000000..e87673c --- /dev/null +++ b/templates/default.mustache @@ -0,0 +1,44 @@ +# 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 inputbar-bg "#{{base00-hex}}" +set inputbar-fg "#{{base02-hex}}" + +set notification-error-bg "#{{base08-hex}}" +set notification-error-fg "#{{base00-hex}}" + +set notification-warning-bg "#{{base08-hex}}" +set notification-warning-fg "#{{base00-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 "#{{base02-hex}}" +set completion-fg "#{{base0C-hex}}" + +set notification-bg "#{{base0B-hex}}" +set notification-fg "#{{base00-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: |
