Skip to content

Commit

Permalink
Merge pull request #615 from tallamjr/issues/240/prettyprint-black-te…
Browse files Browse the repository at this point in the history
…rminal

Make INFO text more readable in black terminal
  • Loading branch information
vidartf committed Jun 19, 2022
2 parents fa4e2a3 + 480a421 commit 2db0b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbdime/prettyprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
KEEP = '{color} '.format(color=''),
REMOVE = '{color}- '.format(color=colorama.Fore.RED),
ADD = '{color}+ '.format(color=colorama.Fore.GREEN),
INFO = '{color}## '.format(color=colorama.Fore.BLUE),
INFO = '{color}## '.format(color=colorama.Fore.BLUE + colorama.Style.BRIGHT),
RESET = colorama.Style.RESET_ALL,
),

Expand Down

0 comments on commit 2db0b44

Please sign in to comment.