diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-09 06:27:50 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-09 06:27:50 -0800 |
commit | e15e61a40bb1f087f2cc2096e20b732226add608 (patch) | |
tree | 7a2dc65654cbd52f3bbe7f9838e72e79fdff7218 | |
parent | [Emacs] Add a few custom functions. (diff) | |
download | emacs.d-e15e61a40bb1f087f2cc2096e20b732226add608.tar.gz |
[Emacs] small changes to the style.
Use a light gray for the mode line and a very light yellow for the background.
-rw-r--r-- | emacs.d/lib/my-settings.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.d/lib/my-settings.el b/emacs.d/lib/my-settings.el index f046db3..89ce365 100644 --- a/emacs.d/lib/my-settings.el +++ b/emacs.d/lib/my-settings.el @@ -55,6 +55,9 @@ ;; Set default font. Large font for the main window, but small font for the modeline (set-face-attribute 'default nil :family "Menlo" :height 130 :weight 'normal :width 'normal) -(set-face-attribute 'mode-line nil :height 110) +(set-face-attribute 'mode-line nil :height 110 :background "grey90") + +;; nicer background than plain white +(set-face-background 'default "#F6F6F6") (provide 'my-settings) |