summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-26 16:45:08 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-26 16:45:08 -0700
commitfd55961c876172c827d90409b7e5315b8b396bd2 (patch)
tree8c2f3aea639d74f17513365d223d3a92eda806c1 /config
parenttweaks some settings (diff)
downloademacs.d-fd55961c876172c827d90409b7e5315b8b396bd2.tar.gz
simplify the theme
Diffstat (limited to 'config')
-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)