Created
February 3, 2014 16:39
-
-
Save creamidea/8787292 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; in powerline.el | |
(defface powerline-active1 '((t (:foreground "#030303" :background "#69b4ff" :inherit mode-line))) | |
"Powerline face 1." | |
:group 'powerline) | |
(defface powerline-active2 '((t (:foreground "#030303" :background "#ff6969" :inherit mode-line))) | |
"Powerline face 2." | |
:group 'powerline) | |
(defface powerline-inactive1 | |
'((t (:foreground "#686868" :background "#69b4ff" :inherit mode-line-inactive))) | |
"Powerline face 1." | |
:group 'powerline) | |
(defface powerline-inactive2 | |
'((t (:foreground "#686868" :background "#ff6969" :inherit mode-line-inactive))) | |
"Powerline face 2." | |
:group 'powerline) | |
;; in .emacs | |
;; =================================================== | |
;; powweline | |
(add-to-list 'load-path "~/.emacs.d/lisp/powerline/") | |
(require 'powerline) | |
(powerline-default-theme) | |
;; left 1 | |
(set-face-attribute 'mode-line nil | |
:foreground "#030303" | |
:background "#ffff69" | |
:box nil) | |
(set-face-attribute 'mode-line-inactive nil | |
:foreground "#686868" | |
:background "#ffff69" | |
:box nil) |
Author
creamidea
commented
Feb 3, 2014
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment