Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-06-02 22:31:01 +0400
committerShawn O. Pearce <spearce@spearce.org>2007-06-06 09:26:49 +0400
commit000a10696c0bc1e428bbd22af9e19b27795e72dd (patch)
treec2278575b1d1f125d470b616591b0f81305e4751
parent063257076d8ea2bbf185ca33192583e03099e955 (diff)
git-gui: Use lighter colors in blame view
The colors I originally picked out on a Mac OS X system look a tad too dark on a Windows 2000 system; the greys are dark enough to make it difficult to read some lines of text and the green used to highlight the current commit was also difficult to read text on. I also added a third grey to the mix, to try and help some files that wind up with a number of neighboring chunks getting the same colors. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rw-r--r--lib/blame.tcl5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/blame.tcl b/lib/blame.tcl
index 1346fa5452..1c3f5e985e 100644
--- a/lib/blame.tcl
+++ b/lib/blame.tcl
@@ -42,10 +42,11 @@ field tooltip_timer {} ; # Current timer event for our tooltip
field tooltip_commit {} ; # Commit in tooltip
field tooltip_text {} ; # Text in current tooltip
-variable active_color #98e1a0
+variable active_color #c0edc5
variable group_colors {
- #cbcbcb
+ #d6d6d6
#e1e1e1
+ #ececec
}
constructor new {i_commit i_path} {