diff options
| author | Amin Bandali <bandali@gnu.org> | 2020-04-25 13:03:18 -0400 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2020-04-25 13:03:18 -0400 | 
| commit | 83221130cb12be47a38a3748dc8fb00cd2bc6740 (patch) | |
| tree | c8b26bc5caa7962c1ee761dd2fa15c8ac2dc8cb3 | |
| parent | 71b55010865881a496ace53deafa04da458bcec1 (diff) | |
| download | refinery-theme-83221130cb12be47a38a3748dc8fb00cd2bc6740.tar.gz refinery-theme-83221130cb12be47a38a3748dc8fb00cd2bc6740.tar.xz refinery-theme-83221130cb12be47a38a3748dc8fb00cd2bc6740.zip | |
Tweak mode-line appearancev0.1.1
* refinery-theme.el: Set subtly different backgrounds for the active
and inactive mode-line.
| -rw-r--r-- | refinery-theme.el | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/refinery-theme.el b/refinery-theme.el index 23fda2b..41e0be2 100644 --- a/refinery-theme.el +++ b/refinery-theme.el @@ -3,7 +3,7 @@  ;; Copyright (C) 2020  Amin Bandali  ;; Author: Amin Bandali <bandali@gnu.org> -;; Version: 0.1.0 +;; Version: 0.1.1  ;; Keywords: faces  ;; This program is free software; you can redistribute it and/or modify @@ -74,7 +74,7 @@ Message, EBDB, and Ivy.")         (layer+4b-inv `((,class (:foreground ,grey :background ,red :weight bold))))         ;; box -       (box `((,class (:box (:line-width -1 :style released-button)))))) +       (box `(:line-width -1 :style released-button)))    (custom-theme-set-faces     'refinery @@ -118,9 +118,9 @@ Message, EBDB, and Ivy.")     `(font-lock-keyword-face       ,layer-2)     ;; Mode line and minibuffer prompt -   `(mode-line          ,box) -   `(mode-line-inactive ,box) -   `(minibuffer-prompt  ,layer+2) +   `(mode-line           ((,class (:background ,grey :box ,box)))) +   `(mode-line-inactive  ((,class (:background "#e1e1e1" :box ,box)))) +   `(minibuffer-prompt   ,layer+2)     ;; Characters displayed as sequences using `^' or `\'     `(escape-glyph ,layer+3) | 
