style: Change commit message bar color to black-on-white

This commit is contained in:
n loewen (aider) 2025-06-07 23:37:19 +01:00
parent 045549949a
commit cb06745430
1 changed files with 1 additions and 1 deletions

View File

@ -611,7 +611,7 @@ def main(stdscr, filename, show_diff, show_add, show_del, mouse):
curses.init_pair(2, curses.COLOR_WHITE, 0) # Use black (0) instead of 8
curses.init_pair(3, curses.COLOR_GREEN, -1)
curses.init_pair(4, curses.COLOR_RED, -1)
curses.init_pair(5, curses.COLOR_BLACK, 6) # Status bar color (cyan background)
curses.init_pair(5, curses.COLOR_BLACK, 7) # Status bar color (white background)
height, width = stdscr.getmaxyx()
state = AppState(filename, width, height, show_diff, show_add, show_del, mouse)