diff options
| -rw-r--r-- | .emacs.d/eighters-theme.el | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el index 7506002..cd599b7 100644 --- a/.emacs.d/eighters-theme.el +++ b/.emacs.d/eighters-theme.el @@ -133,6 +133,10 @@ "Face for level 5 headings.") (defface eighters-title-6 nil "Face for level 6 headings.") +(defface eighters-title-7 nil + "Face for level 7 headings.") +(defface eighters-title-8 nil + "Face for level 8 headings.") (defface eighters-ui nil "Face for inalterable UI elements.") @@ -152,7 +156,9 @@ `(eighters-title-3 ((t (:foreground ,fg-yellow-subtle :weight bold :height 1.12 :inherit variable-pitch)))) `(eighters-title-4 ((t (:foreground ,fg-red-subtle :weight bold :height 1.04 :inherit variable-pitch)))) `(eighters-title-5 ((t (:foreground ,fg-magenta-subtle :weight bold :inherit variable-pitch)))) - `(eighters-title-6 ((t (:foreground ,fg-blue-subtle :slant italic :inherit variable-pitch)))) + `(eighters-title-6 ((t (:foreground ,fg-blue-subtle :weight bold :inherit variable-pitch)))) + `(eighters-title-7 ((t (:foreground ,fg-cyan-subtle :weight bold :inherit variable-pitch)))) + `(eighters-title-8 ((t (:foreground ,fg-green-subtle :weight bold :inherit variable-pitch)))) `(eighters-citation-1 ((t (:foreground ,fg-cyan-dim)))) `(eighters-citation-2 ((t (:foreground ,fg-green-dim)))) `(eighters-citation-3 ((t (:foreground ,fg-yellow-dim)))) @@ -301,6 +307,8 @@ `(outline-4 ((t (:inherit eighters-title-4)))) `(outline-5 ((t (:inherit eighters-title-5)))) `(outline-6 ((t (:inherit eighters-title-6)))) + `(outline-7 ((t (:inherit eighters-title-7)))) + `(outline-8 ((t (:inherit eighters-title-8)))) `(org-block ((t (:background ,bg-hl-dimmer :inherit fixed-pitch-serif)))) `(org-block-begin-line ((t (:background ,bg-hl-dim :inherit shadow :extend t)))) `(org-block-end-line ((t (:background ,bg-hl-dim :inherit shadow :extend t)))) |
