Tweak mode-line appearance v0.1.1
authorAmin Bandali <bandali@gnu.org>
Sat, 25 Apr 2020 17:03:18 +0000 (13:03 -0400)
committerAmin Bandali <bandali@gnu.org>
Sat, 25 Apr 2020 17:03:18 +0000 (13:03 -0400)
* refinery-theme.el: Set subtly different backgrounds for the active
and inactive mode-line.

refinery-theme.el

index 23fda2b..41e0be2 100644 (file)
@@ -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)