Table of Contents
Each Modus theme specifies a color palette that declares named color values and semantic color mappings.
Both of those subsets can be overridden, thus refashioning the theme. Overrides are either shared, by being stored in the user option modus-themes-common-palette-overrides
, or they are specific to the theme they name. In the latter case, the naming scheme of each palette variable is THEME-NAME-palette-overrides
.
Make mode line borderless#
;; Remove the border
(setq modus-themes-common-palette-overrides
'((border-mode-line-active unspecified)
(border-mode-line-inactive unspecified)))
;; Or make border color same as background color
(setq modus-themes-common-palette-overrides
'((border-mode-line-active bg-mode-line-active)
(border-mode-line-inactive bg-mode-line-inactive)))
Make fringe invisible#
(setq modus-themes-common-palette-overrides
'((fringe unspecified)))
Make line number less intense#
(setq modus-themes-common-palette-overrides
'((fg-line-number-inactive fg-dim)
(fg-line-number-active fg-main)
(bg-line-number-inactive unspecified)
(bg-line-number-active unspecified)))
Related
Emacs tokyonight-themes
A clean dark Visual Studio Code theme that celebrates the lights of Downtown Tokyo at night.
Iosevka With JetBrains Mono Style
Build Iosevka with JetBrains Mono Style.
Emacs中去光亮所有符号
之前的文章介绍了如何在Emacs中高亮符号,一般运行 M-x unhighlight-regexp 来选择其中一个符号去高亮。