diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-22 08:53:34 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-22 08:53:34 -0800 |
commit | 922104bd9cf8beb73ac819629c42f606bc48a3c6 (patch) | |
tree | 4e1d1d279c86905f29792db550aee40e59e342bc | |
parent | [README] misc. (diff) | |
download | emacs.d-922104bd9cf8beb73ac819629c42f606bc48a3c6.tar.gz |
[Emacs] slightly better colors for flycheck status.
-rw-r--r-- | emacs.d/init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index e1d2ccd..476ca05 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -189,9 +189,9 @@ (defun fc/flycheck-modeline (errors-count warnings-count info-count) (concat - (propertize (format "•%s " errors-count) 'face '(:foreground "#FC5C94" :distant-foreground "#A20C41")) - (propertize (format "•%s " warnings-count) 'face '(:foreground "#F3EA98" :distant-foreground "#968B26")) - (propertize (format "•%s " info-count) 'face '(:foreground "#8DE6F7" :distant-foreground "#21889B")))) + (propertize (format "•%s " errors-count) 'face '(:foreground "#A20C41")) + (propertize (format "•%s " warnings-count) 'face '(:foreground "#968B26")) + (propertize (format "•%s " info-count) 'face '(:foreground "#21889B")))) (setq flycheck-mode-line '(:eval |