diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2005-04-20 16:51:39 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2005-04-20 16:51:39 +0000 |
commit | 57428691d587b010bc5971a9bbc5c4a137f5b2d7 (patch) | |
tree | 2a19ee9cef51c9eebac3b2d6fb207188d705836d /lisp/vc.el | |
parent | 137a5ef2ec5bcd744ff75adbfd7c741241ab188d (diff) | |
download | emacs-57428691d587b010bc5971a9bbc5c4a137f5b2d7.tar.gz |
(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/vc.el')
-rw-r--r-- | lisp/vc.el | 34 |
1 files changed, 17 insertions, 17 deletions
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." ;; 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." |