branch: elpa/cyberpunk-theme
commit 000f2caf6fc3417ff39f9a2829a34e1ccb2090fa
Author: Winston Weinert <[email protected]>
Commit: Winston Weinert <[email protected]>
Fix term/ansi-term default colors
---
cyberpunk-theme.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/cyberpunk-theme.el b/cyberpunk-theme.el
index 45eaf2f..3023009 100644
--- a/cyberpunk-theme.el
+++ b/cyberpunk-theme.el
@@ -749,8 +749,12 @@
:background ,cyberpunk-blue))))
`(term-color-white ((,class (:foreground ,cyberpunk-fg
:background ,cyberpunk-bg-1))))
+ ;; term-default-fg-color & term-default-bg-color are obsolete, kept
+ ;; here for compatibility reasons.
`(term-default-fg-color ((,class (:inherit term-color-white))))
`(term-default-bg-color ((,class (:inherit term-color-black))))
+ ;; Used in 24.3 and later to replace above.
+ `(term ((,class (:foreground ,cyberpunk-fg :background ,cyberpunk-bg))))
;; volatile-highlights
`(vhl/default-face ((,class (:background ,cyberpunk-gray-5))))