branch: elpa/ujelly-theme
commit e3a343991c0175092f27665fce9474e240f3f1f7
Merge: 30efb05 2a35e63
Author: Mark Tran <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #19 from dlukes/master
fix no bg color bug on graphic display
---
ujelly-theme.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ujelly-theme.el b/ujelly-theme.el
index 1541b8e..b4d689e 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.2.8
+;; Version: 1.2.9
;; 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 nil)
+ (ujelly-bg (if (display-graphic-p) "#000000" nil))
(ujelly-blue-0 "#8fbfdc")
(ujelly-green-0 "#99ad6a")
(ujelly-green-1 "#447799")