aboutsummaryrefslogtreecommitdiff
path: root/ef-themes.el
diff options
context:
space:
mode:
authorProtesilaos Stavrou <info@protesilaos.com>2022-08-27 12:53:18 +0300
committerProtesilaos Stavrou <info@protesilaos.com>2022-08-27 12:54:19 +0300
commitffb4cfb760ffc810790a111f81fa8fb314cc1977 (patch)
tree5c745b996ab5e54f8f3cf8a51389380fa3fd008b /ef-themes.el
parentda68699bf73007e5e4209ffb21ca8a9f83156686 (diff)
Decouple 'compilation-info' from 'success'
It made file names green in Grep and Xref buffers, which does not look good in any theme. Using the "name" mapping gives us thematically consistent results. I inspected emacs.git to check if there is anything that uses 'compilation-info' to convey colour-coding along the lines of the familiar red-green dichotomy, but could not find anything. As such, I am treating this face in more flexible terms.
Diffstat (limited to 'ef-themes.el')
-rw-r--r--ef-themes.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/ef-themes.el b/ef-themes.el
index 031f60b..5c5512f 100644
--- a/ef-themes.el
+++ b/ef-themes.el
@@ -656,7 +656,7 @@ Helper function for `ef-themes-preview-colors'."
;;;; compilation
`(compilation-column-number ((,c :inherit compilation-line-number)))
`(compilation-error ((,c :inherit error)))
- `(compilation-info ((,c :inherit success)))
+ `(compilation-info ((,c :inherit bold :foreground ,name)))
`(compilation-line-number ((,c :inherit shadow)))
`(compilation-mode-line-exit ((,c :inherit bold)))
`(compilation-mode-line-fail ((,c :inherit error)))