tweak: modify rainbow colors

This commit is contained in:
Kiana Sheibani 2026-02-14 18:25:13 -05:00
parent 75b3cacac5
commit c3e507524a
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -2198,15 +2198,15 @@ The =rainbow-delimiters= package adds a simple minor mode to color matching pare
:hook (prog-mode . rainbow-delimiters-mode) :hook (prog-mode . rainbow-delimiters-mode)
:config :config
(custom-set-faces! (custom-set-faces!
`(rainbow-delimiters-depth-1-face :foreground ,(doom-color 'fg)) `(rainbow-delimiters-depth-1-face :foreground ,(doom-color 'base8))
`(rainbow-delimiters-depth-2-face :foreground ,(doom-color 'red)) `(rainbow-delimiters-depth-2-face :foreground ,(doom-color 'red))
`(rainbow-delimiters-depth-3-face :foreground ,(doom-color 'orange)) `(rainbow-delimiters-depth-3-face :foreground ,(doom-color 'orange))
`(rainbow-delimiters-depth-4-face :foreground ,(doom-color 'brown)) `(rainbow-delimiters-depth-4-face :foreground ,(doom-color 'brown))
`(rainbow-delimiters-depth-5-face :foreground ,(doom-color 'green)) `(rainbow-delimiters-depth-5-face :foreground ,(doom-color 'green))
`(rainbow-delimiters-depth-6-face :foreground ,(doom-color 'cyan)) `(rainbow-delimiters-depth-6-face :foreground ,(doom-color 'cyan))
`(rainbow-delimiters-depth-7-face :foreground ,(doom-color 'blue)) `(rainbow-delimiters-depth-7-face :foreground ,(doom-color 'blue))
`(rainbow-delimiters-depth-9-face :foreground ,(doom-color 'magenta)) `(rainbow-delimiters-depth-8-face :foreground ,(doom-color 'magenta))
`(rainbow-delimiters-depth-9-face :foreground ,(doom-color 'base5)))) `(rainbow-delimiters-depth-9-face :foreground ,(doom-color 'dark-blue))))
#+end_src #+end_src
** Snippets ** Snippets
@ -2996,8 +2996,8 @@ It's sometimes nice to be able to click a link in an Org file that takes me to o
#+begin_src emacs-lisp #+begin_src emacs-lisp
(custom-set-faces! (custom-set-faces!
`(outline-1 :foreground ,(doom-color 'orange)) `(outline-1 :foreground ,(doom-color 'orange))
`(outline-2 :foreground ,(color-darken-name (doom-color 'brown) 8)) `(outline-2 :foreground ,(color-darken-name (doom-color 'brown) 6))
`(outline-3 :foreground ,(color-darken-name (doom-color 'green) 30)) `(outline-3 :foreground ,(color-darken-name (doom-color 'green) 25))
`(outline-4 :foreground ,(doom-color 'blue)) `(outline-4 :foreground ,(doom-color 'blue))
`(outline-5 :foreground ,(color-darken-name (doom-color 'magenta) 10)) `(outline-5 :foreground ,(color-darken-name (doom-color 'magenta) 10))
`(outline-6 :foreground ,(doom-color 'base7)) `(outline-6 :foreground ,(doom-color 'base7))