diff options
author | fpi | 2020-02-04 16:46:07 +0100 |
---|---|---|
committer | fpi | 2020-02-23 18:07:12 +0100 |
commit | 18126e59b3782a0bf79d48597bd7895b30092fe9 (patch) | |
tree | ada8acd145da5e4b2c0529614892d80f7aeb4b7f | |
parent | Add testing support for org-caldav (diff) |
Update some org faces & default face bg,fg
- Dark theme default bg,fg
- org-property-value and org-drawer to match
- org-agenda dates to not inherit variable pitch
Second to be consistent with the org-special-keyword face used inside
drawers.
-rw-r--r-- | emacs-init.org | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/emacs-init.org b/emacs-init.org index 8e74035..3671aec 100644 --- a/emacs-init.org +++ b/emacs-init.org @@ -300,7 +300,9 @@ The above macro can be used like this. ;; (set-face-attribute 'variable-pitch nil :font "EtBookOt-11") ;; Settings ((default - (:family ,sans-mono-font) + (:family ,sans-mono-font + :background ,bg-dark + :foreground ,bg-white) (:family ,sans-mono-font :background ,bg-white :foreground ,bg-dark)) @@ -523,6 +525,16 @@ The above macro can be used like this. :foreground ,comment) (:family ,sans-mono-font :height 0.8)) + (org-property-value + (:height 0.9 + :foreground ,comment) + (:family ,sans-mono-font + :height 0.8)) + (org-drawer + (:height 0.9 + :foreground ,comment) + (:family ,sans-mono-font + :height 0.8)) (org-todo (:foreground ,builtin :background ,bg-dark) @@ -558,15 +570,12 @@ The above macro can be used like this. :inherit variable-pitch) nil) (org-agenda-date - (:foreground ,doc - :inherit variable-pitch) - (:inherit variable-pitch - :height 1.1)) + (:foreground ,doc) + (:foreground ,doc)) (org-agenda-date-today (:height 1.5 - :foreground ,keyword - :inherit variable-pitch) - nil) + :foreground ,keyword) + (:height 1.2)) (org-agenda-date-weekend (:inherit org-agenda-date) nil) |