Created
March 30, 2013 16:41
-
-
Save radamant/5277376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defface term-color-black | |
'((t :foreground "black" :background "black")) | |
"Face used to render black color code." | |
:group 'term) | |
(defface term-color-red | |
'((t :foreground "red3" :background "red3")) | |
"Face used to render red color code." | |
:group 'term) | |
(defface term-color-green | |
'((t :foreground "green3" :background "green3")) | |
"Face used to render green color code." | |
:group 'term) | |
(defface term-color-yellow | |
'((t :foreground "yellow3" :background "yellow3")) | |
"Face used to render yellow color code." | |
:group 'term) | |
(defface term-color-blue | |
'((t :foreground "blue2" :background "blue2")) | |
"Face used to render blue color code." | |
:group 'term) | |
(defface term-color-magenta | |
'((t :foreground "magenta3" :background "magenta3")) | |
"Face used to render magenta color code." | |
:group 'term) | |
(defface term-color-cyan | |
'((t :foreground "cyan3" :background "cyan3")) | |
"Face used to render cyan color code." | |
:group 'term) | |
(defface term-color-white | |
'((t :foreground "white" :background "white")) | |
"Face used to render white color code." | |
:group 'term) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment