branch: elpa/cyberpunk-theme
commit db5e86634d25cf0740f3d070cf2d521378fdf910
Merge: 35e73ef ceb329b
Author: Nicholas M. Van Horn <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #25 from 7696122/master
    
    Fix transparency on MacOSX
---
 cyberpunk-theme.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/cyberpunk-theme.el b/cyberpunk-theme.el
index 2af5705..5b82d02 100644
--- a/cyberpunk-theme.el
+++ b/cyberpunk-theme.el
@@ -84,7 +84,9 @@
       (cyberpunk-blue-7 "#00ffff")
       (cyberpunk-blue-8 "#4F94CD")
       (cyberpunk-magenta "#dc8cc3")
-      (cyberpunk-black "#000000")
+      (cyberpunk-black (if (and (not (display-graphic-p)) (eq system-type 
'darwin))
+                           "ARGBBB000000"
+                         "#000000"))
       (cyberpunk-black-2 "#0C1021")
       (cyberpunk-black-3 "#0A0A0A")
       (cyberpunk-gray "#d3d3d3")

Reply via email to