|
- import 'package:flutter/material.dart';
- import 'package:michele_s_application8/core/app_export.dart';
-
- class AppStyle {
- static TextStyle txtRobotoRomanLight984 = TextStyle(
- color: ColorConstant.black900,
- fontSize: getFontSize(
- 9.84,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w300,
- );
-
- static TextStyle txtRobotoRomanMedium1324 = TextStyle(
- color: ColorConstant.gray900,
- fontSize: getFontSize(
- 13.24,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w500,
- );
-
- static TextStyle txtRobotoRomanSemiBold24Black900 = TextStyle(
- color: ColorConstant.black900,
- fontSize: getFontSize(
- 24,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
-
- static TextStyle txtRobotoRomanMedium10 = TextStyle(
- color: ColorConstant.blueGray400,
- fontSize: getFontSize(
- 10,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w500,
- );
-
- static TextStyle txtRobotoRomanSemiBold19 = TextStyle(
- color: ColorConstant.teal300,
- fontSize: getFontSize(
- 19,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
-
- static TextStyle txtRobotoRegular16 = TextStyle(
- color: ColorConstant.bluegray400,
- fontSize: getFontSize(
- 16,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w400,
- );
-
- static TextStyle txtRobotoRomanSemiBold24Black9001 = TextStyle(
- color: ColorConstant.black900,
- fontSize: getFontSize(
- 24,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
-
- static TextStyle txtRobotoRomanSemiBold24 = TextStyle(
- color: ColorConstant.whiteA700,
- fontSize: getFontSize(
- 24,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
-
- static TextStyle txtRobotoRomanSemiBold19Black900 = TextStyle(
- color: ColorConstant.black900,
- fontSize: getFontSize(
- 19,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
-
- static TextStyle txtRobotoRegular20 = TextStyle(
- color: ColorConstant.black900,
- fontSize: getFontSize(
- 20,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w400,
- );
-
- static TextStyle txtRobotoRomanSemiBold19Lime600 = TextStyle(
- color: ColorConstant.lime600,
- fontSize: getFontSize(
- 19,
- ),
- fontFamily: 'Roboto',
- fontWeight: FontWeight.w600,
- );
- }
|