Files
dotfiles/.config/zathura/zathurarc
Julian Prein e56ac18401 zathura: Add transparency to highlighting colors
I believe this changed with an update. Was there a global transparency
setting before? (I have these changes lying around already a bit, so
the breaking change is from the past and not so recent).
2024-11-04 09:55:24 +01:00

47 lines
1.3 KiB
Plaintext

# Use system clipboard for selection.
set selection-clipboard "clipboard"
# Dark colors and transparency
set default-bg "rgba(25, 25, 25, 0.5)"
set statusbar-bg "rgba(25, 25, 25, 0.5)"
set notification-bg "#000000"
set notification-fg "#FFFFFF"
# Change the greenish accent color (#9FBC00) to bright yellow (#FCE94F)
set completion-highlight-bg "rgba(252, 233, 79, 0.5)"
set inputbar-fg "rgba(252, 233, 79, 1)"
set highlight-color "rgba(252, 233, 79, 0.5)"
set index-active-bg "rgba(252, 233, 79, 0.5)"
# Set the foreground to something that can be read on highlight-color
set highlight-fg "#000000"
# Show statusbar and vertical scrollbar
set guioptions "sv"
# Increase the vertical scroll step size
set scroll-step 100
# Short $HOME with a tilde in file path
set statusbar-home-tilde true
# Invert colors per default. Toggle with `i`
map i recolor
set recolor true
set recolor-lightcolor "rgba(25, 25, 25, 0)"
set recolor-darkcolor "#FFFFFF"
set recolor-keephue true
set recolor-reverse-video true
# vim-like fold mappings in index
map [index] zo navigate-index expand
map [index] zc navigate-index collapse
map [index] zR navigate-index expand-all
map [index] zM navigate-index collapse-all
# Search while typing
# set incremental-search true
# vimtex
set synctex true