diff --git a/Google Fonts/fixfonts.py b/Google Fonts/fixfonts.py index 6b92eb0..1bb531a 100644 --- a/Google Fonts/fixfonts.py +++ b/Google Fonts/fixfonts.py @@ -233,10 +233,6 @@ def main(): else: instance.isBold = False - # Change ExtraLight weight class from 250 to 275 - if instance.weight == 'ExtraLight': - instance.customParameters['weightClass'] = 275 - # If Heavy exists, create a new font family for it if 'Heavy' in instance.name: instance.customParameters['familyName'] = '%s Heavy' % (font.familyName) diff --git a/Google Fonts/qa.py b/Google Fonts/qa.py index 9e30419..07eb821 100644 --- a/Google Fonts/qa.py +++ b/Google Fonts/qa.py @@ -93,8 +93,8 @@ ] STYLE_WEIGHTS = { - 'Thin': 250, - 'ExtraLight': 275, + 'Thin': 100, + 'ExtraLight': 200, 'Light': 300, 'Regular': 400, 'Medium': 500,