Skip to content

Commit

Permalink
Revert "chg: curses - change colors for some LOG styles"
Browse files Browse the repository at this point in the history
This reverts commit 5ef7238.
  • Loading branch information
RazCrimson committed Aug 7, 2024
1 parent 99ba0d0 commit a7402b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glances/outputs/glances_colors.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def __define_colors(self) -> None:
curses.init_pair(3, curses.COLOR_GREEN, -1)
curses.init_pair(5, curses.COLOR_MAGENTA, -1)
else:
curses.init_pair(2, curses.COLOR_WHITE, curses.COLOR_RED)
curses.init_pair(3, curses.COLOR_WHITE, curses.COLOR_GREEN)
curses.init_pair(5, curses.COLOR_WHITE, curses.COLOR_MAGENTA)
curses.init_pair(2, -1, curses.COLOR_RED)
curses.init_pair(3, curses.COLOR_BLACK, curses.COLOR_GREEN)
curses.init_pair(5, -1, curses.COLOR_MAGENTA)
curses.init_pair(4, curses.COLOR_BLUE, -1)
curses.init_pair(6, curses.COLOR_RED, -1)
curses.init_pair(7, curses.COLOR_GREEN, -1)
Expand Down

0 comments on commit a7402b1

Please sign in to comment.