如何将emacsclient背景设置为Emacs背景?

我已经(在我的.emacs

(set-background-color "#101416") (set-foreground-color "#f6f3e8") 

我有两个绑定:

 alias ex='emacsclient -nw' alias ec='emacsclient -c -a ""' 

工作正常,打开terminal客户端,但是当我想打开它作为一个框架我有白色背景:(

为什么以及如何在那里使用我的黑暗背景?

set-background-colorset-foreground-color只影响当前帧,并且在运行emacsclient时不会执行.emacs文件。

尝试设置变量default-frame-alist (“创建帧的默认值default-frame-alist ”),而不是:

 (setq default-frame-alist
       '((background-color。“#101416”)
         (前景色。“#f6f3e8”)))