commit 8c1c2c5170d85e21e0fb488de323191df1401fa9
parent 5ee2edcd666adb15ca3241bb5f56607b4b13f40f
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sat, 1 Feb 2020 23:08:37 +0100
Set some compilation and Org faces
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/eighters-theme.el b/eighters-theme.el
@@ -43,10 +43,13 @@
'(lazy-highlight ((t (:foreground "darkturquoise" :background "darkcyan"))))
'(match ((t (:background "royalblue3"))))
'(error ((t (:foreground "red2" :weight bold))))
+ '(success ((t (:foreground "green3" :weight bold))))
'(header-line ((t (:box (:line-width 3 :style released-button)))))
'(mode-line ((t (:inverse-video t))))
'(mode-line-inactive ((t (:foreground "gray70" :background "gray25" :inherit (mode-line)))))
'(mode-line-buffer-id ((t (:weight bold))))
+ '(compilation-mode-line-exit ((t (:inherit (compilation-info)))))
+ '(compilation-mode-line-fail ((t (:inherit (compilation-error)))))
;; Main diff faces, and heirs.
'(diff-added ((t (:background "#12222f"))))
'(diff-removed ((t (:background "#2f1e00"))))
@@ -101,12 +104,14 @@
'(outline-6 ((t (:height 1.0 :inherit (variable-pitch font-lock-function-name-face)))))
'(outline-7 ((t (:height 1.0 :inherit (variable-pitch font-lock-function-name-face)))))
'(outline-8 ((t (:height 1.0 :inherit (variable-pitch font-lock-function-name-face)))))
- '(org-block ((t (:inherit (highlight)))))
+ '(org-block ((t (:extend t :inherit (highlight)))))
+ '(org-quote ((t (:slant italic :inherit (org-block)))))
'(org-date ((t (:inherit (font-lock-string-face)))))
'(org-special-keyword ((t (:inherit (font-lock-comment-face)))))
'(org-drawer ((t (:weight bold :inherit (font-lock-comment-face)))))
'(org-tag ((t (:inherit (font-lock-constant-face button)))))
'(org-todo ((t (:inherit (error)))))
+ '(org-done ((t (:inherit (success)))))
'(font-latex-bold-face ((t (:inherit (bold)))))
'(font-latex-italic-face ((t (:inherit (italic)))))
'(font-latex-math-face ((t (:inherit (tex-math)))))