parsed.org

Tips by tag: colors

Changing Face Colors by cygnus on Mar 06, 2005 07:48 PM

To change the color of a particular face (e.g. font-lock-comment-face), use this elisp (editing where necessary):

(custom-set-faces
 '(font-lock-comment-face
   ((t (:foreground "lightblue" (background light))))
   )
)

lightblue and other color names are defined in rgb.txt, included with your emacs and X installations.

colorsconfigurationeditorselispemacsx11
RSS