branch: elpa/dracula-theme
commit 727ff21922ac95ca4075f39a117f050d77db1125
Merge: 3a1ef88 c2c94d9
Author: Garrett T <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #22 from benjamreynolds/br-terminal-bugfix
    
    Set background color to black on non-graphical startup
---
 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")

Reply via email to