Explicitly set colors for fringe face
It has been brought to my attention that the fringe colors don't carry over well between theme switches unless they are explicitly given.
This commit is contained in:
parent
6c8726af51
commit
a07c98fc82
1 changed files with 2 additions and 1 deletions
|
@ -61,6 +61,7 @@
|
||||||
;; - Add header.
|
;; - Add header.
|
||||||
;; - Add local variables, enable `rainbow-mode'.
|
;; - Add local variables, enable `rainbow-mode'.
|
||||||
;; 12 - Remove quotes from :inherit properties.
|
;; 12 - Remove quotes from :inherit properties.
|
||||||
|
;; - Explicitly set colors for `fringe'.
|
||||||
|
|
||||||
;;; Code:
|
;;; Code:
|
||||||
|
|
||||||
|
@ -73,7 +74,7 @@
|
||||||
'(bold-italic ((t (:inherit bold :slant italic))))
|
'(bold-italic ((t (:inherit bold :slant italic))))
|
||||||
'(cursor ((t (:background "#15abc3"))))
|
'(cursor ((t (:background "#15abc3"))))
|
||||||
'(default ((t (:background "#000000" :foreground "#15abc3"))))
|
'(default ((t (:background "#000000" :foreground "#15abc3"))))
|
||||||
'(fringe ((t (:inherit default))))
|
'(fringe ((t (:background "#000000" :foreground "#15abc3"))))
|
||||||
'(header-line ((t (:inherit mode-line))))
|
'(header-line ((t (:inherit mode-line))))
|
||||||
'(linum ((t (:inherit default))))
|
'(linum ((t (:inherit default))))
|
||||||
'(mouse ((t (:foreground "#e0c625"))))
|
'(mouse ((t (:foreground "#e0c625"))))
|
||||||
|
|
Loading…
Reference in a new issue