diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-29 11:41:07 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-29 11:41:07 +0200 |
| commit | 789f0a3474e6ad6c11e07f2c61d5994b2375bdba (patch) | |
| tree | 61ee8a3600f36bb4795b48cf3cbefa5200cdc83a /soria-theme.el | |
| parent | ae06bb3209e9f33d9867e8e3e9542dad4910d312 (diff) | |
| download | soria-789f0a3474e6ad6c11e07f2c61d5994b2375bdba.tar.gz soria-789f0a3474e6ad6c11e07f2c61d5994b2375bdba.zip | |
Added support for markup-faces
This also includes adoc-mode.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'soria-theme.el')
| -rw-r--r-- | soria-theme.el | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/soria-theme.el b/soria-theme.el index de41164..947dbe0 100644 --- a/soria-theme.el +++ b/soria-theme.el @@ -1387,6 +1387,53 @@ The theme has to be reloaded after changing anything in this group." `(org-special-keyword ((,class (:inherit org-done)))) + ;; markup-faces (which also includes adoc-mode) + + `(markup-title-0-face + ((,class (:inherit org-level-1)))) + + `(markup-title-1-face + ((,class (:inherit org-level-1)))) + + `(markup-title-2-face + ((,class (:inherit org-level-2)))) + + `(markup-title-3-face + ((,class (:inherit org-level-3)))) + + `(markup-title-4-face + ((,class (:inherit org-level-4)))) + + `(markup-title-5-face + ((,class (:inherit org-level-5)))) + + `(markup-meta-face + ((,class (:inherit org-level-1)))) + + `(markup-meta-hide-face + ((,class (:inherit org-level-1)))) + + `(markup-list-face + ((,class (:inherit org-table)))) + + `(markup-internal-reference-face + ((,class (:inherit link)))) + + `(markup-reference-face + ((,class (:inherit link)))) + + `(markup-typewriter-face + ((,class (:inherit org-verbatim)))) + + `(markup-verbatim-face + ((,class (:inherit org-verbatim)))) + + `(markup-comment-face + ((,class (:inherit font-lock-comment-face)))) + + `(markup-anchor-face + ((,class (:inherit org-target)))) + ;; modeline: this is the base for faces from some modelines (doom-modeline). `(mode-line-emphasis |
