diff options
author | David Robillard <d@drobilla.net> | 2015-10-18 21:04:46 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-18 21:04:46 -0400 |
commit | cdc42e8508da2267290650e53304db4dd03e92e7 (patch) | |
tree | a0924be89154e2fa94535cd54417b2a3c03819a1 | |
parent | 22d7c4d75fbc352a01a5d4715eaaaf0512d1471a (diff) | |
download | dotfiles-cdc42e8508da2267290650e53304db4dd03e92e7.tar.gz dotfiles-cdc42e8508da2267290650e53304db4dd03e92e7.tar.bz2 dotfiles-cdc42e8508da2267290650e53304db4dd03e92e7.zip |
More consistent colours
-rwxr-xr-x | bspwm/bspwmrc | 1 | ||||
-rw-r--r-- | emacs.d/init.el | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bspwm/bspwmrc b/bspwm/bspwmrc index eb7db55..622751e 100755 --- a/bspwm/bspwmrc +++ b/bspwm/bspwmrc @@ -10,6 +10,7 @@ bspc config borderless_monocle true bspc config gapless_monocle true bspc config focus_by_distance true +bspc config normal_border_color "#2D3232" bspc config focused_border_color "#6F7372" bspc config top_padding $PANEL_HEIGHT bspc config focus_follows_pointer true diff --git a/emacs.d/init.el b/emacs.d/init.el index 38d1dfd..2e473b8 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -140,11 +140,14 @@ '(magit-section-highlight ((t (:background "grey15")))) '(minibuffer-prompt ((((background dark)) (:foreground "white")))) '(mode-line ((t (:background "#2D3232" :foreground "#AFB3B2" :box (:line-width 2 :color "#1A1A1A"))))) - '(mode-line-inactive ((t (:inherit mode-line :background "gray20" :foreground "#4F5352" :box (:line-width 2 :color "#1A1A1A"))))) + '(mode-line-inactive ((t (:inherit mode-line :background "#111" :foreground "#4F5352" :box (:line-width 2 :color "#141414"))))) '(nobreak-space ((((class color) (min-colors 88)) (:inherit escape-glyph :underline t)))) + '(powerline-active1 ((t (:inherit mode-line :background "#272A2A")))) '(powerline-active2 ((t (:inherit mode-line :background "#2D3232")))) + '(powerline-inactive2 ((t (:inherit mode-line-inactive :background "#272A2A")))) + '(region ((t (:background "#455900")))) '(smerge-refined-change ((t (:background "gray20")))) - '(spaceline-highlight-face ((t (:background "#383838" :foreground "#FFFFFF" :inherit (quote mode-line))))) + '(spaceline-highlight-face ((t (:background "#272A2A" :foreground "#FFFFFF" :inherit (quote mode-line))))) '(spaceline-modified ((t (:background "#A66" :foreground "#3E3D31" :inherit (quote mode-line))))) '(spaceline-unmodified ((t (:background "#777" :foreground "#3E3D31" :inherit (quote mode-line))))) '(whitespace-newline ((t (:foreground "grey20" :weight normal)))) |