getLightTextStyle function
Implementation
TextStyle getLightTextStyle({double fontSize = FontSize.s10, required Color color}) {
return _getTextStyle(
fontSize: fontSize,
fontWeight: FontWightManager.fontWeightLight,
fontFamily: FontManager.fontFamilyApp,
color: color,
);
}