dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit 07d260962b03342440db3ab3d19b33e44fc598b9
parent 9e6b88df9c6b82151ba29086b2ceb1558c08ce6b
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Wed,  1 Feb 2023 07:47:24 +0100

Support more heading levels

Diffstat:
M.emacs.d/eighters-theme.el | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git 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))))