aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDan Nicolaescu <[email protected]>2005-04-20 16:51:39 +0000
committerDan Nicolaescu <[email protected]>2005-04-20 16:51:39 +0000
commit57428691d587b010bc5971a9bbc5c4a137f5b2d7 (patch)
tree2a19ee9cef51c9eebac3b2d6fb207188d705836d /lisp
parent137a5ef2ec5bcd744ff75adbfd7c741241ab188d (diff)
(vc-annotate-color-map): Change some colors so that text
using them as foreground is readable on both white and black backgrounds.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/vc.el34
2 files changed, 23 insertions, 17 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4260768f9c..c9ab4a67d3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2005-04-20 Dan Nicolaescu <[email protected]>
+
+ * vc.el (vc-annotate-color-map): Change some colors so that text
+ using them as foreground is readable on both white and black
+ backgrounds.
+
2005-04-20 Stefan Monnier <[email protected]>
* international/mule-conf.el (translation-table-for-input):
diff --git a/lisp/vc.el b/lisp/vc.el
index ce4cb2d36c..c5929f1da8 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -616,23 +616,23 @@ version control backend imposes itself."
;; Annotate customization
(defcustom vc-annotate-color-map
- '(( 20. . "#FF0000")
- ( 40. . "#FF3800")
- ( 60. . "#FF7000")
- ( 80. . "#FFA800")
- (100. . "#FFE000")
- (120. . "#E7FF00")
- (140. . "#AFFF00")
- (160. . "#77FF00")
- (180. . "#3FFF00")
- (200. . "#07FF00")
- (220. . "#00FF31")
- (240. . "#00FF69")
- (260. . "#00FFA1")
- (280. . "#00FFD9")
- (300. . "#00EEFF")
- (320. . "#00B6FF")
- (340. . "#007EFF"))
+ '(( 20. . "#FFCC00")
+ ( 40. . "#FF6666")
+ ( 60. . "#FF6600")
+ ( 80. . "#FF3300")
+ (100. . "#FF00FF")
+ (120. . "#FF0000")
+ (140. . "#CCCC00")
+ (160. . "#CC00CC")
+ (180. . "#BC8F8F")
+ (200. . "#99CC00")
+ (220. . "#999900")
+ (240. . "#7AC5CD")
+ (260. . "#66CC00")
+ (280. . "#33CC33")
+ (300. . "#00CCFF")
+ (320. . "#00CC99")
+ (340. . "#0099FF"))
"*Association list of age versus color, for \\[vc-annotate].
Ages are given in units of fractional days. Default is eighteen steps
using a twenty day increment."