I use helm a lot. I have a problem setting colors. In my init.el I have
(require 'helm)
(require 'helm-config)
;; change active line color
(set-face-attribute 'helm-selection nil
:background "red"
:foreground "white")
Supose I have the situation in the picture below where I search for XXX. In C the helm-occur buffer uses red/white colors for the selected line. But in the parent buffer in point B I still have green and purple for the pattern match. I'd like to change the colors in B so that they match what happens in C. I suppose I should do something like the code above, but I don't understand what controls the colors in B
