diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-27 21:35:58 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-09-27 21:35:58 +0100 |
commit | 645b20f7f0eeef7585ce837689df8cd9a8dc96ec (patch) | |
tree | 58542dd2e04d8d04b6c0ba53924a36b600dd9261 /Emacs/.config/emacs | |
parent | d75332fc7fb4dcc470f3986f3011123d6dd244cd (diff) | |
download | dotfiles-645b20f7f0eeef7585ce837689df8cd9a8dc96ec.tar.gz dotfiles-645b20f7f0eeef7585ce837689df8cd9a8dc96ec.tar.bz2 dotfiles-645b20f7f0eeef7585ce837689df8cd9a8dc96ec.zip |
(Emacs)+org-quote theming to monokai
Just make it slanted and use a mono font
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/monokai-theme.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/monokai-theme.el b/Emacs/.config/emacs/monokai-theme.el index 43909ff..4b38352 100644 --- a/Emacs/.config/emacs/monokai-theme.el +++ b/Emacs/.config/emacs/monokai-theme.el @@ -1,5 +1,5 @@ (deftheme monokai - "Created 2020-09-21.") + "Created 2020-09-27.") (custom-theme-set-faces 'monokai @@ -50,9 +50,11 @@ '(org-block ((t (:background "gray8")))) '(ido-subdir ((t (:foreground "deepskyblue")))) '(eshell-prompt ((t (:foreground "deepskyblue" :weight bold)))) - '(default ((t (:inherit nil :extend nil :stipple nil :background "black" :foreground "#d6d6d4" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "ADBO" :family "ibm plex mono")))) '(company-tooltip-common ((((background light)) (:foreground "darkred")) (((background dark)) (:foreground "red")))) '(company-tooltip ((t (:background "gray10" :foreground "white")))) - '(company-tooltip-selection ((t (:background "firebrick4"))))) + '(company-tooltip-selection ((t (:background "firebrick4")))) + '(default ((t (:inherit nil :extend nil :stipple nil :background "black" :foreground "#d6d6d4" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 113 :width normal :foundry "ADBO" :family "ibm plex mono")))) + '(org-quote ((t (:inherit org-block :slant italic :family "Liberation Mono")))) + '(org-verse ((t (:inherit org-block :slant oblique :family "Liberation Mono"))))) (provide-theme 'monokai) |