branch: elpa/dracula-theme
commit c2c94d9c4d1b94f1c23082a10a375c0613dd2100
Author: Benjamin Reynolds <[email protected]>
Commit: Benjamin Reynolds <[email protected]>
Set background color to black on non-graphical startup
This is a temporary fix to the display issues described in #21. This will
make
the background appear black however instead of the ideal #282a36
---
dracula-theme.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dracula-theme.el b/dracula-theme.el
index 4d5a4c6..59edf4c 100644
--- a/dracula-theme.el
+++ b/dracula-theme.el
@@ -18,7 +18,7 @@
(deftheme dracula)
-(if (display-graphic-p) (setq bg1 "#282a36") (setq bg1 nil))
+(if (display-graphic-p) (setq bg1 "#282a36") (setq bg1 "#000000"))
(let ((class '((class color) (min-colors 89)))
(fg1 "#f8f8f2")