summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--elchemy-personal.el4
-rw-r--r--elchemy.el3
2 files changed, 5 insertions, 2 deletions
diff --git a/elchemy-personal.el b/elchemy-personal.el
index dbb3423..25cbba1 100644
--- a/elchemy-personal.el
+++ b/elchemy-personal.el
@@ -38,10 +38,14 @@
(when (require 'elchemy-dashboard nil t)
(elchemy/create-dashboard))
+;; Face Color Customizations
(add-hook 'minibuffer-setup-hook
(lambda ()
(make-local-variable 'face-remapping-alist)
(add-to-list 'face-remapping-alist '(default (:background "gray90")))))
+(custom-set-faces
+ '(mode-line ((t (:background "grey95" :foreground "gray20"))))
+ '(org-document-info-keyword ((t (:foreground "gray100" :height 0.1)))))
(provide 'elchemy-personal)
diff --git a/elchemy.el b/elchemy.el
index c4075c4..63aa651 100644
--- a/elchemy.el
+++ b/elchemy.el
@@ -26,9 +26,8 @@
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(mode-line ((t (:background "grey95" :foreground "gray20" :height 1.1))))
+ '(mode-line ((t (:height 1.1))))
'(org-document-title ((t (:height 2.0 :underline nil))))
- '(org-document-info-keyword ((t (:foreground "gray100" :height 0.1))))
'(org-level-1 ((t (:inherit outline-1 :extend nil :weight extra-bold :height 1.4))))
'(org-level-2 ((t (:inherit outline-2 :extend nil :slant italic :weight bold :height 1.2))))
'(org-level-3 ((t (:inherit outline-3 :extend nil :weight semi-bold)))))