diff options
author | Blendoit <blendoit@gmail.com> | 2020-11-07 17:01:38 -0800 |
---|---|---|
committer | Blendoit <blendoit@gmail.com> | 2020-11-07 17:01:38 -0800 |
commit | 4f35728bfa2e9c30dfe2bc6654984fdeec19eca4 (patch) | |
tree | a6f91cd9ed5fdeadcbb099b5586f227786231ccd /themes | |
parent | 8c1c484e875b35e65aae23f8b05687a31c23da49 (diff) |
More prettifyed symbols in Emacs.
Diffstat (limited to 'themes')
-rw-r--r-- | themes/blendoit-light-theme.el | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/themes/blendoit-light-theme.el b/themes/blendoit-light-theme.el index 36747eb..8b2836d 100644 --- a/themes/blendoit-light-theme.el +++ b/themes/blendoit-light-theme.el @@ -56,25 +56,21 @@ '(org-meta-line ((t (:foreground "SteelBlue" :family "Hermit")))) '(org-document-info-keyword ((t (:inherit org-meta-line)))) '(org-code ((t (:background "light grey" :foreground "black" :height 0.9 :family "Hack")))) - '(org-checkbox-statistics-todo ((t (:inherit org-checkbox :foreground "tomato")))) - '(org-checkbox-statistics-done ((t (:inherit org-checkbox :foreground "ForestGreen")))) '(org-verbatim ((t (:foreground "DodgerBlue1" :height 0.9 :foundry "Hack")))) '(font-lock-doc-face ((t (:foreground "black" :height 1.1 :inherit variable-pitch)))) '(org-document-info ((t (:weight bold)))) '(org-table ((t (:height 0.8 :family "Hack")))) '(org-block ((t (:inherit fixed-pitch :background "smoke" :foreground "light slate blue" :height 0.8)))) - '(org-special-keyword ((t (:background "white" :weight bold :inherit org-meta-line)))) - '(org-level-1 ((t (:foreground "black" :weight bold :height 1.6 :family "Jost*")))) - '(org-level-2 ((t (:foreground "gray30" :weight bold :height 1.4)))) - '(org-level-3 ((t (:foreground "gray45" :weight bold :height 1.2)))) - '(org-level-4 ((t (:foreground "gray60" :weight bold :height 1.1)))) - '(org-level-5 ((t (:foreground "gray75" :weight bold :height 1.0)))) + '(org-special-keyword ((t (:inherit org-meta-line :weight bold :background "white")))) + '(org-level-1 ((t (:weight bold :height 1.6 :family "Jost*")))) + '(org-level-2 ((t (:weight bold :height 1.4)))) + '(org-level-3 ((t (:weight bold :height 1.2)))) + '(org-level-4 ((t (:weight bold :height 1.1)))) + '(org-level-5 ((t (:weight bold :height 1.0)))) '(org-level-6 ((t (:inherit org-level-5)))) '(org-level-7 ((t (:inherit org-level-5)))) '(org-level-8 ((t (:inherit org-level-5)))) - '(org-checkbox ((t (:weight bold :inherit org-meta-line)))) - '(org-todo ((t (:background "tomato" :foreground "White" :weight bold :height 1.2 :family "Hermit")))) - '(org-done ((t (:background "ForestGreen" :foreground "White" :weight bold :height 1.2 :family "Hermit")))) + '(org-checkbox ((t (:inherit org-meta-line :weight bold)))) '(org-date ((t (:inherit link)))) '(Info-quoted ((t (:inherit org-block)))) '(org-priority ((t (:inherit org-meta-line)))) @@ -83,6 +79,9 @@ '(org-quote ((t (:inherit variable-pitch :slant italic)))) '(org-ellipsis ((t (:inherit shadow :background "white")))) '(org-footnote ((t (:inherit link)))) - '(default ((t (:background "white" :foreground "black" :height 140 :family "Hack"))))) + '(org-todo ((t (:inherit org-checkbox)))) + '(org-done ((t (:inherit org-checkbox)))) + '(default ((t (:background "white" :foreground "black" :height 140 :family "Hack")))) + '(git-commit-summary ((t (:inherit varialbe-pitch))))) (provide-theme 'blendoit-light) |