diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-06-10 23:17:43 +0200 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-06-21 20:31:15 +0200 |
| commit | 5182db1d3ae66f462cf3292fdc08c5922fc425b9 (patch) | |
| tree | 567fa50ef06d0a6d42f713ca82072031ed859aa3 | |
| parent | 720c45c89c8412a7046bfea0503ec5051f4447f3 (diff) | |
| download | dotfiles-5182db1d3ae66f462cf3292fdc08c5922fc425b9.tar.xz | |
Enforce some theming consistency
* magenta/red is "the current thing"
* cyan is "other things elsewhere that match the thing"
| -rw-r--r-- | .emacs.d/eighters-theme.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el index 7ec5166..cb8b43e 100644 --- a/.emacs.d/eighters-theme.el +++ b/.emacs.d/eighters-theme.el @@ -217,8 +217,10 @@ `(compilation-mode-line-exit ((t (:inherit compilation-info)))) `(compilation-mode-line-fail ((t (:inherit compilation-error)))) `(compilation-mode-line-run ((t (:inherit compilation-warning)))) - `(completions-common-part ((t (:foreground ,fg-dimmer)))) + `(completions-annotations ((t (:inherit font-lock-doc-face)))) + `(completions-common-part ((t (:inherit shadow)))) `(completions-first-difference ((t (:foreground ,fg-magenta :weight bold)))) + `(completions-highlight ((t (:background ,bg-magenta)))) `(custom-button ((t (:inherit eighters-button)))) `(custom-comment ((t (:background ,bg-hl-dim :foreground ,fg-dim)))) `(custom-variable-tag ((t (:inherit eighters-title-3)))) @@ -227,7 +229,8 @@ `(dired-directory ((t (:weight bold :foreground ,fg-blue)))) `(dired-header ((t (:inherit eighters-title-1)))) `(dired-special ((t (:foreground ,fg-yellow-dim)))) - `(eldoc-highlight-function-argument ((t (:background ,bg-yellow :foreground ,fg-yellow :weight bold)))) + `(eglot-highlight-symbol-face ((t (:background ,bg-cyan-dim :underline ,fg-cyan-dim)))) + `(eldoc-highlight-function-argument ((t (:background ,bg-red :foreground ,fg-magenta :inverse-video t :weight bold)))) `(emacs-authors-author ((t (:inherit (bold eighters-identity variable-pitch))))) `(emacs-authors-descriptor ((t (:inherit (shadow variable-pitch))))) `(emacs-news-does-not-need-documentation ((t (:foreground ,fg-dimmer)))) @@ -307,7 +310,7 @@ `(header-line ((t (:background ,bg-hl :inherit eighters-ui)))) `(help-key-binding ((t (:background ,bg-hl-dimmer :foreground ,fg-magenta :inherit fixed-pitch-serif)))) `(highlight ((t (:background ,bg-hl-dim)))) - `(icomplete-selected-match ((t (:weight bold :inherit highlight)))) + `(icomplete-selected-match ((t (:inherit completions-highlight)))) `(info-title-1 ((t (:inherit eighters-title-1)))) `(info-title-2 ((t (:inherit eighters-title-2)))) `(info-title-3 ((t (:inherit eighters-title-3)))) @@ -316,14 +319,14 @@ `(isearch-fail ((t (:background ,bg-red :weight bold)))) `(isearch-group-1 ((t (:background ,bg-red :foreground ,fg-red :inverse-video t)))) `(isearch-group-2 ((t (:background ,bg-red :foreground ,fg-blue :inverse-video t)))) - `(lazy-highlight ((t (:background ,bg-cyan :foreground ,fg-cyan-subtle :inverse-video t)))) + `(lazy-highlight ((t (:background ,bg-cyan :foreground ,fg-cyan :inverse-video t)))) `(link ((t (:foreground ,fg-blue :underline t)))) `(link-visited ((t (:foreground ,fg-magenta-dim :underline t)))) `(log-edit-header ((t (:inherit minibuffer-prompt)))) `(log-edit-headers-separator ((t (:inherit separator-line)))) `(log-edit-summary ((t (:inherit eighters-title-1)))) `(Man-overstrike ((t (:foreground ,fg-cyan :inherit bold)))) - `(match ((t (:background ,bg-blue)))) + `(match ((t (:background ,bg-cyan-dim :underline ,fg-cyan-dim)))) `(message-cited-text-1 ((t (:inherit eighters-citation-1)))) `(message-cited-text-2 ((t (:inherit eighters-citation-2)))) `(message-cited-text-3 ((t (:inherit eighters-citation-3)))) |
