I am using following setup in my .emacs
file:
(setq hl-todo-keyword-faces
'(("TODO" . "#FF0000")
("FIXME" . "#FF0000")
("DEBUG" . "#A020F0")
("GOTCHA" . "#FF4500")
("STUB" . "#1E90FF")))
Here all those keywords shown as bold and as their defined color.
In addition to that, I want to provide yellow background highlight color to all. Is it possible?
"#FF0000"
withhl-todo-TODO
inhl-todo-keyword-faces
? – Tobias Feb 19 '20 at 13:13