Skip to content

Instantly share code, notes, and snippets.

@radamant
Created March 30, 2013 16:41
Show Gist options
  • Save radamant/5277376 to your computer and use it in GitHub Desktop.
Save radamant/5277376 to your computer and use it in GitHub Desktop.
(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