summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKien Nguyen <kien.n.quang@gmail.com>2019-11-27 13:56:41 +0900
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2019-12-02 10:24:04 +0200
commitcf3b33c6807a6d72172a5b2164e3513c70dc7b28 (patch)
tree6bee87882b7c6bd4bfa2d87ee5f1d6cad36a156e
parent2f4f6e7d0bc37f1a99ab14bb4506a0e53d359da5 (diff)
Fix helm header face on Emacs 27
-rw-r--r--zenburn-theme.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/zenburn-theme.el b/zenburn-theme.el
index 0231ccd..dac1f45 100644
--- a/zenburn-theme.el
+++ b/zenburn-theme.el
@@ -185,7 +185,8 @@ Also bind `class' to ((class color) (min-colors 89))."
`(fringe ((t (:foreground ,zenburn-fg :background ,zenburn-bg+1))))
`(header-line ((t (:foreground ,zenburn-yellow
:background ,zenburn-bg-1
- :box (:line-width -1 :style released-button)))))
+ :box (:line-width -1 :style released-button)
+ :extend t))))
`(highlight ((t (:background ,zenburn-bg-05))))
`(success ((t (:foreground ,zenburn-green :weight bold))))
`(warning ((t (:foreground ,zenburn-orange :weight bold))))
@@ -766,13 +767,15 @@ Also bind `class' to ((class color) (min-colors 89))."
((t (:foreground ,zenburn-green
:background ,zenburn-bg
:underline nil
- :box nil))))
+ :box nil
+ :extend t))))
`(helm-source-header
((t (:foreground ,zenburn-yellow
:background ,zenburn-bg-1
:underline nil
:weight bold
- :box (:line-width -1 :style released-button)))))
+ :box (:line-width -1 :style released-button)
+ :extend t))))
`(helm-selection ((t (:background ,zenburn-bg+1 :underline nil))))
`(helm-selection-line ((t (:background ,zenburn-bg+1))))
`(helm-visible-mark ((t (:foreground ,zenburn-bg :background ,zenburn-yellow-2))))