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

Re: Colori in Emacs...



On Sat, Sep 29, 2001 at 05:19:55PM +0200, Angelo Siciliano - wrote:
> Non riesco a cambiare il colore di background in Emacs.
> Di default è bianco, e fa male alla vista.

Uso pochissimo emacs, ma una volta ho carpito da un NG italiano
su linux i seguenti colori [da impostare in ~/.emacs]:

;;
;; colori di Luca Polo:
;;
 (cond (window-system
         (setq
           default-frame-alist '(
               (font . "9x15bold")
               (mouse-color . "yellow")
               (cursor-color . "yellow")
               (foreground-color . "white")
               (background-color . "black")
               (width . 80)
               (height . 50)))
           (set-face-foreground  'modeline  "yellow")
           (set-face-background  'modeline  "dark red")
           (set-face-background  'region    "blue")
           (set-face-foreground  'region    "yellow")
           (set-face-background  'highlight "blue")
           (set-default-font "9x15bold")
           (set-face-font 'modeline "9x15bold")))
;;



Reply to: