summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-08-10 22:43:24 -0400
committerKyle Meyer <kyle@kyleam.com>2019-08-10 22:54:07 -0400
commit1534e0927589f61ecc910846d991a567d61e7498 (patch)
tree28e1644267a001f407c004967258a7e42a62d9b4
parentabbd996c09750ed49e9ede9d20174ecc59e79856 (diff)
downloademacs.d-1534e0927589f61ecc910846d991a567d61e7498.tar.gz
theme: Replace many values with closest fg- or bg- color
-rw-r--r--lisp/km-theme.el26
1 files changed, 13 insertions, 13 deletions
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