├── README.md ├── nord.txt ├── screenshots ├── bar.png ├── baz.png └── foo.png └── zathura-nord /README.md: -------------------------------------------------------------------------------- 1 | # A Better Nord Colorscheme for Zathura 2 | I have found that the default colorscheme for zathura was 3 | *lacking*. Therefore, I created a port, that in my opinion is 4 | better than the original. 5 | Thanks! 6 | -------------------------------------------------------------------------------- /nord.txt: -------------------------------------------------------------------------------- 1 | "#D8DEE9" "#E5E9F0" "#ECEFF4" 2 | "#2E3440" "#3B4252" "#434C5E" "#4C566A" 3 | "#8FBCBB" "#88C0D0" "#81A1C1" "#5E81AC" 4 | "#BF616A" "#D08770" "#EBCB8B" "#A3BE8C" "#B48EAD" 5 | 6 | -------------------------------------------------------------------------------- /screenshots/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakageddy/zathura-nord/436992f1a882ff0e65d2e94b5230d04bbfef5e61/screenshots/bar.png -------------------------------------------------------------------------------- /screenshots/baz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakageddy/zathura-nord/436992f1a882ff0e65d2e94b5230d04bbfef5e61/screenshots/baz.png -------------------------------------------------------------------------------- /screenshots/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakageddy/zathura-nord/436992f1a882ff0e65d2e94b5230d04bbfef5e61/screenshots/foo.png -------------------------------------------------------------------------------- /zathura-nord: -------------------------------------------------------------------------------- 1 | set notification-error-bg "#2E3440" 2 | set notification-error-fg "#BF616A" 3 | set notification-warning-bg "#2E3440" 4 | set notification-warning-fg "#D08770" 5 | set notification-bg "#2E3440" 6 | set notification-fg "#D8DEE9" 7 | 8 | set completion-bg "#2E3440" 9 | set completion-fg "#D8DEE9" 10 | set completion-group-bg "#3B4252" 11 | set completion-group-fg "#D8DEE9" 12 | set completion-highlight-bg "#88C0D0" 13 | set completion-highlight-fg "#3B4252" 14 | 15 | set index-bg "#2E3440" 16 | set index-fg "#8FBCBB" 17 | set index-active-bg "#8FBCBB" 18 | set index-active-fg "#2E3440" 19 | 20 | set inputbar-bg "#2E3440" 21 | set inputbar-fg "#E5E9F0" 22 | 23 | set statusbar-bg "#2E3440" 24 | set statusbar-fg "#E5E9F0" 25 | 26 | set highlight-color "#D08770" 27 | set highlight-active-color "#BF616A" 28 | 29 | set default-bg "#2E3440" 30 | set default-fg "#D8DEE9" 31 | set render-loading "true" 32 | set render-loading-bg "#2E3440" 33 | set render-loading-fg "#434C5E" 34 | 35 | set recolor-lightcolor "#2E3440" 36 | set recolor-darkcolor "#ECEFF4" 37 | set recolor "true" 38 | --------------------------------------------------------------------------------