changeset 61705:1e6373a5a04b

(vc-annotate-color-map): Change some colors so that text using them as foreground is readable on both white and black backgrounds.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 20 Apr 2005 16:51:39 +0000
parents 0733fc416737
children 448da3693d84
files lisp/ChangeLog lisp/vc.el
diffstat 2 files changed, 23 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Apr 20 16:08:47 2005 +0000
+++ b/lisp/ChangeLog	Wed Apr 20 16:51:39 2005 +0000
@@ -1,3 +1,9 @@
+2005-04-20  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* 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  <monnier@iro.umontreal.ca>
 
 	* international/mule-conf.el (translation-table-for-input):
--- a/lisp/vc.el	Wed Apr 20 16:08:47 2005 +0000
+++ b/lisp/vc.el	Wed Apr 20 16:51:39 2005 +0000
@@ -616,23 +616,23 @@
 
 ;; 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."