diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-09-23 17:09:16 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-09-23 17:09:16 +0100 |
commit | 1f4b17312dd56eb4572f396e0d69ba158efe7ff2 (patch) | |
tree | ba5ce391cfcc352fd00250e74580222ae9933d47 | |
parent | 576cb6993bbcce835a07eb0182cb31fb040d3ac7 (diff) | |
download | dotfiles-1f4b17312dd56eb4572f396e0d69ba158efe7ff2.tar.gz dotfiles-1f4b17312dd56eb4572f396e0d69ba158efe7ff2.tar.bz2 dotfiles-1f4b17312dd56eb4572f396e0d69ba158efe7ff2.zip |
(Emacs/elisp)+font-latex customisation in personal-light-theme
-rw-r--r-- | Emacs/.config/emacs/elisp/personal-light-theme.el | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/elisp/personal-light-theme.el b/Emacs/.config/emacs/elisp/personal-light-theme.el index 6450c32..78c8fa9 100644 --- a/Emacs/.config/emacs/elisp/personal-light-theme.el +++ b/Emacs/.config/emacs/elisp/personal-light-theme.el @@ -13,6 +13,23 @@ :foreground "grey65" :background "grey65" :weight thin)))) '(fixed-pitch ((t (:family "Monospace")))) + '(font-latex-bold-face ((t (:weight bold :foreground "#9eacac")))) + '(font-latex-doctex-documentation-face ((t (:background unspecified)))) + '(font-latex-doctex-preprocessor-face ((t (:inherit (font-latex-doctex-documentation-face font-lock-builtin-face font-lock-preprocessor-face))))) + '(font-latex-italic-face ((t (:style italic :foreground "#9eacac")))) + '(font-latex-math-face ((t (:foreground "#7a7ed2")))) + '(font-latex-sectioning-0-face ((t (:inherit font-latex-sectioning-5-face :height 1.1)))) + '(font-latex-sectioning-1-face ((t (:inherit font-latex-sectioning-5-face :height 1.1)))) + '(font-latex-sectioning-2-face ((t (:inherit font-latex-sectioning-5-face :height 1.1)))) + '(font-latex-sectioning-3-face ((t (:inherit font-latex-sectioning-5-face :height 1.1)))) + '(font-latex-sectioning-4-face ((t (:inherit font-latex-sectioning-5-face :height 1.1)))) + '(font-latex-sectioning-5-face ((t (:foreground "#c49619" :weight bold)))) + '(font-latex-sedate-face ((t (:foreground "#9eacac")))) + '(font-latex-slide-title-face ((t (:inherit (default font-lock-type-face) :weight bold :height 1.2)))) + '(font-latex-string-face ((t (:foreground "#3cafa5")))) + '(font-latex-subscript-face ((t (:height 0.8)))) + '(font-latex-superscript-face ((t (:height 0.8)))) + '(font-latex-verbatim-face ((t (:inherit fixed-pitch :foreground "#8d9fa1" :slant italic)))) '(font-lock-bracket-face ((t (:inherit (font-lock-punctuation-face))))) '(font-lock-builtin-face ((t (:foreground "#A020F0")))) '(font-lock-comment-delimiter-face ((t (:inherit (font-lock-comment-face))))) |