aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-05-04 16:42:18 -0700
committerGravatar Tom Willemse2019-05-04 16:42:18 -0700
commit9889b6d57471fa8f5a30223afa145b516a973f28 (patch)
treeb8c27dc356ec16496b0dfeda1375569a5d02ad99
parent27ab1f5e5fbcda3eed4f63cc7c705d9e76d08ba5 (diff)
downloadyoshi-theme-9889b6d57471fa8f5a30223afa145b516a973f28.tar.gz
yoshi-theme-9889b6d57471fa8f5a30223afa145b516a973f28.zip
Add flycheck-inline faces
-rw-r--r--CHANGELOG.org5
-rw-r--r--yoshi-theme.el5
2 files changed, 10 insertions, 0 deletions
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)))))