aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-04-20 16:51:39 +0000
committerDan Nicolaescu2005-04-20 16:51:39 +0000
commit57428691d587b010bc5971a9bbc5c4a137f5b2d7 (patch)
tree2a19ee9cef51c9eebac3b2d6fb207188d705836d
parent137a5ef2ec5bcd744ff75adbfd7c741241ab188d (diff)
downloademacs-57428691d587b010bc5971a9bbc5c4a137f5b2d7.tar.gz
emacs-57428691d587b010bc5971a9bbc5c4a137f5b2d7.zip
(vc-annotate-color-map): Change some colors so that text
using them as foreground is readable on both white and black backgrounds.
-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 4260768f9cc..c9ab4a67d3d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12005-04-20 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc.el (vc-annotate-color-map): Change some colors so that text
4 using them as foreground is readable on both white and black
5 backgrounds.
6
12005-04-20 Stefan Monnier <monnier@iro.umontreal.ca> 72005-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
2 8
3 * international/mule-conf.el (translation-table-for-input): 9 * international/mule-conf.el (translation-table-for-input):
diff --git a/lisp/vc.el b/lisp/vc.el
index ce4cb2d36c8..c5929f1da8b 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -616,23 +616,23 @@ version control backend imposes itself."
616 616
617;; Annotate customization 617;; Annotate customization
618(defcustom vc-annotate-color-map 618(defcustom vc-annotate-color-map
619 '(( 20. . "#FF0000") 619 '(( 20. . "#FFCC00")
620 ( 40. . "#FF3800") 620 ( 40. . "#FF6666")
621 ( 60. . "#FF7000") 621 ( 60. . "#FF6600")
622 ( 80. . "#FFA800") 622 ( 80. . "#FF3300")
623 (100. . "#FFE000") 623 (100. . "#FF00FF")
624 (120. . "#E7FF00") 624 (120. . "#FF0000")
625 (140. . "#AFFF00") 625 (140. . "#CCCC00")
626 (160. . "#77FF00") 626 (160. . "#CC00CC")
627 (180. . "#3FFF00") 627 (180. . "#BC8F8F")
628 (200. . "#07FF00") 628 (200. . "#99CC00")
629 (220. . "#00FF31") 629 (220. . "#999900")
630 (240. . "#00FF69") 630 (240. . "#7AC5CD")
631 (260. . "#00FFA1") 631 (260. . "#66CC00")
632 (280. . "#00FFD9") 632 (280. . "#33CC33")
633 (300. . "#00EEFF") 633 (300. . "#00CCFF")
634 (320. . "#00B6FF") 634 (320. . "#00CC99")
635 (340. . "#007EFF")) 635 (340. . "#0099FF"))
636 "*Association list of age versus color, for \\[vc-annotate]. 636 "*Association list of age versus color, for \\[vc-annotate].
637Ages are given in units of fractional days. Default is eighteen steps 637Ages are given in units of fractional days. Default is eighteen steps
638using a twenty day increment." 638using a twenty day increment."