diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-02-28 23:13:54 +0000 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-02-28 23:13:54 +0000 |
commit | 6fb42a1b53bfc0b891c0e785ad5116bb36367cb3 (patch) | |
tree | a9b42dafc42459780a8dcca0569f9b0ea0627cab /Emacs/.config | |
parent | 1f04ce0ea505ca2afc9c1da4926a21b4a92ee9be (diff) | |
download | dotfiles-6fb42a1b53bfc0b891c0e785ad5116bb36367cb3.tar.gz dotfiles-6fb42a1b53bfc0b891c0e785ad5116bb36367cb3.tar.bz2 dotfiles-6fb42a1b53bfc0b891c0e785ad5116bb36367cb3.zip |
(Emacs)+hl-line theming for monokai theme
Diffstat (limited to 'Emacs/.config')
-rw-r--r-- | Emacs/.config/emacs/monokai-theme.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emacs/.config/emacs/monokai-theme.el b/Emacs/.config/emacs/monokai-theme.el index 2c5ba8b..45f26cb 100644 --- a/Emacs/.config/emacs/monokai-theme.el +++ b/Emacs/.config/emacs/monokai-theme.el @@ -1,5 +1,5 @@ (deftheme monokai - "Created 2020-09-30.") + "Created 2021-02-28.") (custom-theme-set-faces 'monokai @@ -55,7 +55,7 @@ '(company-tooltip-selection ((t (:background "firebrick4")))) '(org-quote ((t (:inherit org-block :slant italic :family "Liberation Mono")))) '(org-verse ((t (:inherit org-block :slant oblique :family "Liberation Mono")))) - '(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")))) - '(ledger-font-posting-account-face ((t nil)))) + '(hl-line ((t (:extend t :background "gray10")))) + '(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 125 :width normal :foundry "ADBO" :family "ibm plex mono"))))) (provide-theme 'monokai) |