Custom faces for mode
I don’t like how the dakrone
theme colors the org-level-3
face. It’s the same
color as a link. One way to solve it is to create a custom function that
changes the face and add it to the org-mode-hook
.
1: (defun my/org-mode-faces () 2: "Org-mode face remapping for `org-mode-hook'." 3: (when (string-equal "dakrone" spacemacs--cur-theme) 4: (face-remap-add-relative 'org-level-3 5: :foreground "dark magenta"))) 6: (add-hook 'org-mode-hook 7: (lambda () 8: (my/org-mode-faces)))