diff options
author | eug-vs <eugene@eug-vs.xyz> | 2023-06-03 13:14:03 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2023-06-03 13:14:03 +0300 |
commit | c3b4d29fb20e0d10ef792860e7fe7383e145ef9a (patch) | |
tree | 49af93c685aa938e9c96951793b12b35137fd2b8 | |
parent | cac85bf77c194c0618954c9d59b2be4649b28102 (diff) | |
download | dotfiles-c3b4d29fb20e0d10ef792860e7fe7383e145ef9a.tar.gz |
feat(zathura): add gruvbox theme
-rw-r--r-- | zathura/.config/zathura/zathurarc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc new file mode 100644 index 0000000..8e91fe6 --- /dev/null +++ b/zathura/.config/zathura/zathurarc @@ -0,0 +1,40 @@ +set notification-error-bg "#282828" # bg +set notification-error-fg "#fb4934" # bright:red +set notification-warning-bg "#282828" # bg +set notification-warning-fg "#fabd2f" # bright:yellow +set notification-bg "#282828" # bg +set notification-fg "#b8bb26" # bright:green + +set completion-bg "#504945" # bg2 +set completion-fg "#ebdbb2" # fg +set completion-group-bg "#3c3836" # bg1 +set completion-group-fg "#928374" # gray +set completion-highlight-bg "#83a598" # bright:blue +set completion-highlight-fg "#504945" # bg2 + +# Define the color in index mode +set index-bg "#504945" # bg2 +set index-fg "#ebdbb2" # fg +set index-active-bg "#83a598" # bright:blue +set index-active-fg "#504945" # bg2 + +set inputbar-bg "#282828" # bg +set inputbar-fg "#ebdbb2" # fg + +set statusbar-bg "#504945" # bg2 +set statusbar-fg "#ebdbb2" # fg + +set highlight-color "#fabd2f" # bright:yellow +set highlight-active-color "#fe8019" # bright:orange + +set default-bg "#282828" # bg +set default-fg "#ebdbb2" # fg +set render-loading true +set render-loading-bg "#282828" # bg +set render-loading-fg "#ebdbb2" # fg + +# Recolor book content's color +set recolor-lightcolor "#282828" # bg +set recolor-darkcolor "#ebdbb2" # fg +set recolor "true" +# set recolor-keephue true # keep original color |