diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-01-22 23:05:15 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-01-22 23:05:15 -0500 |
commit | a4b053da8e07f2f390730eaaf33a61b66edb0e04 (patch) | |
tree | 0ac3e5b7cb8762be48cf9efaae380328f89f6416 | |
parent | 7d992d6d01523fadb69de78965cb0841ab563854 (diff) | |
download | emacs.d-a4b053da8e07f2f390730eaaf33a61b66edb0e04.tar.gz |
Set term face colors
-rw-r--r-- | lisp/init-appearance.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/init-appearance.el b/lisp/init-appearance.el index 31518e1..99d2033 100644 --- a/lisp/init-appearance.el +++ b/lisp/init-appearance.el @@ -42,6 +42,13 @@ '(gnus-cite-2 ((t (:inherit font-lock-string-face)))) '(gnus-header-name ((t (:inherit font-lock-constant-face)))) '(gnus-header-content ((t (:inherit default)))) + '(term-color-black ((t (:inherit default)))) + '(term-color-red ((t (:inherit font-lock-string-face)))) + '(term-color-green ((t (:foreground "#3cb371")))) + '(term-color-yellow ((t (:inherit font-lock-doc-face)))) + '(term-color-blue ((t (:inherit font-lock-function-name-face)))) + '(term-color-magenta ((t (:foreground "#8b008b")))) + '(term-color-cyan ((t (:foreground "#008b8b")))) ;; Darken a bit (was gray40). '(font-lock-keyword-face ((t (:foreground "gray33"))))) |