Skip to content

Commit

Permalink
feat(theme): improve search highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
terlar committed Oct 23, 2024
1 parent e5e7065 commit 3911b69
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lisp/readable-mono-theme.el
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,10 @@ For example links."
`(completions-common-part ((t (:inherit readable-mono-theme-strong))))
`(completions-first-difference ((t (:inherit readable-mono-theme-emphasis))))
`(highlight ((t (:inverse-video t))))
`(isearch ((t (:inherit highlight))))
`(isearch ((((background light)) (:inherit highlight :foreground ,l-fg))
(((background dark)) (:inherit highlight :foreground ,d-fg))))
`(isearch-fail ((t (:inherit error))))
`(lazy-highlight ((t (:inherit readable-mono-theme-subordinate :inverse-video t))))
`(lazy-highlight ((t (:inherit (highlight readable-mono-theme-subordinate)))))
`(match ((t (:inherit highlight))))
`(region
((((background light)) (:foreground ,l-bg :background ,l-fg))
Expand Down Expand Up @@ -468,6 +469,9 @@ For example links."
;;;;; haskell
`(haskell-interactive-face-prompt ((t (:inherit readable-mono-theme-strong))))

;;;;; idle-highlight
`(idle-highlight ((t (:inherit (lazy-highlight)))))

;;;;; imenu-list
`(imenu-list-entry-face-0 ((t (:foreground unspecified))))
`(imenu-list-entry-face-1 ((t (:foreground unspecified))))
Expand Down

0 comments on commit 3911b69

Please sign in to comment.