A função color-theme-billw
usa internamente a função color-theme-install-frame-params
para alterar os parâmetros do quadro. Assim, você pode alterar os parâmetros do quadro da mesma maneira:
(require 'color-theme)
(color-theme-initialize)
(color-theme-billw)
(color-theme-install-frame-params
'((background-color . "gray12")))
C-h f color-theme-install-frame-params
(color-theme-install-frame-params PARAMS)
Change frame parameters using alist
PARAMETERS
.If
color-theme-is-global
is non-nil, all frames are modified usingmodify-frame-parameters
and thePARAMETERS
are prepended todefault-frame-alist
. The value ofinitial-frame-alist
is not modified. Ifcolor-theme-is-global
is nil, only the selected frame is modified. Ifcolor-theme-is-cumulative
is nil, the frame parameters are restored fromcolor-theme-original-frame-alist
.If the current frame parameters have a parameter
minibuffer
with valueonly
, then the frame parameters are not installed, since this indicates a dedicated minibuffer frame.