summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-07-23 17:15:50 +0200
committerGravatar Tom Willemsen2012-07-23 17:15:50 +0200
commita07c98fc8228a11e68cff10133211ff22ff713d7 (patch)
treea1cc0fbe08cb9d3deb258f3373b8aad872b53656
parent6c8726af51cf07ecc7114104b5f19aab645f5666 (diff)
downloadtron-theme-a07c98fc8228a11e68cff10133211ff22ff713d7.tar.gz
tron-theme-a07c98fc8228a11e68cff10133211ff22ff713d7.zip
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.
-rw-r--r--tron-theme.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/tron-theme.el b/tron-theme.el
index 6d2e500..48e7fe0 100644
--- a/tron-theme.el
+++ b/tron-theme.el
@@ -61,6 +61,7 @@
;; - Add header.
;; - Add local variables, enable `rainbow-mode'.
;; 12 - Remove quotes from :inherit properties.
+;; - Explicitly set colors for `fringe'.
;;; Code:
@@ -73,7 +74,7 @@
'(bold-italic ((t (:inherit bold :slant italic))))
'(cursor ((t (:background "#15abc3"))))
'(default ((t (:background "#000000" :foreground "#15abc3"))))
- '(fringe ((t (:inherit default))))
+ '(fringe ((t (:background "#000000" :foreground "#15abc3"))))
'(header-line ((t (:inherit mode-line))))
'(linum ((t (:inherit default))))
'(mouse ((t (:foreground "#e0c625"))))