diff options
-rw-r--r-- | .config/zathura/INSTALL.md | 12 | ||||
-rw-r--r-- | .config/zathura/LICENSE | 21 | ||||
-rw-r--r-- | .config/zathura/README.md | 27 | ||||
-rw-r--r-- | .config/zathura/lightmode.png | bin | 0 -> 304666 bytes | |||
-rw-r--r-- | .config/zathura/screenshot.png | bin | 0 -> 311545 bytes | |||
-rw-r--r-- | .config/zathura/zathurarc | 58 |
6 files changed, 118 insertions, 0 deletions
diff --git a/.config/zathura/INSTALL.md b/.config/zathura/INSTALL.md new file mode 100644 index 0000000..d4bfc61 --- /dev/null +++ b/.config/zathura/INSTALL.md @@ -0,0 +1,12 @@ +### [Zathura](https://pwmt.org/projects/zathura/) + +#### Install using Git + +If you are a git user, you can install the theme and keep up to date by cloning the repo: + + $ git clone https://github.com/dracula/zathura ~/.config/zathura/ + +#### Activating theme + +1. Double check that it cloned correctly +2. Enjoy! diff --git a/.config/zathura/LICENSE b/.config/zathura/LICENSE new file mode 100644 index 0000000..ce0113b --- /dev/null +++ b/.config/zathura/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2020 Ethan Carter Edwards + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/.config/zathura/README.md b/.config/zathura/README.md new file mode 100644 index 0000000..844607e --- /dev/null +++ b/.config/zathura/README.md @@ -0,0 +1,27 @@ +# Dracula for [zathura](https://pwmt.org/projects/zathura/) + +> A dark theme for [Zathura](https://pwmt.org/projects/zathura/). + +![Dark Mode](./screenshot.png) + +![Light Mode](./lightmode.png) + +## Install + +All instructions can be found at [draculatheme.com/zathura](https://draculatheme.com/zathura). + +## Features + +* \<C-i\> will switch between a light and dark background + +## Team + +This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/zathura/graphs/contributors). + +[![Ethan Edwards](https://avatars1.githubusercontent.com/u/60861925?s=70&v=4)](https://github.com/ethancedwards8) | +--- | +[Ethan Edwards](https://github.com/ethancedwards8) | + +## License + +[MIT License](./LICENSE) diff --git a/.config/zathura/lightmode.png b/.config/zathura/lightmode.png Binary files differnew file mode 100644 index 0000000..c84969f --- /dev/null +++ b/.config/zathura/lightmode.png diff --git a/.config/zathura/screenshot.png b/.config/zathura/screenshot.png Binary files differnew file mode 100644 index 0000000..2433793 --- /dev/null +++ b/.config/zathura/screenshot.png diff --git a/.config/zathura/zathurarc b/.config/zathura/zathurarc new file mode 100644 index 0000000..b0ab3dc --- /dev/null +++ b/.config/zathura/zathurarc @@ -0,0 +1,58 @@ +set window-title-basename "true" +set selection-clipboard "clipboard" + +map <C-i> recolor + +# Dracula color theme for Zathura +# Swaps Foreground for Background to get a light version if the user prefers + +# +# 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 "#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 |