# HG changeset patch # User Peter Hosey # Date 1218442631 25200 # Node ID 89284f926abbdddb26e6202e58795fcaf61d00f6 # Parent 73f326ec81422d3fc8c31d39823249e218f67aab Darkened the colors for “old mode” and “removed”. The previous “removed” color was just too pink—not the light red I wanted. diff --git a/diff-colorize.py b/diff-colorize.py --- 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))