这两款主题分别是:

color-theme-arjen : http://github.com/credmp/color-theme-arjen/tree/master

color-theme-zenburn : http://github.com/credmp/color-theme-zenburn/tree/master

在 Emacs 中配置主题很简单,把这两个 .el 包所在的目录添加到你的 load-path 里,然后在 .emacs 添加类似的句子:

;;choose the color theme 
(add-to-list 'load-path "~/emacs/site-lisp/color-theme")
(load-file "~/emacs/site-lisp/color-theme/master_zenburn.el")
(load-file "~/emacs/site-lisp/color-theme/master_color-theme-arjen.el")
(require 'color-theme)
;(color-theme-gnome2) 
;(color-theme-zenburn) 
(color-theme-arjen)

这样,你的 Emacs 一启动,就会自动启用 color-theme-arjen 主题。该主题的效果如下图所示:

当然,你可以在后面添加更多的主题,你也可以在 Emacs 中选择性地启动某个主题。比如说,你用 arjen 这个主题用得不爽了,马上就可以用命令 M-x color-theme-zenburn 启动 zenburn 主题。zenburn 主题的效果如下图所示:

嗯,我更喜欢 arjen 这个主题。