Fix default selection foreground color

This commit is contained in:
Kovid Goyal 2020-07-20 21:30:40 +05:30
parent ee5b7ecaa4
commit 07d63bd3af
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -43,7 +43,7 @@ def apply_font_size():
def default_selection_colors():
if opts.is_dark_theme:
return dark_link_color, '#111'
return '#3297FD', '#ddd'
return '#3297FD', '#fff'
def make_selection_background_opaque(selbg):