branch: elpa/spacemacs-theme
commit 0ce50963cbcc2b7b9e9e71f50c0714c949878476
Author: nashamri <[email protected]>
Commit: nashamri <[email protected]>

    Org agenda headings now respect spacemacs-theme-org-height (fix #17)
---
 spacemacs-common.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/spacemacs-common.el b/spacemacs-common.el
index ceb2532854..e503a10711 100644
--- a/spacemacs-common.el
+++ b/spacemacs-common.el
@@ -374,9 +374,9 @@
 
 ;;;;; org
      `(org-agenda-clocking ((,class (:foreground ,comp))))
-     `(org-agenda-date ((,class (:foreground ,var :height 1.1))))
-     `(org-agenda-date-today ((,class (:weight bold :foreground ,keyword 
:height 1.3))))
-     `(org-agenda-date-weekend ((,class (:weight normal :foreground ,base))))
+     `(org-agenda-date ((,class (:foreground ,var :height ,(if 
spacemacs-theme-org-height 1.1 1.0)))))
+     `(org-agenda-date-today ((,class (:weight bold :foreground ,keyword 
:height ,(if spacemacs-theme-org-height 1.3 1.0)))))
+     `(org-agenda-date-weekend ((,class (:weight normal :foreground ,var))))
      `(org-agenda-done ((,class (:foreground ,(if (eq variant 'dark) suc 
green) :bold t))))
      `(org-agenda-structure ((,class (:weight bold :foreground ,comp))))
      `(org-block ((,class (:foreground ,base))))

Reply via email to