diff options
author | Franck Cuny <franck@fcuny.net> | 2021-03-14 19:36:18 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-03-14 19:36:18 -0700 |
commit | 3762195c93c24809566cdab41ffad2a5375656ff (patch) | |
tree | 0789940615a5f4406e5d752bbf7e1541a6840137 | |
parent | emacs: use `magit-repos' (diff) | |
download | emacs.d-3762195c93c24809566cdab41ffad2a5375656ff.tar.gz |
emacs: update configuration for modus-themes
I want the title for org sections to have different size and also to have different colors. This is done by setting the `modus-themes-scale-headings` variable to true, and configuring the various `modus-themes-scale-*` variables. The coloring is controlled with `modus-themes-headings`. Make the highlight line a bit more intense so that it's easier to spot on the screen.
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index 181d6dc..f6436b0 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -26,16 +26,25 @@ (modus-themes-fringes nil) (modus-themes-slanted-constructs t) (modus-themes-mode-line '3d) - (modus-themes-syntax nil) - (Modus-themes-intense-hl-line nil) + (modus-themes-syntax 'faint-yellow-comments) + ;; make the hl line more intense in contrats + (modus-themes-intense-hl-line t) + (modus-themes-hl-line 'underline-only-accented) (modus-themes-paren-match 'intense-bold) (modus-themes-links 'neutral-underline) (modus-themes-prompts 'subtle) (modus-themes-completions nil) (modus-themes-region 'bg-only-no-extend) (modus-themes-diffs 'bg-only) + (modus-themes-org-blocks 'nil) + (modus-themes-headings '((t . rainbow-highlight))) (modus-themes-variable-pitch-headings nil) - (modus-themes-scale-headings nil)) + (modus-themes-scale-headings t) + (modus-themes-scale-1 1.1) + (modus-themes-scale-2 1.15) + (modus-themes-scale-3 1.21) + (modus-themes-scale-4 1.27) + (modus-themes-scale-5 1.33)) (use-package diminish :ensure t) |