branch: elpa/ujelly-theme
commit 751a899e89389831855a13abdcc192dd3c429d93
Author: Mark Tran <[email protected]>
Commit: Mark Tran <[email protected]>
explicitly set background for non-terminal users
---
ujelly-theme.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ujelly-theme.el b/ujelly-theme.el
index 0faf4ad..429e06c 100644
--- a/ujelly-theme.el
+++ b/ujelly-theme.el
@@ -2,14 +2,14 @@
;; Author: Mark Tran <[email protected]>
;; URL: http://github.com/marktran/color-theme-ujelly
-;; Version: 1.0.21
+;; Version: 1.0.22
;; Inspired by jellybeans:
http://www.vim.org/scripts/script.php?script_id=2555.
(deftheme ujelly "The ujelly color theme")
(let ((class '((class color) (min-colors 89)))
(ujelly-fg "#ffffff")
- (ujelly-bg "unspecified-bg")
+ (ujelly-bg "#000000")
(ujelly-blue-0 "#8fbfdc")
(ujelly-green-0 "#99ad6a")
(ujelly-green-1 "#447799")
@@ -30,7 +30,7 @@
(custom-theme-set-faces
'ujelly
- `(default ((,class (:foreground ,ujelly-fg))))
+ `(default ((,class (:foreground ,ujelly-fg :background ,ujelly-bg))))
`(compilation-error ((,class (:foreground ,ujelly-red-0))))
`(compilation-info ((,class (:foreground ,ujelly-yellow-0))))
`(compilation-line-number ((,class (:foreground ,ujelly-grey-0))))