diff options
Diffstat (limited to 'theme.el')
-rw-r--r-- | theme.el | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -1,16 +1,24 @@ ;;; theme -(setq modus-themes-syntax 'yellow-comments) +(setq modus-themes-syntax '(yellow-comments)) (setq modus-themes-bold-constructs t) (setq modus-themes-slanted-constructs t) -(setq modus-themes-mode-line 'borderless-3d) +(setq modus-themes-mode-line '(3d borderless padded)) +(setq modus-themes-hl-line '(intense accented)) (setq modus-themes-org-blocks 'gray-background) (setq modus-themes-subtle-line-numbers t) (setq modus-themes-region nil) +(setq modus-themes-links '(background bold)) ; Try it out (setq modus-themes-headings '((t . rainbow))) +(setq modus-themes-org-agenda + '((header-block . (variable-pitch scale-title)) + (header-date . (gray-scale)) + (scheduled . rainbow) + ())) + (setq modus-themes-scale-headings t) (setq modus-themes-scale-1 1.05) (setq modus-themes-scale-2 1.1) @@ -18,6 +26,7 @@ (setq modus-themes-scale-4 1.2) (setq modus-themes-scale-5 1.3) +(setq modus-themes-variable-pitch-ui nil) (setq modus-themes-variable-pitch-headings t) (use-package "protesilaos/modus-themes" 'modus-vivendi-theme |