Hi, I set up org todo keyword faces like so:
(setq org-todo-keyword-faces
'(("FAIL" . org-warning)
("MISSING" . org-warning)
))
But at html export, the keywords are green because they are done
states. So additionally I have to set :
(setq org-export-html-style-extra
"<style type=\"text/css\">
<!--/*--><![CDATA[/*><!--*/
.FAIL { color: red; }
.MISSING { color: red; }
/*]]>*/-->
</style>")
I think the default style should be what is set in org-todo-keyword-faces.
