Should we define a font-weight variable for <strong> and <b>tags in the theme?
I'd suggest the following for __font-mixins.less_:
b,
strong {
font-weight: @font-weight-bold;
}
In _core/less/_browser/normalize.less_ we have the following:
b,
strong {
font-weight: bolder;
}
This often causes inconsistencies in weights where we have specified a set weight for other bold items.
Yes, I think that's sensible.
Agree with the suggestion though do you think it should be defined in base.less in core like the below?
b,
strong {
font-weight: bold;
}