branch: externals/aircon-theme commit 62e5f9782ec23f9713e78c429527faf36189060e Author: Gregory Chamberlain <g...@cosine.blue> Commit: Gregory Chamberlain <g...@cosine.blue>
Style flymake faces (-error, -note, -warning) With this, flyspell faces (-incorrect, -duplicate) are now derived from analogous flymake faces (-error, -warning). --- aircon-theme.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/aircon-theme.el b/aircon-theme.el index 1b120c031c..7692932363 100644 --- a/aircon-theme.el +++ b/aircon-theme.el @@ -169,8 +169,12 @@ '(completions-common-part ((t (:inherit (aircon-linen))))) '(completions-first-difference ((t (:inherit (aircon-mango))))) - `(flyspell-duplicate ((t (:underline (:color ,aircon-marigold :style wave))))) - `(flyspell-incorrect ((t (:underline (:color ,aircon-brick :style wave))))) + `(flymake-error ((t (:underline (:style wave :color ,aircon-brick))))) + `(flymake-note ((t (:underline (:style wave :color ,aircon-sapphire))))) + `(flymake-warning ((t (:underline (:style wave :color ,aircon-marigold))))) + + '(flyspell-duplicate ((t (:inherit flymake-warning)))) + '(flyspell-incorrect ((t (:inherit flymake-error)))) '(diff-header ((t (:inherit (aircon-header))))) '(diff-file-header ((t (:inherit (diff-header) :weight bold))))