Differentiate org-mode bold face

1 · Shane Mulligan · Sept. 21, 2019, noon
The issue is that in a terminal, the generic bold face alone is not differentiable. org-mode uses the generic bold face for text within asterisks. Therefore we create a new face and give it a similar look but different colour to org-verbatim. (defface org-bold '((t :foreground "#d2268b" :background "#2e2e2e" :weight bold :underline t )) "Face for org-mode bold." :group 'org-faces ) (setq org-emphasis-alist '(("*" ;; (bold :foreground "Orange" ) org-bold) ("/" italic) ("_" underline) ("=" ;; (:ba...