默认.font-weight-medium
为500,我想将其特定字体更改为600。根据{{3}},这些是$font-weights
的默认值:
map-deep-merge(
(
'thin': 100,
'light': 300,
'regular': 400,
'medium': 500,
'bold': 700,
'black': 900
),
$font-weights
);
我尝试将$fonts-weights
中的variables.scss
设置为
$font-weights: (
'thin': 100,
'light': 300,
'regular': 400,
'medium': 600,
'bold': 700,
'black': 900
)
但是没有用。