[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: status line color
From: |
notbob |
Subject: |
Re: status line color |
Date: |
Mon, 08 Jun 2009 06:43:10 -0600 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) |
Bettina Kraus <bettinakraus1@gmx.de> writes:
> in my fresh Linux installation, the status line of Emacs
> (the line which shows the current line number etc.)
Emacs calls this the mode-line.
> is by default dark blue, so that I cannot read anything
> that is printed in this line. How can I change the
> background color of the status line?
Emacs calls these fonts and color attributes "faces". You can see
what your current default faces are with M-x list-display-colors. To
change faces, use your menu.
F10 > o > 0 > f RTRN
....which will give your all your faces to change. Make sure you save
your change: F10 > o > o
This will put an entry in your ~/.emacs file. If you don't have that
file, create it. Check the entry. Should look something like this:
(minibuffer-prompt ((t (:foreground "cyan3")))))
In this case, my change is for the minibuffer. You can change a lot
of faces with these .emacs entries.
nb