From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: kai.grossjohann@uni-duisburg.de (Kai =?iso-8859-1?q?Gro=DFjohann?=) Newsgroups: gmane.emacs.help Subject: Re: Colorizing Emacs Date: Wed, 05 Mar 2003 09:53:36 +0100 Organization: University of Duisburg, Germany Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <84el5m5h4f.fsf@lucy.is.informatik.uni-duisburg.de> References: <84llzuffpr.fsf@lucy.is.informatik.uni-duisburg.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1046854577 9677 80.91.224.249 (5 Mar 2003 08:56:17 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 5 Mar 2003 08:56:17 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 05 09:56:16 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18qUhE-0002Vw-00 for ; Wed, 05 Mar 2003 09:56:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18qUgf-0003X7-02 for gnu-help-gnu-emacs@m.gmane.org; Wed, 05 Mar 2003 03:55:41 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!logbridge.uoregon.edu!fu-berlin.de!uni-berlin.de!lucy.is.informatik.uni-duisburg.DE!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 60 Original-NNTP-Posting-Host: lucy.is.informatik.uni-duisburg.de (134.91.35.216) Original-X-Trace: fu-berlin.de 1046854422 62696204 134.91.35.216 (16 [73968]) User-Agent: Gnus/5.090016 (Oort Gnus v0.16) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:eynmCVY8cl3lXDBf9EGpxcwD1/c= Original-Xref: shelby.stanford.edu gnu.emacs.help:110839 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:7340 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:7340 Lucas writes: > BTW, I have to say that I'm curious to know what are *your* colors ? > Would you mind posting your config' ? :) Hm. Lessee now... ~/.Xresources has this: #define KAIFG black #define KAIBG gainsboro #define KAIBG_ALT grey #define KAIBG_HILITE ghostwhite *Foreground: KAIFG *Background: KAIBG Emacs*background: KAIBG Emacs*pointerColor: KAIFG Emacs.pane.menubar.background: KAIBG_ALT Emacs.pane.menubar.buttonForeground: red Emacs.pane.menubar.buttonBackground: green Emacs.pane.menubar.font: KAIFONT_SMALL Emacs.menu*.font: KAIFONT_SMALL Emacs.menu*.background: KAIBG_ALT Emacs.fringe.attributeBackground: KAIBG_ALT And ~/.emacs has this: (set-mouse-color "black") (eval-after-load "custom" '(progn (set-face-bold-p 'custom-button-face t))) ;; if font has no italic, use color (unless (condition-case nil (x-resolve-font-name (x-make-font-italic (x-get-resource "emacs" "font"))) (error nil)) (mapcar (lambda (f) (when (face-italic-p f) (set-face-foreground f "seagreen"))) (face-list))) (set-face-background 'highlight "lightsteelblue") (set-face-background 'region "ghostwhite") (eval-after-load "wid-edit" '(progn (set-face-background 'widget-field-face "ghostwhite"))) (eval-after-load "xslide-font" '(progn (set-face-foreground 'xsl-fo-alternate-face "seagreen"))) And then there is some stuff in ~/.gnus: (set-face-foreground 'gnus-header-content-face "indianred4") (set-face-foreground 'gnus-header-newsgroups-face "midnightblue") Does this help? -- A preposition is not a good thing to end a sentence with.