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:
Tom Willemsen 2012-07-23 17:15:50 +02:00
parent 6c8726af51
commit a07c98fc82

View file

@ -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"))))