summary refs log tree commit diff
path: root/config/init-theme.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-23 13:37:09 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-23 13:41:01 -0700
commit844b26255f975d07d708713a89cccd4f7376ae48 (patch)
tree5137e882c74a146a4f49113acc0a203e951de6c6 /config/init-theme.el
parentuse aspell for spell checking (diff)
downloademacs.d-844b26255f975d07d708713a89cccd4f7376ae48.tar.gz
set a background color for comments
Change-Id: I286f8d151eebf3c809da5ea6716c0b46413df21f
Diffstat (limited to '')
-rw-r--r--config/init-theme.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/init-theme.el b/config/init-theme.el
index 9605ea0..275864a 100644
--- a/config/init-theme.el
+++ b/config/init-theme.el
@@ -61,6 +61,11 @@
   :config
   (load-theme 'modus-operandi t))
 
+;; use a different background color for comments
+(custom-set-faces
+ `(font-lock-comment-face ((t (:background "#eeefff"))))
+ `(font-lock-doc-face     ((t (:background "#eeefff")))))
+
 (provide 'init-theme)
 
 ;;; init-theme.el ends here