diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-07-13 15:53:50 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-07-13 15:53:50 -0700 |
commit | 9c4421e60bea795c3a77b668700c436bc8c8fcfb (patch) | |
tree | cc0e75899102d345a3ed6bfe1405c487eb1aa9a0 | |
parent | Delete documentation (diff) | |
download | emacs.d-9c4421e60bea795c3a77b668700c436bc8c8fcfb.tar.gz |
[emacs] nicer colors for background and mode-line.
-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 dccae8e..090695a 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -44,9 +44,9 @@ ;; nice font (set-face-attribute 'default nil :font "Source Code Pro" :height 130) - -;; light background -;; (set-background-color "#FFFFFF") +(set-background-color "#FFFFE4") +(set-face-attribute 'fringe nil :background "#FFFFE5") +(set-face-background 'mode-line "#E5FFFF") ;; no menu (menu-bar-mode -1) |