Emacs: Try white-theme
1 file changed, 15 insertions(+), 0 deletions(-)
changed files
M emacs/.emacs.d/init.org → emacs/.emacs.d/init.org
@@ -163,6 +163,7 @@ #+BEGIN_SRC emacs-lisp (use-package eziam-light-theme :ensure eziam-theme + :disabled t :if (or window-system (daemonp)) :defines (eziam-scale-headings)@@ -174,6 +175,20 @@ '(default ((t (:background "#ffffff")))) '(js2-function-call ((t (:underline nil)))) '(js2-object-property ((t (:slant normal)))) '(font-lock-keyword-face ((t (:weight normal)))) + '(git-gutter-fr:added ((t (:foreground "#96a4ab")))) + '(git-gutter-fr:modified ((t (:foreground "#96a4ab")))) + '(git-gutter-fr:deleted ((t (:foreground "#96a4ab"))))))) +#+END_SRC + +White-theme. Sounds like a good idea. + +#+BEGIN_SRC emacs-lisp +(use-package white-theme + :if (or window-system + (daemonp)) + :config (progn + (load-theme 'white-theme t) + (custom-theme-set-faces 'user '(git-gutter-fr:added ((t (:foreground "#96a4ab")))) '(git-gutter-fr:modified ((t (:foreground "#96a4ab")))) '(git-gutter-fr:deleted ((t (:foreground "#96a4ab")))))))