From 0c1924d40a634d914b568c7341ced6a82a5292d0 Mon Sep 17 00:00:00 2001 From: dece Date: Thu, 3 Jun 2021 03:29:30 +0200 Subject: [PATCH] colors: use blue for blockquotes instead of cyan --- bebop/colors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bebop/colors.py b/bebop/colors.py index 9a5b5cd..485ff7e 100644 --- a/bebop/colors.py +++ b/bebop/colors.py @@ -37,7 +37,7 @@ def init_colors(bg: int =-1): curses.init_pair(ColorPair.TITLE_2, curses.COLOR_MAGENTA, bg) curses.init_pair(ColorPair.TITLE_3, curses.COLOR_MAGENTA, bg) curses.init_pair(ColorPair.PREFORMATTED, curses.COLOR_YELLOW, bg) - curses.init_pair(ColorPair.BLOCKQUOTE, curses.COLOR_CYAN, bg) + curses.init_pair(ColorPair.BLOCKQUOTE, curses.COLOR_BLUE, bg) curses.init_pair(ColorPair.LINK_PREVIEW, curses.COLOR_WHITE, bg) except curses.error: logging.error("Failed to init colors.")