Saturday, August 08, 2015

emacs set face colors

(set-face-attribute
 'default nil
 :background "dark green" :foreground "white"
 :font "Monaco" :height 200)

(set-face-attribute
 'mode-line nil
 :height 160 ;; affects everything
 :foreground "black" :background "orange1")

(set-face-attribute
 'mode-line-inactive nil
 :foreground "gray70" :background "DarkOrange4"
 :box '(:line-width 1 :color "black"))

No comments: