summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init.org16
1 files changed, 14 insertions, 2 deletions
diff --git a/init.org b/init.org
index 9e2145a..b0c239f 100644
--- a/init.org
+++ b/init.org
@@ -229,12 +229,24 @@ This is my org mode configuration. Document it.
;; render with variable pitch font (with a few exceptions)
(variable-pitch-mode 1)
- (set-face-attribute 'org-document-title nil :height 1.6)
- (set-face-attribute 'org-level-1 nil :height 1.3)
+ (set-face-attribute 'org-document-title nil
+ :height 1.6
+ :foreground "black")
+ (set-face-attribute 'org-level-1 nil
+ :height 1.3
+ :foreground "black")
+ (set-face-attribute 'org-block-background 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-table
org-meta-line
+ org-document-info-keyword
+ org-special-keyword
org-verbatim
org-todo
org-block-background))