style function
Implementation
TextStyle style(FontWeight weight, double size, double height, Color color, {bool underlined = false, double spacing = 0}) => TextStyle(
color: color,
height: height / size,
fontSize: size,
fontFamily: 'SUITv1',
fontWeight: weight,
letterSpacing: spacing,
decoration: underlined ? TextDecoration.underline : TextDecoration.none,
decorationColor: color,
);