Suppose I want the face helm-match
to have an unset foreground. Unfortunately, helm-match
inherits from match
so, if I try to unset the foreground normally:
(set-face-foreground 'helm-match nil)
The inherited foreground becomes active. I'd rather not mess with the match
face itself (because I can't tell what ramifications that would have), and I would like to avoid hard coding the other values in helm-match
because I use multiple themes.
How can I achieve this sanely?