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).
This commit is contained in:
2024-11-04 09:44:12 +01:00
parent 5fa05e94a3
commit e56ac18401

View File

@@ -7,11 +7,11 @@ 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
set completion-highlight-bg "#FCE94F"
set inputbar-fg "#FCE94F"
set highlight-color "#FCE94F"
set index-active-bg "#FCE94F"
# 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"