commit 597c3901cc06c894364fe3d061133d8cc3500ccb
parent 3e8a128438cb001deff7bbd2ddf6d1cbbe35c428
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sat, 14 Jan 2023 13:50:33 +0100
Tweak some faces
* Make region more prominent. The main blocker for that was
lazy-highlight's cyan hues being too close, but now that it has
:inverse-video, s'all good.
* Make subgroup matches more prominent. Go with red & blue to "frame"
magenta.
* Add dim backgrounds to (Org, Markdown) code snippets, to mimic that
"inset" effect other applications sometimes apply to those.
* Remove green foreground to ~Org inline code~; let background and
serifs speak for themselves.
* Crank up saturation on =Org verbatim= `Markdown inline code` to
compensate lighter background.
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/.emacs.d/eighters-theme.el b/.emacs.d/eighters-theme.el
@@ -262,8 +262,8 @@
`(info-title-4 ((t (:inherit eighters-title-4))))
`(isearch ((t (:background ,bg-red :foreground ,fg-magenta :inverse-video t))))
`(isearch-fail ((t (:background ,bg-red :weight bold))))
- `(isearch-group-1 ((t (:background ,bg-red :foreground ,fg-blue :inverse-video t))))
- `(isearch-group-2 ((t (:background ,bg-red :foreground ,fg-cyan :inverse-video t))))
+ `(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))))
`(link ((t (:foreground ,fg-blue :underline t))))
`(link-visited ((t (:foreground ,fg-magenta-dim :underline t))))
@@ -302,7 +302,7 @@
`(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 (:foreground ,fg-yellow :weight bold))))
- `(org-code ((t (:foreground ,fg-green-dim :inherit fixed-pitch-serif))))
+ `(org-code ((t (:background ,bg-hl-dim :inherit fixed-pitch-serif))))
`(org-date ((t (:inherit eighters-date))))
`(org-done ((t (:inherit success))))
`(org-drawer ((t (:inherit shadow))))
@@ -310,8 +310,8 @@
`(org-special-keyword ((t (:inherit shadow))))
`(org-tag ((t (:inherit font-lock-constant-face))))
`(org-todo ((t (:inherit error))))
- `(org-verbatim ((t (:foreground ,fg-magenta-dim :inherit fixed-pitch-serif))))
- `(region ((t (:background ,bg-blue-dim))))
+ `(org-verbatim ((t (:background ,bg-hl-dim :foreground ,fg-magenta :inherit fixed-pitch-serif))))
+ `(region ((t (:background ,bg-blue))))
`(separator-line ((t (:background ,bg-hl :height 0.1))))
`(shadow ((t (:foreground ,fg-dimmer))))
`(show-paren-match ((t (:foreground ,fg-cyan :inverse-video t))))
@@ -385,7 +385,7 @@
`(markdown-header-face-4 ((t (:inherit eighters-title-4))))
`(markdown-header-face-5 ((t (:inherit eighters-title-5))))
`(markdown-header-face-6 ((t (:inherit eighters-title-6))))
- `(markdown-inline-code-face ((t (:foreground ,fg-magenta-dim :inherit markdown-code-face))))
+ `(markdown-inline-code-face ((t (:background ,bg-hl-dim :foreground ,fg-magenta :inherit markdown-code-face))))
`(markdown-pre-face ((t (:background ,bg-hl-dimmer :inherit markdown-code-face :extend t))))
`(which-key-group-description-face ((t (:foreground ,fg-green-dim))))
`(which-key-key-face ((t :weight bold :inherit help-key-binding)))