# Ef (εὖ) themes for GNU Emacs IMAGES HERE: . The `ef-themes` are a collection of light and dark themes for GNU Emacs whose goal is to provide colorful ("pretty") yet legible options for users who want something with a bit more flair than the `modus-themes` (also designed by me). Starting with version `2.0.0`, the `ef-themes` are built on top of the `modus-themes`. This means that all customisation options of the Modus themes apply to the Ef themes. Same for all Modus commands that load a theme. Enable `ef-themes-take-over-modus-themes-mode` to set up this arrangement (or enable `modus-themes-include-derivatives-mode` instead to blend Ef and Modus into one collection). + Package name (GNU ELPA): `ef-themes` + Official manual: + Change log: + Sample pictures: + Git repositories: + GitHub: + GitLab: + Backronym: Eclectic Fashion in Themes Hides Exaggerated Markings, Embellishments, and Sparkles. ```elisp (use-package ef-themes :ensure t :init ;; This makes the Modus commands listed below consider only the Ef ;; themes. For an alternative that includes Modus and all ;; derivative themes (like Ef), enable the ;; `modus-themes-include-derivatives-mode' instead. The manual of ;; the Ef themes has a section that explains all the possibilities: ;; ;; - Evaluate `(info "(ef-themes) Working with other Modus themes or taking over Modus")' ;; - Visit (ef-themes-take-over-modus-themes-mode 1) :bind (("" . modus-themes-rotate) ("C-" . modus-themes-select) ("M-" . modus-themes-load-random)) :config ;; All customisations here. (setq modus-themes-mixed-fonts t) (setq modus-themes-italic-constructs t) ;; Finally, load your theme of choice (or a random one with ;; `modus-themes-load-random', `modus-themes-load-random-dark', ;; `modus-themes-load-random-light'). (modus-themes-load-theme 'ef-summer)) ```