Use the default colors instead of the muted ones

This commit is contained in:
Anthony Sottile
2020-02-29 20:26:06 -08:00
parent e365580985
commit ecee5ab1ab

View File

@@ -416,6 +416,7 @@ def _init_screen() -> 'curses._CursesWindow':
stdscr.keypad(True)
with contextlib.suppress(curses.error):
curses.start_color()
curses.use_default_colors()
# TODO: colors
return stdscr