branch: elpa/solarized-theme
commit ac09b782f26936d72f0cf1bbe1ff8d589ca49b04
Author: Krzysztof Drewniak <krzysdrewn...@gmail.com>
Commit: Bozhidar Batsov <bozhi...@batsov.dev>

    Update flymake -error, -warning, and -note to match flycheck
    
    This commit updates the faces for Flymake's reported errors, warnings,
    and notes to make them more visible in non-GUI environments.
---
 solarized-faces.el | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/solarized-faces.el b/solarized-faces.el
index f3f3ec38b8..667400231a 100644
--- a/solarized-faces.el
+++ b/solarized-faces.el
@@ -650,6 +650,19 @@
                              :background ,(if solarized-emphasize-indicators
                                               blue-lc s-fringe-bg) :weight 
bold))))
 ;;;;; flymake
+     `(flymake-error
+       ((,(append '((supports :underline (:style wave))) class)
+         (:underline (:style wave :color ,red) :inherit unspecified))
+        (,class (:foreground ,red-hc :background ,red-lc :weight bold 
:underline t))))
+     `(flymake-warning
+       ((,(append '((supports :underline (:style wave))) class)
+         (:underline (:style wave :color ,yellow) :inherit unspecified))
+        (,class (:foreground ,yellow-hc :background ,yellow-lc :weight bold 
:underline t))))
+     `(flymake-note
+       ((,(append '((supports :underline (:style wave))) class)
+         (:underline (:style wave :color ,(if solarized-emphasize-indicators
+                                              blue base03)) :inherit 
unspecified))
+        (,class (:foreground ,blue-hc :background ,blue-lc :weight bold 
:underline t))))
      `(flymake-errline
        ((,(append '((supports :underline (:style wave))) class)
          (:underline (:style wave :color ,red) :inherit unspecified

Reply via email to