tweak(org): customize heading colors
This commit is contained in:
parent
ba72409d67
commit
83a0eecdcc
1 changed files with 19 additions and 0 deletions
19
config.org
19
config.org
|
|
@ -2977,8 +2977,27 @@ It's sometimes nice to be able to click a link in an Org file that takes me to o
|
|||
|
||||
** Appearance
|
||||
|
||||
*** Colors
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(custom-set-faces!
|
||||
`(outline-1 :foreground ,(doom-color 'orange))
|
||||
`(outline-2 :foreground ,(color-darken-name (doom-color 'brown) 8))
|
||||
`(outline-3 :foreground ,(color-darken-name (doom-color 'green) 30))
|
||||
`(outline-4 :foreground ,(doom-color 'blue))
|
||||
`(outline-5 :foreground ,(color-darken-name (doom-color 'magenta) 10))
|
||||
`(outline-6 :foreground ,(doom-color 'base7))
|
||||
`(outline-7 :foreground ,(doom-color 'base5))
|
||||
`(outline-8 :foreground ,(doom-color 'base3)))
|
||||
|
||||
;; Prevents bright colors from appearing again at level 9+
|
||||
(setq org-cycle-level-faces nil)
|
||||
#+end_src
|
||||
|
||||
*** Entities
|
||||
|
||||
This is where I put custom entities to use within my org files.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(after! org
|
||||
(setq org-entities-user
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue