回答:
で使用するcustom-theme-set-faces
と、with-eval-after-load
テーマを簡単にカスタマイズできます。
たとえば、これはample-theme
デフォルトではなく、明るい背景と緑のキーワードを持つように変更されます。
(with-eval-after-load "ample-theme"
(custom-theme-set-faces
'ample
'(default ((t (:foreground "#bdbdb3" :background "gray15"))))
'(font-lock-keyword-face ((t (:foreground "#818053"))))))