Config: set the weight of org headings to 1

This commit is contained in:
User
2026-05-04 20:48:59 +08:00
parent 2162b34007
commit d323b23bee
5 changed files with 23 additions and 11 deletions

View File

@@ -18,10 +18,15 @@
my-base16-dark-core-palette
'((custom-theme-set-faces
theme-name
`(org-level-2 ((,class (:foreground ,green :height 1.05))))
`(org-level-3 ((,class (:foreground ,blue))))
`(org-level-6 ((,class (:foreground ,green))))
`(org-level-8 ((,class (:foreground ,blue))))
`(org-level-1 ((,class (:foreground ,orange :height 1.0 :weight normal))))
`(org-level-2 ((,class (:foreground ,green :height 1.0 :weight normal))))
`(org-level-3 ((,class (:foreground ,blue :height 1.0 :weight normal))))
`(org-level-4 ((,class (:foreground ,yellow :height 1.0 :weight normal))))
`(org-level-5 ((,class (:foreground ,cyan :height 1.0 :weight normal))))
`(org-level-6 ((,class (:foreground ,green :height 1.0 :weight normal))))
`(org-level-7 ((,class (:foreground ,orange :height 1.0 :weight normal))))
`(org-level-8 ((,class (:foreground ,blue :height 1.0 :weight normal))))
`(org-document-title ((,class (:foreground ,base0 :height 1.0 :weight bold))))
`(org-done ((,class (:foreground ,green :weight bold))))
`(org-headline-done ((,class (:foreground ,green))))
`(org-block-begin-line ((,class (:foreground ,base01 :underline t :slant italic :extend t))))