diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-03-03T23·15+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-03-03T23·15+0100 |
commit | 845fa34448b8c7c66a6b7cd18d2b2f2d5016542c (patch) | |
tree | 8e484265ae3137ec140a92af5ca90b9939dc342a /init/custom.el | |
parent | fc76db3d96626ba449a37d603e2a44c3c7d78123 (diff) |
feat(custom): Set term-mode colour scheme to Gruber Darker
Diffstat (limited to 'init/custom.el')
-rw-r--r-- | init/custom.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/init/custom.el b/init/custom.el index d91afb668c9c..61fbfabe85fa 100644 --- a/init/custom.el +++ b/init/custom.el @@ -37,4 +37,12 @@ '(rainbow-delimiters-depth-6-face ((t (:foreground "#268bd2")))) '(rainbow-delimiters-depth-7-face ((t (:foreground "#cb4b16")))) '(rainbow-delimiters-depth-8-face ((t (:foreground "#d33682")))) - '(rainbow-delimiters-depth-9-face ((t (:foreground "#839496"))))) + '(rainbow-delimiters-depth-9-face ((t (:foreground "#839496")))) + '(term-color-black ((t (:background "#282828" :foreground "#282828")))) + '(term-color-blue ((t (:background "#96a6c8" :foreground "#96a6c8")))) + '(term-color-cyan ((t (:background "#1fad83" :foreground "#1fad83")))) + '(term-color-green ((t (:background "#73c936" :foreground "#73c936")))) + '(term-color-magenta ((t (:background "#9e95c7" :foreground "#9e95c7")))) + '(term-color-red ((t (:background "#f43841" :foreground "#f43841")))) + '(term-color-white ((t (:background "#f5f5f5" :foreground "#f5f5f5")))) + '(term-color-yellow ((t (:background "#ffdd33" :foreground "#ffdd33"))))) |