diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2025-01-14 22:30:01 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2025-01-14 22:35:30 +0100 |
| commit | c7a013839dca08536e00ec91aaef19ca48568c25 (patch) | |
| tree | 1414233f3e990a72df3d0537004ab87a7d218c15 | |
| parent | 781f01231e7b2fa697d6e7d1ffeea92514966a45 (diff) | |
| download | dotfiles-c7a013839dca08536e00ec91aaef19ca48568c25.tar.xz | |
Tone markup checkboxes down
| -rw-r--r-- | .emacs.d/eighters-theme.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el index 94098b0..d81a070 100644 --- 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)))) |
