From 1534e0927589f61ecc910846d991a567d61e7498 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Sat, 10 Aug 2019 22:43:24 -0400 Subject: theme: Replace many values with closest fg- or bg- color --- lisp/km-theme.el | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'lisp') diff --git a/lisp/km-theme.el b/lisp/km-theme.el index a129d76..9dc4319 100644 --- a/lisp/km-theme.el +++ b/lisp/km-theme.el @@ -34,9 +34,9 @@ '(compilation-info ((t (:inherit font-lock-function-name-face)))) '(cursor ((t (:background "#f08080")))) `(default ((t (:background ,bg)))) - `(diff-added ((t (:foreground ,diff-added :background "grey98")))) - '(diff-context ((t (:foreground "grey10" :background "grey98")))) - `(diff-removed ((t (:foreground ,diff-removed :background "grey98")))) + `(diff-added ((t (:foreground ,diff-added :background ,bg-mid)))) + `(diff-context ((t (:foreground ,fg-light :background ,bg-mid)))) + `(diff-removed ((t (:foreground ,diff-removed :background ,bg-mid)))) '(dired-subtree-depth-1-face ((t (:background "gray80")))) '(dired-subtree-depth-2-face ((t (:background "gray90")))) '(dired-subtree-depth-3-face ((t (:background "gray95")))) @@ -71,16 +71,16 @@ '(isearch ((t (:inherit match)))) '(magit-cherry-equivalent ((t (:inherit font-lock-constant-face)))) '(magit-cherry-unmatched ((t (:inherit font-lock-string-face)))) - `(magit-diff-added ((t (:foreground ,diff-added :background "grey98")))) - `(magit-diff-added-highlight ((t (:foreground ,diff-added :background "grey98")))) - '(magit-diff-context ((t (:foreground "grey50" :background "grey98")))) - '(magit-diff-context-highlight ((t (:foreground "grey50" :background "grey98")))) + `(magit-diff-added ((t (:foreground ,diff-added :background ,bg-mid)))) + `(magit-diff-added-highlight ((t (:foreground ,diff-added :background ,bg-mid)))) + `(magit-diff-context ((t (:foreground ,fg-light :background ,bg-mid)))) + `(magit-diff-context-highlight ((t (:foreground ,fg-light :background ,bg-mid)))) '(magit-diff-file-heading ((t (:inherit default :weight bold)))) '(magit-diff-file-heading-selection ((t (:inherit default :weight bold)))) - `(magit-diff-hunk-heading ((t (:foreground ,fg-light :background "grey90")))) + `(magit-diff-hunk-heading ((t (:foreground ,fg-light :background ,bg-dark)))) `(magit-diff-hunk-heading-highlight ((t (:foreground ,fg-light :background "grey80")))) - `(magit-diff-removed ((t (:foreground ,diff-removed :background "grey98")))) - `(magit-diff-removed-highlight ((t (:foreground ,diff-removed :background "grey98")))) + `(magit-diff-removed ((t (:foreground ,diff-removed :background ,bg-mid)))) + `(magit-diff-removed-highlight ((t (:foreground ,diff-removed :background ,bg-mid)))) '(magit-popup-argument ((t (:inherit font-lock-string-face)))) '(magit-reflog-amend ((t (:inherit font-lock-function-name-face)))) '(magit-reflog-checkout ((t (:inherit font-lock-builtin-face)))) @@ -94,7 +94,7 @@ `(magit-section-highlight ((t (:background ,bg)))) '(magit-section-secondary-heading ((t (:inherit default)))) '(match ((t (:inherit default :background "PaleGreen1")))) - '(mm-uu-extract ((t (:background "gray95")))) + `(mm-uu-extract ((t (:background ,bg-mid)))) '(org-agenda-calendar-event ((t (:inherit font-lock-function-name-face)))) '(org-agenda-calendar-sexp ((t (:inherit font-lock-variable-name-face)))) '(org-agenda-clocking ((t (:inherit lazy-highlight)))) @@ -113,8 +113,8 @@ '(outline-1 ((t (:inherit font-lock-doc-face)))) '(outline-2 ((t (:inherit font-lock-function-name-face)))) '(outline-3 ((t (:inherit font-lock-constant-face)))) - '(whitespace-indentation ((t (:background "gray90")))) - '(whitespace-trailing ((t (:background "gray90")))))) + `(whitespace-indentation ((t (:background ,bg-dark)))) + `(whitespace-trailing ((t (:background ,bg-dark)))))) (provide 'km-theme) ;;; km-theme.el ends here -- cgit v1.2.3