diff --git a/CHANGELOG.org b/CHANGELOG.org index 60ce523..722247b 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -46,6 +46,11 @@ This project adheres to [[http://semver.org][Semantic Versioning]]. =ivy-minibuffer-match-face-1=, =ivy-minibuffer-match-face-2=, =ivy-minibuffer-match-face-3=, =ivy-minibuffer-match-face-4=. +** ADDED flycheck-inline faces + + Add the flycheck-inline faces: =flycheck-inline-error=, =flycheck-inline-info=, + =flycheck-inline-warning=. + ** CHANGED the color of high-scoring unread mails in gnus ** CHANGED the color of normal ticked mails in gnus diff --git a/yoshi-theme.el b/yoshi-theme.el index 10f478e..d0113b6 100644 --- a/yoshi-theme.el +++ b/yoshi-theme.el @@ -173,6 +173,11 @@ `(flycheck-error ((t (:inherit unspecified :underline (:color ,fgred :style wave))))) `(flycheck-warning ((t (:inherit unspecified :underline (:color ,fgorange :style wave))))) + ;;; Flycheck inline + `(flycheck-inline-error ((t (:inherit unspecified :foreground ,fgred :height 0.8)))) + `(flycheck-inline-info ((t (:inherit unspecified :foreground ,fgblue :height 0.8)))) + `(flycheck-inline-warning ((t (:inherit unspecified :foreground ,fgorange :height 0.8)))) + ;;; Flymake `(flymake-errline ((t (:background unspecified :underline (:color ,fgred :style wave))))) `(flymake-infoline ((t (:background unspecified :underline (:color ,fgblue :style wave)))))