help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fell in love with that color theme & fonts, how can I make it?


From: Gian Uberto Lauri
Subject: Fell in love with that color theme & fonts, how can I make it?
Date: Tue, 30 Aug 2005 19:29:12 +0200

>>>>> "ES" == Emre Sevinc <emres@bilgi.edu.tr> writes:

ES> http://www.cs.helsinki.fi/u/jesnellm/blog/stc/slime-sprof.png

ES> and fell in love with the color theme and fonts.

Almost No Lisp Way

Issue the command list-faces-display, take a look to all the faces you
see.

Chose the face you want to change, mouse middle click or return 

You are taken  to a bufffer where they offer  the chanche to customize
the face. Choose whatever you like  (font color etc), set and save for
future sessions.

Go back and again with next face.

For the background

(set-background-color "black")
 
in your .emacs

The Lisp Way For Colors:

Read the online docs for these functions (I have them in EMacs 22...)

set-face-attribute                 set-face-attribute-from-resource
set-face-attributes-from-resources
set-face-background                set-face-background-pixmap
set-face-bold-p                    set-face-doc-string
set-face-documentation             set-face-font
set-face-foreground                set-face-inverse-video-p
set-face-italic-p                  set-face-stipple
set-face-underline                 set-face-underline-p

i.e.

;; It's a green darker than that's on the web page.
;; use list-color-display to discover all color names
;; or use #RRGGBB colors
(set-face-foreground font-lock-comment-face "OliveDrab")


-- 
 /\            ___
/___/\__|_|\_|__|___Gian Uberto Lauri_____________________
  //--\ | | \|  |   Integralista GNUslamico  
\/                  e coltivatore diretto di software




reply via email to

[Prev in Thread] Current Thread [Next in Thread]