diff options
author | David Robillard <d@drobilla.net> | 2021-05-03 00:00:50 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-05-03 00:03:06 -0400 |
commit | 3944b9f57bbd0c4ebc9ea9b02c6c7286086c67fd (patch) | |
tree | cdd7abc4786a70a76eb1d7a04df6559665c0b536 /emacs | |
parent | 10e6359442692b9d465eee1163168b292a5d369b (diff) | |
download | dotfiles-3944b9f57bbd0c4ebc9ea9b02c6c7286086c67fd.tar.gz dotfiles-3944b9f57bbd0c4ebc9ea9b02c6c7286086c67fd.tar.bz2 dotfiles-3944b9f57bbd0c4ebc9ea9b02c6c7286086c67fd.zip |
Update emacs theme
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/drobillized-theme.el | 9 | ||||
-rw-r--r-- | emacs/.emacs.d/init.el | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/emacs/.emacs.d/drobillized-theme.el b/emacs/.emacs.d/drobillized-theme.el index 41a9ec9..2c89352 100644 --- a/emacs/.emacs.d/drobillized-theme.el +++ b/emacs/.emacs.d/drobillized-theme.el @@ -56,6 +56,8 @@ Reload the theme after changing anything in this group." (custom-theme-set-faces 'drobillized + `(Man-overstrike ((t (:inherit bold :foreground ,green)))) + `(Man-underline ((t (:foreground ,yellow)))) `(bold ((t (:weight bold)))) `(compilation-column-number ((t (:foreground "grey40")))) `(cursor ((t (:background "grey80")))) @@ -118,7 +120,7 @@ Reload the theme after changing anything in this group." `(font-lock-type-face ((t (:foreground ,green :weight normal)))) `(font-lock-variable-name-face ((t (:foreground "#CCC" :weight normal)))) `(font-lock-warning-face ((t (:foreground ,red)))) - `(fringe ((((class color) (background dark)) (:background "grey15")))) + `(fringe ((t (:background "#151A1C" :foreground "#888")))) `(git-gutter:added ((t (:inherit diff-added)))) `(git-gutter:deleted ((t (:inherit diff-removed)))) `(git-gutter:modified ((t (:foreground ,magenta)))) @@ -243,6 +245,9 @@ Reload the theme after changing anything in this group." `(widget-field ((t (:background "#222" :box (:line-width 2 :color "#555"))))) `(woman-addition ((t (:inherit font-lock-builtin-face :foreground ,blue)))) `(woman-bold ((t (:inherit bold :foreground ,green)))) - `(woman-italic ((t (:inherit italic :slant italic))))) + `(woman-italic ((t (:inherit italic :slant italic)))) + `(window-divider ((t (:foreground "#151A1C")))) + `(window-divider-first-pixel ((t (:foreground "#444")))) + `(window-divider-last-pixel ((t (:foreground "#444"))))) (provide-theme 'drobillized) diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index f56f0dd..3be0f8a 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -171,7 +171,7 @@ '(custom-enabled-themes (quote (drobillized))) '(custom-safe-themes (quote - ("b3f9e6023ab4297a337987e6be4ff3f2abe07b562fdc644ca68f9779c3d6c3f4" default))) + ("63d32e962e32535c66b3afe508b42c0e983aad6b7d2bd806ab71aa2f27c23ef8" default))) '(delete-old-versions t) '(delete-selection-mode t) '(dired-omit-files "^\\.?#\\|^\\.$\\|^\\.\\.\\|^\\..*$") |