Fix qutebrowser caret mode colors

This commit is contained in:
Out Of Ideas 2023-11-01 18:11:59 -05:00
parent 00cc8e668c
commit 82eff3cfc5
1 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ bg_hint = "#7c6a8e" # purple
fg_matched_text = "#ffde6e" # yellow
bg_passthrough_mode = "#832f01" # red
bg_insert_mode = "#6b789b" # blue
bg_warning = "#c678dd" # purple
bg_warning = "#7c6a8e" # purple
############
# SETTINGS #
@ -208,16 +208,16 @@ c.colors.statusbar.command.private.fg = fg_default
c.colors.statusbar.command.private.bg = bg_default
# Foreground color of the statusbar in caret mode.
c.colors.statusbar.caret.fg = bg_default
c.colors.statusbar.caret.fg = bg_lighter
# Background color of the statusbar in caret mode.
c.colors.statusbar.caret.bg = bg_warning
# Foreground color of the statusbar in caret mode with a selection.
c.colors.statusbar.caret.selection.fg = bg_default
c.colors.statusbar.caret.selection.fg = bg_lighter
# Background color of the statusbar in caret mode with a selection.
c.colors.statusbar.caret.selection.bg = bg_insert_mode
c.colors.statusbar.caret.selection.bg = bg_warning
# Background color of the progress bar.
c.colors.statusbar.progress.bg = bg_insert_mode