I have a theme in which I specified how my source blocks and quote blocks look:
`(org-block ((,class (:foreground ,fg3 :background ,"#fffce9"))))
`(org-block-begin-line ((,class (:foreground ,"#996600" :background ,"#ffe6b3"))))
`(org-block-end-line ((,class (:foreground ,"#996600" :background ,"#ffe6b3"))))
`(org-quote ((,class (:foreground ,"#2f4f4f" :background ,"#f0fef0" :slant italic))))
This works well for the source block, but is ignored for the quote block (see screenshot).
When I inspect the face via M-x customize-face org-quote, it seems it seems my customizations are being applied:
Judging from this post, it should be possible.
Any help on how to solve this will be greatly appreciated.