]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-annotate-color-map): Change some colors so that text
authorDan Nicolaescu <dann@ics.uci.edu>
Wed, 20 Apr 2005 16:51:39 +0000 (16:51 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Wed, 20 Apr 2005 16:51:39 +0000 (16:51 +0000)
using them as foreground is readable on both white and black
backgrounds.

lisp/ChangeLog
lisp/vc.el

index 4260768f9cc6c2b8768fd1d4e89b11e696e5f498..c9ab4a67d3dbc9e7526856722e7ec80bc85706e4 100644 (file)
@@ -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):
index ce4cb2d36c8d0e1f758a16fc67bbf43a356e11df..c5929f1da8b00d36fad5e2b2dcb8d4e37a167794 100644 (file)
@@ -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."