From c144e18c515eb3fccc4bb45e21977b51c507749a Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sat, 1 Jun 2024 18:24:34 -0700 Subject: Style Changes 1. Make the title large 2. Make the document info tags hidden 3. Distinguish the minibuffer by a darker background --- elchemy-personal.el | 7 ++++++- elchemy.el | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/elchemy-personal.el b/elchemy-personal.el index 2eb865a..02d0bdc 100644 --- a/elchemy-personal.el +++ b/elchemy-personal.el @@ -71,6 +71,11 @@ (add-to-list 'org-agenda-files "/ssh:onid:todo.org") (add-to-list 'org-capture-templates '("o" "OSU Todo" entry (file+headline "/ssh:onid:todo.org" "Imported") - "* TODO %?\n %i\n %a\n")) + "* TODO %?\n %i\n %a\n")) + +(add-hook 'minibuffer-setup-hook + (lambda () + (make-local-variable 'face-remapping-alist) + (add-to-list 'face-remapping-alist '(default (:background "gray90"))))) (provide 'elchemy-personal) diff --git a/elchemy.el b/elchemy.el index 757d629..d9cd4c5 100644 --- a/elchemy.el +++ b/elchemy.el @@ -30,6 +30,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. + '(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))))) -- cgit v1.2.1