diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 23:52:04 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 23:52:04 +0100 |
commit | ecade8210c5b350897fac94efa36e251dbc05b2a (patch) | |
tree | b0a34998c89ff6cd0eee6413cb61d6e2b74dc297 /Emacs/.config | |
parent | cb95ca2ac3bc14318e53c6e96135207fe67e183e (diff) | |
download | dotfiles-ecade8210c5b350897fac94efa36e251dbc05b2a.tar.gz dotfiles-ecade8210c5b350897fac94efa36e251dbc05b2a.tar.bz2 dotfiles-ecade8210c5b350897fac94efa36e251dbc05b2a.zip |
+org-block greys to Emacs
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/Grayscale-theme.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/Grayscale-theme.el b/Emacs/.config/emacs/Grayscale-theme.el index 9cacbc7..6449055 100644 --- a/Emacs/.config/emacs/Grayscale-theme.el +++ b/Emacs/.config/emacs/Grayscale-theme.el @@ -1,5 +1,5 @@ (deftheme Grayscale - "Created 2020-08-01.") + "Created 2020-08-09.") (custom-theme-set-faces 'Grayscale @@ -46,11 +46,12 @@ '(match ((((class color) (min-colors 88) (background light)) (:background "yellow1")) (((class color) (min-colors 88) (background dark)) (:background "RoyalBlue3")) (((class color) (min-colors 8) (background light)) (:foreground "black" :background "yellow")) (((class color) (min-colors 8) (background dark)) (:foreground "white" :background "blue")) (((type tty) (class mono)) (:inverse-video t)) (t (:background "gray")))) '(next-error ((t (:inherit (region))))) '(query-replace ((t (:inherit (isearch))))) - '(default ((t (:family "Source Code Pro" :foundry "ADBO" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#b6b6b6" :background "#000000" :stipple nil :inherit nil)))) '(company-tooltip ((t (:background "navy blue" :foreground "white")))) '(company-tooltip-selection ((t (:background "gray31")))) '(company-tooltip-annotation ((t (:foreground "grey" :slant italic)))) '(company-preview ((((background light)) (:inherit (company-tooltip-selection company-tooltip))) (((background dark)) (:foreground "wheat" :background "blue4")))) - '(company-preview-common ((t (:inherit company-preview :foreground "grey"))))) + '(company-preview-common ((t (:inherit company-preview :foreground "grey")))) + '(org-block ((t (:background "gray3" :inherit shadow)))) + '(default ((t (:family "Source Code Pro" :foundry "ADBO" :width normal :height 113 :weight normal :slant normal :underline nil :overline nil :extend nil :strike-through nil :box nil :inverse-video nil :foreground "#b6b6b6" :background "#000000" :stipple nil :inherit nil))))) (provide-theme 'Grayscale) |