Skip to content

Commit

Permalink
tweak(ui): remove unused themes
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed May 23, 2023
1 parent 8e0421c commit d8f4e3b
Showing 1 changed file with 0 additions and 73 deletions.
73 changes: 0 additions & 73 deletions core/me-core-ui.el
Original file line number Diff line number Diff line change
Expand Up @@ -40,76 +40,6 @@ Useful for keeping track of the enabled theme."
"Disable previously enabled themes before enabling the new one."
(mapc #'disable-theme custom-enabled-themes)))

(use-package modus-themes
:straight (:host github :repo "protesilaos/modus-themes")
:config
;; In all of the following, WEIGHT is a symbol such as `semibold',
;; `light', `bold', or anything mentioned in `modus-themes-weights'.
(setq modus-themes-italic-constructs t
modus-themes-bold-constructs t
modus-themes-mixed-fonts nil
modus-themes-variable-pitch-ui nil
modus-themes-custom-auto-reload t

;; Options for `modus-themes-prompts' are either nil (the
;; default), or a list of properties that may include any of those
;; symbols: `italic', `WEIGHT'
modus-themes-prompts '(semi-bold)

;; The `modus-themes-completions' is an alist that reads two
;; keys: `matches', `selection'. Each accepts a nil value (or
;; empty list) or a list of properties that can include any of
;; the following (for WEIGHT read further below):
;; `matches' :: `underline', `italic', `WEIGHT'
;; `selection' :: `underline', `italic', `WEIGHT'
modus-themes-completions
'((matches . (extrabold))
(selection . (semibold text-also)))

modus-themes-org-blocks 'gray-background ; {nil,'gray-background,'tinted-background}

;; The `modus-themes-headings' is an alist: read the manual's
;; node about it or its doc string. Basically, it supports
;; per-level configurations for the optional use of
;; `variable-pitch' typography, a height value as a multiple of
;; the base font size (e.g. 1.5), and a `WEIGHT'.
modus-themes-headings
'((1 . (1.4))
(2 . (1.3))
(3 . (1.2))
(agenda-date . (1.2))
(agenda-structure . (light 1.5))
(t . (1.1)))

modus-themes-common-palette-overrides
`(;; Customize the mode-line colors
(bg-mode-line-active bg-blue-intense)
(fg-mode-line-active fg-main)

;; From the section "Make the mode line borderless"
(border-mode-line-active unspecified)
(border-mode-line-inactive unspecified)

;; From the section "Make matching parenthesis more or less intense"
(bg-paren-match bg-blue-intense)
(underline-paren-match unspecified)

;; Links
(underline-link border)
(underline-link-visited border)
(underline-link-symbolic border)

;; Comments are yellow, strings are green
(comment yellow-cooler)
(string green-warmer)

;; And expand the preset here. Note that the ,@ works because we use
;; the backtick for this list, instead of a straight quote.
,@modus-themes-preset-overrides-faint))

;; Load the theme of your choice.
(load-theme 'modus-operandi-tinted t))

(use-package all-the-icons
:straight t
:config
Expand All @@ -127,9 +57,6 @@ Useful for keeping track of the enabled theme."
(use-package doom-themes
:straight t)

(use-package apropospriate-theme
:straight t)

(use-package dashboard
:straight t
:after evil evil-collection
Expand Down

0 comments on commit d8f4e3b

Please sign in to comment.