From b60a4d0722beb05c02385b6ac67d1edc934965ee Mon Sep 17 00:00:00 2001 From: Allen Lee Date: Tue, 15 Jan 2013 08:45:22 -0500 Subject: [PATCH] Adding colors for shell-mode and term-mode --- solarized-definitions.el | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/solarized-definitions.el b/solarized-definitions.el index d6b1a5c..0a509ce 100644 --- a/solarized-definitions.el +++ b/solarized-definitions.el @@ -514,13 +514,23 @@ the \"Gen RGB\" column in solarized-definitions.el to improve them further." (font-latex-sectioning-5-face ((t (,@fg-violet)))) ;;flyspell (flyspell-incorrect ((t (,@fg-red)))) - (flyspell-duplicate ((t (,@fg-yellow))))) + (flyspell-duplicate ((t (,@fg-yellow)))) + ;;ansi-term + (term-color-black ((t ( ,@fg-base02)))) + (term-color-red ((t ( ,@fg-red)))) + (term-color-green ((t ( ,@fg-green)))) + (term-color-yellow ((t ( ,@fg-yellow)))) + (term-color-blue ((t ( ,@fg-blue)))) + (term-color-magenta ((t ( ,@fg-magenta)))) + (term-color-cyan ((t ( ,@fg-cyan)))) + (term-color-white ((t ( ,@fg-base00))))) ((foreground-color . ,(when (<= 16 (display-color-cells)) base0)) (background-color . ,back) (background-mode . ,mode) (cursor-color . ,(when (<= 16 (display-color-cells)) - base0))))))))) + base0)) + (ansi-color-names-vector . [,base02 ,red ,green ,yellow ,blue ,magenta ,cyan ,base00])))))))) (defmacro create-solarized-theme (mode) (let* ((theme-name (intern (concat "solarized-" (symbol-name mode))))