Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tweak(base): re-balance symbol-overlay colors to improve visibility #754

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tweak(base): re-balance symbol-overlay colors to improve visibility
Minor tweaks to colors so they're all more balanced, and a little bit
more visible across different themes. Some colors are still slightly
less visible on some themes compared to others, which I see no way
around without having per-theme specific colors.
  • Loading branch information
jimeh committed Sep 17, 2022
commit e2ec5fe3144340f62baec7acbfb96d32914c98ee
16 changes: 8 additions & 8 deletions doom-themes-base.el
Original file line number Diff line number Diff line change
Expand Up @@ -1312,14 +1312,14 @@
(symbol-overlay-default-face
(&dark :background (doom-lighten region 0.1) :distant-foreground fg-alt)
(&light :background (doom-darken region 0.1) :distant-foreground fg-alt))
(symbol-overlay-face-1 :background (doom-blend blue bg 0.4) :distant-foreground fg-alt)
(symbol-overlay-face-2 :background (doom-blend violet bg 0.4) :distant-foreground fg-alt)
(symbol-overlay-face-3 :background (doom-blend yellow bg 0.3) :distant-foreground fg-alt)
(symbol-overlay-face-4 :background (doom-blend orange bg 0.3) :distant-foreground fg-alt)
(symbol-overlay-face-5 :background (doom-blend red bg 0.3) :distant-foreground fg-alt)
(symbol-overlay-face-6 :background (doom-blend magenta bg 0.3) :distant-foreground fg-alt)
(symbol-overlay-face-7 :background (doom-blend green bg 0.4) :distant-foreground fg-alt)
(symbol-overlay-face-8 :background (doom-blend cyan bg 0.2) :distant-foreground fg-alt)
(symbol-overlay-face-1 :background (doom-blend blue bg 0.38) :distant-foreground fg-alt)
(symbol-overlay-face-2 :background (doom-blend violet bg 0.4) :distant-foreground fg-alt)
(symbol-overlay-face-3 :background (doom-blend yellow bg 0.35) :distant-foreground fg-alt)
(symbol-overlay-face-4 :background (doom-blend orange bg 0.375) :distant-foreground fg-alt)
(symbol-overlay-face-5 :background (doom-blend red bg 0.38) :distant-foreground fg-alt)
(symbol-overlay-face-6 :background (doom-blend magenta bg 0.38) :distant-foreground fg-alt)
(symbol-overlay-face-7 :background (doom-blend green bg 0.38) :distant-foreground fg-alt)
(symbol-overlay-face-8 :background (doom-blend cyan bg 0.3) :distant-foreground fg-alt)
;;;; swiper
(swiper-line-face :background blue :foreground base0)
(swiper-match-face-1 :inherit 'unspecified :background base0 :foreground base5)
Expand Down