diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-03-14 14:00:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-03-14 14:00:11 +0100 |
commit | 27075c3847259037a022e34c0898df7762d54752 (patch) | |
tree | da875992cdb95d686c4f3df0ae5961a148936f0f | |
parent | f7644540a9f0ae50fa75e8e781df849b3b5096ed (diff) |
org: Remove face customization.
-rw-r--r-- | init.org | 27 |
1 files changed, 1 insertions, 26 deletions
@@ -379,28 +379,6 @@ Since I enable =variable-pitch-mode= in my org-mode buffers I also need to expli (set-face-attribute 'org-headline-done nil :strike-through t :foreground "light gray") -(set-face-attribute 'org-document-title nil - :height 1.6 - :foreground (face-attribute 'default :foreground)) -(set-face-attribute 'org-level-1 nil - :height 1.0 - :foreground (face-attribute 'default :foreground)) -(set-face-attribute 'org-level-2 nil - :height 0.9 - :foreground (face-attribute 'default :foreground)) -(set-face-attribute 'org-level-3 nil - :height 0.8 - :foreground (face-attribute 'default :foreground)) -(set-face-attribute 'org-level-4 nil - :height 0.8 - :foreground (face-attribute 'default :foreground)) - -(set-face-attribute 'org-verbatim nil :background "#efe9d6") -(dolist (face '(org-meta-line - org-document-info-keyword - org-special-keyword)) -(set-face-attribute face nil :foreground "#93a1a1" - :weight 'normal)) (dolist (face '(org-block-begin-line org-block-end-line org-block @@ -415,10 +393,7 @@ Since I enable =variable-pitch-mode= in my org-mode buffers I also need to expli org-hide org-indent org-checkbox)) - (set-face-attribute face nil :inherit 'fixed-pitch) - ;; TODO: this is ugly. When scaling up the variable-pitch face the - ;; fixed-pitch face will become even larger. - (set-face-attribute face nil :height 0.8)) + (set-face-attribute face nil :inherit 'fixed-pitch)) (set-face-attribute 'org-tag nil :foreground (face-attribute 'default :foreground) |