summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2021-04-20 17:02:38 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2021-07-09 08:47:14 +0200
commita922b1764d1a1d49db132e4bd70c702b10dbc524 (patch)
tree6d79d502cd3584a2bb3693a9cc71d1522e35ef65
parent4c646a6bdeba1a5a55fdb78991c009e46853618b (diff)
downloadorg-mode-a922b1764d1a1d49db132e4bd70c702b10dbc524.tar.gz
faces: Add `org-cite' and `org-cite-key' faces
* lisp/org-faces.el (org-cite): (org-cite-key): New faces.
-rw-r--r--lisp/org-faces.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/org-faces.el b/lisp/org-faces.el
index 937c2d6..a4fb0f0 100644
--- a/lisp/org-faces.el
+++ b/lisp/org-faces.el
@@ -168,6 +168,14 @@ set the properties in the `org-column' face. For example, set
"Face for headline with the ARCHIVE tag."
:group 'org-faces)
+(defface org-cite '((t :inherit link))
+ "Face for citations."
+ :group 'org-faces)
+
+(defface org-cite-key '((t :inherit link))
+ "Face for citation keys."
+ :group 'org-faces)
+
(defface org-link '((t :inherit link))
"Face for links."
:group 'org-faces)