├── LICENSE ├── README.md ├── screenshot ├── dark-index-mode.png └── dark-main-mode.png ├── zathura-solarized-dark └── zathura-solarized-light /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 Ethan Schoonover 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Solarized color scheme for the Zathura 2 | ============================= 3 | 4 | Visit the [Solarized homepage] 5 | ------------------------------ 6 | 7 | See the [Solarized homepage] for screenshots, details and colorscheme versions for Vim, Mutt, popular terminal emulators and other applications. 8 | 9 | 10 | Installation 11 | ------------ 12 | The dark or the light themes are available. To install the dark version please do the following: 13 | 14 | $ cd zathura-solarized 15 | $ cp zathura-solarized-dark ~/.config/zathura/zathurarc 16 | 17 | To install the light version go with: 18 | 19 | $ cd zathura-solarized 20 | $ cp zathura-solarized-light ~/.config/zathura/zathurarc 21 | 22 | Screenshots 23 | ----------- 24 | 25 | ![dark main content](screenshot/dark-main-mode.png) 26 | ![solarized index](screenshot/dark-index-mode.png) 27 | 28 | 29 | [Solarized homepage]: http://ethanschoonover.com/solarized 30 | [Solarized repository]: https://github.com/altercation/solarized 31 | [zathura-solarized repository]: https://github.com/lennonwoo/zathura-solarized 32 | -------------------------------------------------------------------------------- /screenshot/dark-index-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennonwoo/zathura-solarized/14a3d95d568b3120bad3f691eae4667d16a37f5d/screenshot/dark-index-mode.png -------------------------------------------------------------------------------- /screenshot/dark-main-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lennonwoo/zathura-solarized/14a3d95d568b3120bad3f691eae4667d16a37f5d/screenshot/dark-main-mode.png -------------------------------------------------------------------------------- /zathura-solarized-dark: -------------------------------------------------------------------------------- 1 | # zathurarc-dark 2 | set notification-error-bg "#586e75" # base01 # seem not work 3 | set notification-error-fg "#dc322f" # red 4 | set notification-warning-bg "#586e75" # base01 5 | set notification-warning-fg "#dc322f" # red 6 | set notification-bg "#586e75" # base01 7 | set notification-fg "#b58900" # yellow 8 | 9 | set completion-group-bg "#002b36" # base03 10 | set completion-group-fg "#839496" # base0 11 | set completion-bg "#073642" # base02 12 | set completion-fg "#93a1a1" # base1 13 | set completion-highlight-bg "#586e75" # base01 14 | set completion-highlight-fg "#eee8d5" # base2 15 | 16 | # Define the color in index mode 17 | set index-bg "#073642" # base02 18 | set index-fg "#93a1a1" # base1 19 | set index-active-bg "#586e75" # base01 20 | set index-active-fg "#eee8d5" # base2 21 | 22 | set inputbar-bg "#586e75" # base01 23 | set inputbar-fg "#eee8d5" # base2 24 | 25 | set statusbar-bg "#073642" # base02 26 | set statusbar-fg "#93a1a1" # base1 27 | 28 | set highlight-color "#657b83" # base00 # hightlight match when search keyword(vim's /) 29 | set highlight-active-color "#268bd2" # blue 30 | 31 | set default-bg "#073642" # base02 32 | set default-fg "#93a1a1" # base1 33 | # set render-loading true 34 | # set render-loading-fg "#073642" # base02 35 | # set render-loading-bg "#073642" # base02 36 | 37 | # Recolor book content's color 38 | set recolor true 39 | set recolor-lightcolor "#073642" # base02 40 | set recolor-darkcolor "#93a1a1" # base1 41 | # set recolor-keephue true # keep original color 42 | -------------------------------------------------------------------------------- /zathura-solarized-light: -------------------------------------------------------------------------------- 1 | # zathurarc-light 2 | set notification-error-bg "#eee8d5" # base2 # seem not work 3 | set notification-error-fg "#dc322f" # red 4 | set notification-warning-bg "#eee8d5" # base2 5 | set notification-warning-fg "#dc322f" # red 6 | set notification-bg "#eee8d5" # base2 7 | set notification-fg "#268bd2" # blue 8 | 9 | set completion-bg "#fdf6e3" # base3 10 | set completion-fg "#657b83" # base00 11 | set completion-group-bg "#eee8d5" # base2 12 | set completion-group-fg "#586e75" # base01 13 | set completion-highlight-bg "#93a1a1" # base1 14 | set completion-highlight-fg "#073642" # base02 15 | 16 | # Define the color in index mode 17 | set index-bg "#fdf6e3" # base3 18 | set index-fg "#657b83" # base00 19 | set index-active-bg "#eee8d5" # base2 20 | set index-active-fg "#586e75" # base01 21 | 22 | set inputbar-bg "#93a1a1" # base1 23 | set inputbar-fg "#073642" # base02 24 | 25 | set statusbar-bg "#fdf6e3" # base3 26 | set statusbar-fg "#657b83" # base00 27 | 28 | set highlight-color "#839496" # base0 # hightlight match when search keyword(vim's /) 29 | set highlight-active-color "#cb4616" # orange 30 | 31 | set default-bg "#fdf6e3" # base3 32 | set default-fg "#657b83" # base00 33 | set render-loading true 34 | # set render-loading-fg "#fdf6e3" # base3 35 | # set render-loading-bg "#fdf6e3" # base3 36 | 37 | # Recolor book content's color 38 | # verbose 39 | # verbose 40 | set recolor-lightcolor "#fdf6e3" # base3 41 | set recolor-darkcolor "#657b83" # base00 42 | set recolor "true" 43 | # set recolor-keephue true # keep original color 44 | --------------------------------------------------------------------------------