[EMAIL PROTECTED] writes:
> i am trying to change the color for gnus-summary-normal-unread-face.
> faces are kept in a file called my-gnus-faces.el and i load it from
> .gnus

While I haven't customized that specific face, with others I have
found that you need to create a temporary face, and then assign that
face to the gnus variable:

,----
| (make-face 'my-gnus-summary-selected)
| (custom-set-faces
|  '(my-gnus-summary-selected ((t (:background "#444444")))))
| (setq
|  gnus-summary-selected-face 'my-gnus-summary-selected)
`----

I may be doing things the hard way, but it does work.

-- 
Peter Jones [pjones at domain below]
pmade inc. - http://pmade.com
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to