Reputation: 1155
I'm a bit of an emacs noob.
I'm completely satisfied with tomorrow-night-bright-theme
except the fluorescent one below
I'v read some articles explaining how to change font faces in Emacs.
1. Changing highlight line color in emacs
2. Change Emacs syntax highlighting colors
However, I don't know what symbol is related to that color.
Upvotes: 1
Views: 5302
Reputation: 26094
Try M-x list-faces-display
RET. This will bring up a list of all defined faces, I guess you could easily spot the fluorescent one there.
Upvotes: 4
Reputation: 3057
M-x color-theme-print will give you a printed representation of the current colour theme and the lisp that you need to install it. Combined with list-faces-display it will solve your problem!
Upvotes: 1
Reputation: 73246
My usual approach is to move point to the text in question and type C-uC-x= which nowadays runs the command what-cursor-position
with the DETAIL argument set, which tends to give you all the information you want on that text, including the faces involved, which are linked through to their details and customize interfaces.
Upvotes: 5