Mercurial > diff-colorize
changeset 13:89284f926abb 1.0b1
Darkened the colors for “old mode” and “removed”. The previous “removed” color was just too pink—not the light red I wanted.
author | Peter Hosey |
---|---|
date | Mon, 11 Aug 2008 01:17:11 -0700 |
parents | 73f326ec8142 |
children | 03603b3ec1c1 |
files | diff-colorize.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/diff-colorize.py +++ b/diff-colorize.py @@ -5,9 +5,9 @@ import os import fileinput index_color = int(os.environ.get('DIFF_INDEX_COLOR', 32)) -old_mode_color = int(os.environ.get('DIFF_OLD_MODE_COLOR', 124)) +old_mode_color = int(os.environ.get('DIFF_OLD_MODE_COLOR', 88)) new_mode_color = int(os.environ.get('DIFF_NEW_MODE_COLOR', 28)) -removed_color = int(os.environ.get('DIFF_REMOVED_COLOR', 203)) +removed_color = int(os.environ.get('DIFF_REMOVED_COLOR', 160)) added_color = int(os.environ.get('DIFF_ADDED_COLOR', 2)) hunk_start_color = int(os.environ.get('DIFF_HUNK_START_COLOR', 32))