summaryrefslogtreecommitdiff
path: root/config/init-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'config/init-theme.el')
-rw-r--r--config/init-theme.el46
1 files changed, 3 insertions, 43 deletions
diff --git a/config/init-theme.el b/config/init-theme.el
index 275864a..8b4e879 100644
--- a/config/init-theme.el
+++ b/config/init-theme.el
@@ -21,50 +21,10 @@
:font "Monaspace Radon"
:height 150)
-(custom-set-faces '
- (font-lock-comment-face ((t (:font "Monaspace Radon" :italic t :height 1.0)))))
-
-(use-package modus-themes
- :ensure t
- :custom
- ;; Syntax Highlighting
- (modus-themes-bold-constructs t)
- (modus-operandi-palette-overrides '((comment red-faint)
- (string "#101010")
- (bg-main "#FFFCF6")))
-
- (modus-themes-italic-constructs t)
-
- ;; Use mixed fonts
- (modus-themes-mixed-fonts t)
- (modus-themes-variable-pitch-ui t)
-
- ;; Enhance minibuffer completions
- (modus-themes-prompts '(italic bold))
- (modus-themes-completions '((matches . (extrabold))
- (selection . (semibold italic text-also))))
-
- ;; Org Mode
- ;;; Make headings in org files more distinct
- (modus-themes-headings '((t . (background bold rainbow 1))))
- ;;; Tint the background of code blocks in org files
- (modus-themes-org-blocks 'tinted-background)
- ;;; Make tags less colorful and tables look the same as
- ;;; the default foreground.
- (prose-done cyan-cooler)
- (prose-tag fg-dim)
- (prose-table fg-main)
-
- ;; Make the fringe more intense
- (modus-themes-common-palette-overrides '((fringe bg-active)))
-
- :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")))))
+ ;; make sure comments are distinct from the rest
+ `(font-lock-comment-face ((t (:font "Monaspace Radon" :italic t :bold t :height 1.0 :background "#eeefff" :foreground "#7f0000"))))
+ `(font-lock-doc-face ((t (:font "Monaspace Radon" :italic t :bold t :height 1.0 :background "#eeefff" :foreground "#7f0000")))))
(provide 'init-theme)