diff options
Diffstat (limited to 'eighters-theme.el')
| -rw-r--r-- | eighters-theme.el | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/eighters-theme.el b/eighters-theme.el index d5c42b7..8d415de 100644 --- a/eighters-theme.el +++ b/eighters-theme.el @@ -7,7 +7,7 @@ ;; TODO: unify quotes (org, markdown, auctex, tex) ;; TODO: org-fontify-quote-and-verse-blocks: t -;; TODO: light up magit-{section,diff-context}-highlight, e.g. to gray22 +;; TODO: light up magit-{section,diff-context}-highlight ;; The default face's font and height are not defined, so that they ;; can be set individually for different computers in .Xresources; see @@ -15,13 +15,13 @@ (custom-theme-set-faces 'eighters - '(default ((t (:background "gray20" :foreground "gainsboro")))) + '(default ((t (:background "black" :foreground "gainsboro")))) '(fringe ((t (:foreground "gray50")))) '(shadow ((t (:foreground "gray50")))) '(vertical-border ((t (:foreground "gray50")))) '(escape-glyph ((t (:foreground "red2")))) '(minibuffer-prompt ((t (:foreground "steelblue1" :weight bold)))) - '(highlight ((t (:background "gray25")))) + '(highlight ((t (:background "gray10")))) '(region ((t (:background "steel blue" :foreground "gainsboro")))) '(font-lock-builtin-face ((t (:foreground "steelblue1" :weight bold)))) '(font-lock-comment-face ((t (:foreground "gray50" :slant italic)))) @@ -48,12 +48,12 @@ '(mode-line-inactive ((t (:foreground "gray70" :background "gray25" :inherit (mode-line))))) '(mode-line-buffer-id ((t (:weight bold)))) ;; Main diff faces, and heirs. - '(diff-added ((t (:background "#373f45")))) - '(diff-removed ((t (:background "#453d2d")))) - '(diff-changed ((t (:background "#45412d")))) - '(diff-refine-added ((t (:background "#3d5161")))) - '(diff-refine-removed ((t (:background "#614c26")))) - '(diff-refine-changed ((t (:background "#615826")))) + '(diff-added ((t (:background "#12222f")))) + '(diff-removed ((t (:background "#2f1e00")))) + '(diff-changed ((t (:background "#2f2800")))) + '(diff-refine-added ((t (:background "#1b3347")))) + '(diff-refine-removed ((t (:background "#472e00")))) + '(diff-refine-changed ((t (:background "#473c00")))) '(diff-indicator-added ((t (:foreground "steelblue2")))) '(diff-indicator-removed ((t (:foreground "orange2")))) '(diff-indicator-changed ((t (:foreground "gold2")))) @@ -71,16 +71,16 @@ ;; Supplementary diff faces. '(diff-header ((t (:foreground "steelblue1" :weight bold)))) '(diff-file-header ((t (:foreground "cyan" :weight bold)))) - '(ediff-current-diff-Ancestor ((t (:background "#45323e")))) - '(ediff-fine-diff-Ancestor ((t (:background "#613250")))) - '(ediff-even-diff-A ((t (:background "gray25")))) - '(ediff-odd-diff-A ((t (:background "gray25")))) - '(ediff-even-diff-B ((t (:background "gray25")))) - '(ediff-odd-diff-B ((t (:background "gray25")))) - '(ediff-even-diff-C ((t (:background "gray25")))) - '(ediff-odd-diff-C ((t (:background "gray25")))) - '(ediff-even-diff-Ancestor ((t (:background "gray25")))) - '(ediff-odd-diff-Ancestor ((t (:background "gray25")))) + '(ediff-current-diff-Ancestor ((t (:background "#2f0921")))) + '(ediff-fine-diff-Ancestor ((t (:background "#470e32")))) + '(ediff-even-diff-A ((t (:inherit (highlight))))) + '(ediff-odd-diff-A ((t (:inherit (highlight))))) + '(ediff-even-diff-B ((t (:inherit (highlight))))) + '(ediff-odd-diff-B ((t (:inherit (highlight))))) + '(ediff-even-diff-C ((t (:inherit (highlight))))) + '(ediff-odd-diff-C ((t (:inherit (highlight))))) + '(ediff-even-diff-Ancestor ((t (:inherit (highlight))))) + '(ediff-odd-diff-Ancestor ((t (:inherit (highlight))))) '(term-color-black ((t (:foreground "black" :background "black")))) '(term-color-blue ((t (:foreground "steelblue1" :background "steelblue1")))) '(term-color-cyan ((t (:foreground "cyan" :background "cyan")))) @@ -115,13 +115,18 @@ '(diff-hl-insert ((t (:inherit (diff-indicator-added highlight))))) '(diff-hl-delete ((t (:inherit (diff-indicator-removed highlight))))) '(diff-hl-change ((t (:inherit (diff-indicator-changed highlight))))) - '(magit-blame-highlight ((t (:inherit (highlight shadow))))) + '(magit-blame-heading ((t (:inherit (magit-blame-highlight))))) + '(magit-blame-highlight ((t (:weight normal :slant normal :inherit (highlight shadow))))) + '(magit-blame-margin ((t (:slant normal :box (:line-width 1 :style released-button) :inherit (font-lock-function-name-face))))) + '(magit-diff-context ((t (:inherit (shadow))))) + '(magit-diff-context-highlight ((t (:inherit (shadow))))) '(magit-diff-added ((t (:inherit (diff-added))))) '(magit-diff-added-highlight ((t (:inherit (diff-added))))) '(magit-diff-removed ((t (:inherit (diff-removed))))) '(magit-diff-removed-highlight ((t (:inherit (diff-removed))))) '(magit-diffstat-added ((t (:inherit (diff-indicator-added))))) - '(magit-diffstat-removed ((t (:inherit (diff-indicator-removed)))))) + '(magit-diffstat-removed ((t (:inherit (diff-indicator-removed))))) + '(magit-section-highlight ((t (:inherit (highlight)))))) (custom-theme-set-variables 'eighters '(ansi-color-names-vector |
