diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-24 19:38:09 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-24 19:38:09 -0700 |
commit | 85abac8654bbcf5c98642bf1f550da967d86969f (patch) | |
tree | 1e92415d3a40138b5ec3464c2f9153c246aaaf8c /emacs/custom | |
parent | this should be the last mass refactor (diff) | |
download | emacs.d-85abac8654bbcf5c98642bf1f550da967d86969f.tar.gz |
theme: improve readability a bit
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/my-ui.el | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/emacs/custom/my-ui.el b/emacs/custom/my-ui.el index 32bf802..f42049e 100644 --- a/emacs/custom/my-ui.el +++ b/emacs/custom/my-ui.el @@ -49,7 +49,19 @@ ;; Load the theme files before enabling a theme (else you get an error). (modus-themes-load-themes) :config - (modus-themes-load-operandi)) + (modus-themes-load-operandi) + :custom + (modus-themes-syntax '(yellow-comments)) + (modus-themes-links '(bold)) + (modus-themes-markup '(bold intense background)) + (modus-themes-headings + '((1 . (background 1.1)) + (2 . (rainbow heavy)) + (t . (bold)))) + (modus-themes-completions + '((matches . (extrabold intense)) + (selection . (semibold intense)) + (popup . (extrabold intense))))) (require 'time) (setq display-time-24hr-format t) |