diff options
Diffstat (limited to 'refinery-theme.el')
-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) |