From 9bb373a8af63916b2392811f71b6b337653b3a6e Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 7 Oct 2024 13:12:13 +0100 Subject: [PATCH] Customise org-noter face colours using base16 theme --- README.org | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.org b/README.org index 31ba382..2b48617 100644 --- a/README.org +++ b/README.org @@ -139,7 +139,12 @@ Configure the look and feel of Emacs (plist-get base16-current-theme-colors :base01)) ;; Set `org-hide' face to actually match background colour (set-face-attribute 'org-hide nil :foreground - (plist-get base16-current-theme-colors :base00))) + (plist-get base16-current-theme-colors :base00)) + (with-eval-after-load 'org-noter + (set-face-attribute 'org-noter-no-notes-exist-face nil :foreground + (plist-get base16-current-theme-colors :base08)) + (set-face-attribute 'org-noter-notes-exist-face nil :foreground + (plist-get base16-current-theme-colors :base0B)))) (require 'server) (add-hook 'after-init-hook