wasamasa / gotham-theme

Code never sleeps in Gotham City.
GNU General Public License v3.0
137 stars 13 forks source link

Change here-doc color to be more subtle #71

Closed tracphil closed 6 years ago

tracphil commented 6 years ago

First, this is a fantastic theme. It is very much appreciated.

Is it possible to change the colors of here-doc statements color to be more subtle and with more pastel'y like the rest of the theme?

gotham-theme

I don't know a lot about Emacs but my cobbled together configuration is at https://github.com/tracphil/.emacs.d. It is quite possible that the bright yellow and what looks like bold things are of my own doing and I just don't know any better.

wasamasa commented 6 years ago

This color is part of the theme, just like the rest of them. If you put point on that text and use M-x customize-face, you can customize how it looks like for you.

tracphil commented 6 years ago

@wasamasa Thank you!

For others that might wish to do the same thing, this is how I implemented it in the end:

(use-package gotham-theme
  :ensure t
  :config
  (load-theme 'gotham t)
  (custom-theme-set-faces
   'gotham
   '(sh-heredoc ((t (:foreground "light sea green" :weight normal))))
   )
  )