I am hunting all around - I want to change a color but I need to know the "face" that needs changing
Updates - Formatting, one more small information.
I have been hunting documentation and trying things in my .emacs file for 2 days now..
The type of message that appears at the bottom of the screen, one example is "Save the file <filespec>? (y,n,! ...." On my system it is dark blue on black. Also "Modified buffers exist..." dark blue on black - hard to read. What face is that?
describe-face for another prompt with the same coloring says it is the default face. So I tried changing that from the M-x prompt but that turned my screen white on yellow.
The mode-line line works - my active mode line is white on blue.
Does it matter that I am running emacs in a tty instead of the GUI version?
I am pretty that's the minibuffer-prompt face. But that's on the "already tried" list so not sure why that didn't work.
(custom-set-faces '(minibuffer-prompt ((t (:foreground "yellow" :weight bold))))) does the job for me.
Edit: oh yeah, as others have already mentioned it might also come from default. Other faces inherit from default so for example with the settings above you'd still inherit :background from default since we are not overriding it.