diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-06-22 02:26:08 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-06-22 02:26:08 +0100 |
commit | a89353eeb8727e31baa6093817be37583a34c41e (patch) | |
tree | 8267afbbd58d20cad7a330fb7a67393b998cd13e /Emacs/.config/emacs/elisp/personal-primary-theme.el | |
parent | 3ef303fb670303571999aa5b9765ea91ad02ce56 (diff) | |
download | dotfiles-a89353eeb8727e31baa6093817be37583a34c41e.tar.gz dotfiles-a89353eeb8727e31baa6093817be37583a34c41e.tar.bz2 dotfiles-a89353eeb8727e31baa6093817be37583a34c41e.zip |
Tons of changes
Diffstat (limited to 'Emacs/.config/emacs/elisp/personal-primary-theme.el')
-rw-r--r-- | Emacs/.config/emacs/elisp/personal-primary-theme.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Emacs/.config/emacs/elisp/personal-primary-theme.el b/Emacs/.config/emacs/elisp/personal-primary-theme.el index 22a1faa..d3aa22f 100644 --- a/Emacs/.config/emacs/elisp/personal-primary-theme.el +++ b/Emacs/.config/emacs/elisp/personal-primary-theme.el @@ -51,8 +51,8 @@ '(link-visited ((t (:foreground "violet" :inherit (link))))) '(match ((t (:background "RoyalBlue3")))) '(minibuffer-prompt ((t (:foreground "cyan")))) - '(mode-line ((t (:box t :foreground "LightSkyBlue" :background "black")))) - '(mode-line-inactive ((t (:box nil :weight light :foreground "CadetBlue" :background "grey7")))) + '(mode-line ((t (:box t :foreground "LightSkyBlue" :background "black" :inherit (default))))) + '(mode-line-inactive ((t (:box nil :weight light :foreground "CadetBlue" :background "grey7" :inherit (default))))) '(mode-line-buffer-id ((t (:weight bold)))) '(mode-line-emphasis ((t (:weight bold)))) '(next-error ((t (:inherit (region))))) @@ -67,6 +67,16 @@ '(pdf-isearch-batch ((t (:foreground "black" :background "white")))) '(query-replace ((t (:inherit (isearch))))) '(region ((t (:extend t :background "grey25")))) + '(rainbow-delimiters-depth-1-face ((t (:extend t :foreground "red")))) + '(rainbow-delimiters-depth-2-face ((t (:extend t :foreground "darkorange")))) + '(rainbow-delimiters-depth-3-face ((t (:extend t :foreground "yellow")))) + '(rainbow-delimiters-depth-4-face ((t (:extend t :foreground "green")))) + '(rainbow-delimiters-depth-5-face ((t (:extend t :foreground "DeepSkyBlue")))) + '(rainbow-delimiters-depth-6-face ((t (:extend t :foreground "purple")))) + '(rainbow-delimiters-depth-7-face ((t (:extend t :foreground "violet")))) + '(rainbow-delimiters-mismatched-face ((t (:extend t :foreground "white" :background "red1")))) + '(rainbow-delimiters-unmatched-face ((t (:inherit rainbow-delimiters-mismatched-face)))) + '(rainbow-delimiters-base-error-face ((t (:inherit rainbow-delimiters-mismatched-face)))) '(shadow ((((class color grayscale) (min-colors 88) (background light)) (:foreground "grey50")) (((class color grayscale) (min-colors 88) (background dark)) (:foreground "grey70")) (((class color) (min-colors 8) (background light)) (:foreground "green")) |