branch: elpa/adoc-mode commit 20772277b8a5b8c08d49bd03043d5d4dd7a815e9 Author: Bozhidar Batsov <bozhi...@batsov.dev> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Improve the references and link title faces --- adoc-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adoc-mode.el b/adoc-mode.el index a09ffa6946..fc673cea32 100644 --- a/adoc-mode.el +++ b/adoc-mode.el @@ -835,13 +835,13 @@ something that is orthogonal to the adoc-bold-face etc faces." (defvar adoc-language-info-face 'adoc-language-info-face) (defface adoc-reference-face - '((t (:inherit adoc-markup-face))) + '((t (:inherit link))) "Face for link references." :group 'adoc-faces) (defvar adoc-reference-face 'adoc-reference-face) (defface adoc-link-title-face - '((t (:inherit font-lock-comment-face))) + '((t (:inherit adoc-markup-face))) "Face for reference link titles." :group 'adoc-faces) (defvar adoc-link-title-face 'adoc-link-title-face)