On 5/1/07, Chuck Esterbrook <chuck.esterbrook@gmail.com> wrote:
TextMate colors the output of a diff (such as "svn di") which is
great, but I would like to change the colors. For example, I would
prefer that deleted lines are red on white instead of white on red (I
find the background color distracting).

Look at the preference items in the Diff bundle. For example, the item
"Style: Deleted" contains:

 {    background = '#FF3D3D';
     foreground = '#FFFFFF';
 }

You could change it to:

 {    background = '#FFFFFF';
     foreground = '#FF3D3D';
 }

to get red on white instead.

Robin