diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-04-16 23:51:43 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-04-16 23:52:08 -0400 |
commit | 53a49ff25c62722908031c4be89f2a6b2960c513 (patch) | |
tree | 72021a55ea3b4be3632a8cb53cfa27ceabca5fbe /lisp | |
parent | 08ff82e3a49343b143cf1e0f5ef0680c2ee9e245 (diff) | |
download | emacs.d-53a49ff25c62722908031c4be89f2a6b2960c513.tar.gz |
theme: Tweak faces for rst levels
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/km-theme.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/km-theme.el b/lisp/km-theme.el index ed1bc7c..ed0d11f 100644 --- a/lisp/km-theme.el +++ b/lisp/km-theme.el @@ -122,6 +122,9 @@ '(outline-1 ((t (:inherit font-lock-doc-face)))) '(outline-2 ((t (:inherit font-lock-function-name-face)))) '(outline-3 ((t (:inherit font-lock-keyword-face)))) + '(rst-level-1 ((t (:weight bold)))) + '(rst-level-2 ((t (:weight bold)))) + '(rst-level-3 ((t (:inherit default)))) `(whitespace-indentation ((t (:background ,bg-dark)))) `(whitespace-trailing ((t (:background ,bg-dark)))))) |