Skip to content

Commit

Permalink
Merge pull request #2903 from nicolargo/2882-make-fields-labelled-in-…
Browse files Browse the repository at this point in the history
…green-easier-to-see

chg: curses - change colors for some LOG styles
  • Loading branch information
RazCrimson authored Jul 30, 2024
2 parents e036324 + 5ef7238 commit 99ba0d0
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, -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(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(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 99ba0d0

Please sign in to comment.