modus-themes-headings: allow font (weight) properties
I just discovered that the latest Emacs 28 distinguishes between "regular" and "medium" font weights, where "medium" is slightly heavier. The Roboto Mono font looks good enough at "regular", but the org headings (via modus-themes-headings
) are a bit too thick for my taste when emboldened.
It seems there's only a handful of options, e.g.
(const :tag "Background color" background)
(const :tag "Overline" overline)
(const :tag "No bold weight" no-bold)
(choice :tag "Colors"
(const :tag "Subtle colors" nil)
(const :tag "Rainbow colors" rainbow)
(const :tag "Monochrome" monochrome)))
Instead of merely toggling bold/no-bold, I would like to propose a weight picker: that way, headings could be huge, variable pitch, and have a light
or thin
weight (to offset larger sizes).
What do you think about replacing no-bold
with a weight
setting, @protesilaos?