]> git.donarmstrong.com Git - org-ref.git/blobdiff - org-ref.org
uses defpar which causes an issue on loading for me.
[org-ref.git] / org-ref.org
index f01473b388c5fa6f1f25db89eb1b6d638ab5f4c2..e0ce7436c73dad8003305084649947cb302bab0a 100644 (file)
@@ -412,7 +412,7 @@ label:test
 
 
 (defcustom org-ref-label-color
-  "black"
+  "dark magenta"
   "Color of label links"
   :group 'org-ref)
 
@@ -452,6 +452,7 @@ label:test
   `((t (:inherit org-link :foreground ,org-ref-ref-color)))
   "Face for ref links in org-ref.")
 
+
 (defun org-ref-colorize-links ()
   "Colorize org-ref links."
   (hi-lock-mode 1)
@@ -459,6 +460,7 @@ label:test
   (highlight-regexp org-ref-label-re 'org-ref-label-face)
   (highlight-regexp org-ref-ref-re 'org-ref-ref-face))
 
+
 (when org-ref-colorize-links
   (add-hook 'org-mode-hook 'org-ref-colorize-links))
 #+END_SRC