我正在尝试为我的终端制作一个 Emacs 颜色主题,它为所有文本等设置颜色,但使用终端的默认背景 - 主要是因为我喜欢我的终端配置文件所具有的透明度设置。进入我的颜色主题(我使用颜色主题明天晚上)并删除背景颜色可以实现我正在寻找的内容,但每次打开 Emacs 时都会抛出错误。谢谢你的帮助。
编辑:感谢 Mawile 的帮助,制作了一个新的 color-theme-tomorrow-night 变体。在这里,按预期工作:
(defun color-theme-tomorrow-night-term ()
"Dark Tomorrow theme with background color removed for badass
terminal transparency"
(interactive)
(color-theme-tomorrow-real "nil" "#282a2e" "#373b41" "#c5c8c6" "#969896"
"#cc6666" "#de935f" "#f0c674" "#b5bd68" "#8abeb7"
"#81a2be" "#b294bb" "#aeafad"))
(provide 'color-theme-tomorrow-night-term)