8

The title says it all. How to change face in specific color theme locally, in my configuration?

1 Answer 1

11

Use custom-theme-set-faces in a with-eval-after-load to easily customize a theme.

For example, this modifies ample-theme to have a lighter background and green keywords instead of the defaults.

(with-eval-after-load "ample-theme" (custom-theme-set-faces 'ample '(default ((t (:foreground "#bdbdb3" :background "gray15")))) '(font-lock-keyword-face ((t (:foreground "#818053")))))) 

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.