From cb06745430c09b29bdf63b4a8fc4ae0b44847f49 Mon Sep 17 00:00:00 2001 From: "n loewen (aider)" Date: Sat, 7 Jun 2025 23:37:19 +0100 Subject: [PATCH] style: Change commit message bar color to black-on-white --- gtm2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtm2.py b/gtm2.py index 6d16b21..2c91979 100755 --- a/gtm2.py +++ b/gtm2.py @@ -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)