0

I am using counsel-buffer-or-recentf in order to toggle in files under buffer and recentf. The selected line is not clear, which has blue background highlighting.

enter image description here

=> Is it possible to change the coloring of the highlight? or can I remove the highlights?

alper
  • 1,238
  • 11
  • 30

1 Answers1

1

Check out ivy-faces.el for most of the faces of interest. The face you are asking specifically is called ivy-current-match. You wanna call describe-face and choose customize this face for customization.

TerryTsao
  • 1,176
  • 4
  • 18
  • Can I also changge the other face that is white on the example; like the one that is not selected ? – alper Oct 31 '20 at 14:03
  • @alper A good command to use is `list-faces-display`, as suggested by [this answer](https://emacs.stackexchange.com/a/310/30574). It should be fairly obvious since the buffer display is WYSIWYG. – TerryTsao Nov 02 '20 at 03:28