How to change the face of the text in the minibuffer when running in terminal mode?

139 Views Asked by At

When pressing M-x in Emacs, the focus switches to the minibuffer. When running Emacs in terminal mode, I have found that this text is really difficult to read as it is dark blue and difficult to distinguish from the dark grey color of my terminal. How can I change the font color of the text I type into the minibuffer?

I want to do this from my ~/.emacs, so that it happens every time I start Emacs in non-windowed mode.

I'm using Red Hat and the GNOME Terminal, if that makes any difference.

1

There are 1 best solutions below

1
On
(custom-set-faces
 '(minibuffer-prompt ((t (:foreground "orange")))))