diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2020-09-26 15:54:31 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2020-09-26 15:54:31 +0300 |
| commit | f8cbba651049b8cf255a3c09bbdf00db8b84885b (patch) | |
| tree | fb0b2a634eabf61a159f3c65cdd2228a51ae0f43 | |
| parent | 2e3a60c46c5ac491cbc1457b9fc3bb34e10427d3 (diff) | |
Tweak colour of intense current line
This comes into effect when users opt for the relevant customisation
option (see the manual).
| -rw-r--r-- | modus-operandi-theme.el | 3 | ||||
| -rw-r--r-- | modus-vivendi-theme.el | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/modus-operandi-theme.el b/modus-operandi-theme.el index 29a5597..8ef44d6 100644 --- a/modus-operandi-theme.el +++ b/modus-operandi-theme.el @@ -1214,6 +1214,7 @@ AMOUNT is a customisation option." ;; ;; all pairs are combinable with themselves ("bg-hl-line" . "#f2eff3") + ("bg-hl-line-intense" . "#e0e0e0") ("bg-hl-alt" . "#fbeee0") ("bg-hl-alt-intense" . "#e8dfd1") ("bg-paren-match" . "#e0af82") @@ -1455,7 +1456,7 @@ Also bind `class' to ((class color) (min-colors 89))." 8 fg-dim magenta bg-alt bg-region)))) ;;;;; other custom faces `(modus-theme-hl-line ((,class :background ,(if modus-operandi-theme-intense-hl-line - bg-active bg-hl-line) + bg-hl-line-intense bg-hl-line) (and (>= emacs-major-version 27) '(:extend t))))) ;;;; standard faces ;;;;; absolute essentials diff --git a/modus-vivendi-theme.el b/modus-vivendi-theme.el index 5ea9601..7bd2a57 100644 --- a/modus-vivendi-theme.el +++ b/modus-vivendi-theme.el @@ -1214,6 +1214,7 @@ AMOUNT is a customisation option." ;; ;; all pairs are combinable with themselves ("bg-hl-line" . "#151823") + ("bg-hl-line-intense" . "#2f2f2f") ("bg-hl-alt" . "#181732") ("bg-hl-alt-intense" . "#282e46") ("bg-paren-match" . "#5f362f") @@ -1455,7 +1456,7 @@ Also bind `class' to ((class color) (min-colors 89))." 8 fg-dim magenta bg-alt bg-region)))) ;;;;; other custom faces `(modus-theme-hl-line ((,class :background ,(if modus-vivendi-theme-intense-hl-line - bg-active bg-hl-line) + bg-hl-line-intense bg-hl-line) (and (>= emacs-major-version 27) '(:extend t))))) ;;;; standard faces ;;;;; absolute essentials |
