dotfiles

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

commit c7a013839dca08536e00ec91aaef19ca48568c25
parent 781f01231e7b2fa697d6e7d1ffeea92514966a45
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Tue, 14 Jan 2025 22:30:01 +0100

Tone markup checkboxes down

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

diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el @@ -162,6 +162,8 @@ (defface eighters-button nil "Face for elements that can be \"pushed\" with RET.") +(defface eighters-checkbox nil + "Face for text that represents togglable boxes.") (defface eighters-citation-1 nil "Face for level 1 citations.") (defface eighters-citation-2 nil @@ -209,6 +211,7 @@ 'eighters ;;; Theme faces. `(eighters-button ((t (:background ,bg-hl-dimmer :box (:color ,bg-hl :style released-button) :inherit eighters-ui)))) + `(eighters-checkbox ((t (:background ,bg-hl-dim :foreground ,fg-blue-dim)))) `(eighters-citation-1 ((t (:foreground ,fg-cyan-dim)))) `(eighters-citation-2 ((t (:foreground ,fg-green-dim)))) `(eighters-citation-3 ((t (:foreground ,fg-yellow-dim)))) @@ -398,7 +401,7 @@ `(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)))) - `(org-checkbox ((t (:background ,bg-hl :foreground ,fg-yellow-dim :weight bold)))) + `(org-checkbox ((t (:inherit eighters-checkbox)))) `(org-code ((t (:background ,bg-hl-dim :inherit fixed-pitch-serif)))) `(org-date ((t (:inherit eighters-date)))) `(org-done ((t (:inherit success)))) @@ -526,6 +529,7 @@ `(forge-topic-slug-unread ((t ()))) `(markdown-blockquote-face ((t (:inherit eighters-citation-1)))) `(markdown-code-face ((t (:inherit fixed-pitch-serif)))) + `(markdown-gfm-checkbox-face ((t :inherit eighters-checkbox))) `(markdown-header-face-1 ((t (:inherit eighters-title-1)))) `(markdown-header-face-2 ((t (:inherit eighters-title-2)))) `(markdown-header-face-3 ((t (:inherit eighters-title-3))))