1050 lines
23 KiB
Dart
1050 lines
23 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
|
|
import '../utils/color_constants.dart';
|
|
import '../utils/size_utils.dart';
|
|
|
|
class AppStyle {
|
|
static TextStyle txtGilroySemiBold16Black90002 = TextStyle(
|
|
color: ColorConstant.black90002,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
static TextStyle txtblack16semibold700 =
|
|
const TextStyle(fontSize: 16, fontWeight: FontWeight.w700);
|
|
|
|
static TextStyle txtgrey16semibold400 = TextStyle(
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.w400,
|
|
color: Colors.black.withOpacity(.5));
|
|
|
|
static TextStyle txtpurplesemibold20 = TextStyle(
|
|
color: ColorConstant.purple900,
|
|
fontSize: 24,
|
|
fontWeight: FontWeight.w700);
|
|
|
|
static TextStyle txtwhite16semibold = TextStyle(
|
|
color: Colors.white,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle fieldlabel =
|
|
GoogleFonts.poppins().copyWith(fontSize: 16, fontWeight: FontWeight.w700);
|
|
|
|
static TextStyle poppinsnormal =
|
|
GoogleFonts.poppins().copyWith(fontSize: 12, fontWeight: FontWeight.w400);
|
|
|
|
static TextStyle txtGilroySemiBold10Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold36 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
36,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtSFProTextRegular15 = TextStyle(
|
|
color: ColorConstant.gray80099,
|
|
fontSize: getFontSize(
|
|
15,
|
|
),
|
|
fontFamily: 'SF Pro Text',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold32 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
32,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular12Green600 = TextStyle(
|
|
color: ColorConstant.green600,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtSFProTextRegular11 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
11,
|
|
),
|
|
fontFamily: 'SF Pro Text',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtRobotoBlack1418 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
14.18,
|
|
),
|
|
fontFamily: 'Roboto',
|
|
fontWeight: FontWeight.w900,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold24Black90001 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtLatoBold12 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Lato',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtLatoBold10 = TextStyle(
|
|
color: ColorConstant.gray400,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Lato',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14Bluegray300 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular12Bluegray90001 = TextStyle(
|
|
color: ColorConstant.blueGray90001,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18Gray700 = TextStyle(
|
|
color: ColorConstant.gray700,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold18Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold28 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
28,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Green600 = TextStyle(
|
|
color: ColorConstant.green600,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold24WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold24 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold20 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
20,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtpoppinsmedium16 = GoogleFonts.poppins().copyWith(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14Bluegray300 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium8Black90001 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
8,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold1047 = TextStyle(
|
|
color: ColorConstant.black900,
|
|
fontSize: getFontSize(
|
|
10.47,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16Black900 = TextStyle(
|
|
color: ColorConstant.black900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium8Red700 = TextStyle(
|
|
color: ColorConstant.red700,
|
|
fontSize: getFontSize(
|
|
8,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium12Black90087 = TextStyle(
|
|
color: ColorConstant.black90087,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold20BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
20,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtSFUIDisplayRegular10 = TextStyle(
|
|
color: ColorConstant.black90087,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'SF UI Display',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold10Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtPilatExtendedHeavy16 = TextStyle(
|
|
color: ColorConstant.black90075,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Pilat Extended',
|
|
fontWeight: FontWeight.w800,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold18BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtPilatExtendedHeavy18 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Pilat Extended',
|
|
fontWeight: FontWeight.w800,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16Bluegray800 = TextStyle(
|
|
color: ColorConstant.blueGray800,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold24BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16Green600 = TextStyle(
|
|
color: ColorConstant.green600,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Black90001 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Black90002 = TextStyle(
|
|
color: ColorConstant.black90002,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold10 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular16Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular12 = TextStyle(
|
|
color: ColorConstant.red700,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Bluegray90002 = TextStyle(
|
|
color: ColorConstant.blueGray90002,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGreenSemiBold16 = TextStyle(
|
|
color: ColorConstant.green600,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular16 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtPilatExtendedHeavy18Black90087 = TextStyle(
|
|
color: ColorConstant.black90087,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Pilat Extended',
|
|
fontWeight: FontWeight.w800,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14 = TextStyle(
|
|
color: ColorConstant.blueGray600,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtRobotoRegular12 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Roboto',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14Black90003 = TextStyle(
|
|
color: ColorConstant.black90003,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtRobotoRegular16 = TextStyle(
|
|
color: ColorConstant.blueGray40001,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Roboto',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Bluegray300 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold24Blue800 = TextStyle(
|
|
color: ColorConstant.blue800,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold24 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
24,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold36BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
36,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold28WhiteA700 = TextStyle(
|
|
color: ColorConstant.whiteA700,
|
|
fontSize: getFontSize(
|
|
28,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold20 = TextStyle(
|
|
color: ColorConstant.green600,
|
|
fontSize: getFontSize(
|
|
20,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16Bluegray300 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold28 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
28,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Red700 = TextStyle(
|
|
color: ColorConstant.red700,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtInterExtraBold16 = TextStyle(
|
|
color: ColorConstant.gray90002,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Inter',
|
|
fontWeight: FontWeight.w800,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16Indigo400 = TextStyle(
|
|
color: ColorConstant.indigo400,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium12Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium8 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
8,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtRobotoRegular20 = TextStyle(
|
|
color: ColorConstant.black90004,
|
|
fontSize: getFontSize(
|
|
20,
|
|
),
|
|
fontFamily: 'Roboto',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16Black90001 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold36 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
36,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Bluegray20001 = TextStyle(
|
|
color: ColorConstant.blueGray20001,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtPilatExtendedHeavy16Black90001 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Pilat Extended',
|
|
fontWeight: FontWeight.w800,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Gray40001 = TextStyle(
|
|
color: ColorConstant.gray40001,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14Gray900 = TextStyle(
|
|
color: ColorConstant.gray900,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold16 = TextStyle(
|
|
color: ColorConstant.amber500,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold18 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium10Bluegray400 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold12 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular12Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold14Bluegray700 = TextStyle(
|
|
color: ColorConstant.blueGray700,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroyBold16BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w700,
|
|
);
|
|
|
|
static TextStyle txtRubikMedium12 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Rubik',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular14BlueA700 = TextStyle(
|
|
color: ColorConstant.blueA700,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14Black900 = TextStyle(
|
|
color: ColorConstant.black900,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium12Bluegray900 = TextStyle(
|
|
color: ColorConstant.blueGray900,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium10 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
10,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtMontserratMedium14 = TextStyle(
|
|
color: ColorConstant.redA200,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Montserrat',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular16Bluegray200 = TextStyle(
|
|
color: ColorConstant.blueGray200,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium14 = TextStyle(
|
|
color: ColorConstant.blueGray200,
|
|
fontSize: getFontSize(
|
|
14,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium12 = TextStyle(
|
|
color: ColorConstant.blueGray300,
|
|
fontSize: getFontSize(
|
|
12,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyRegular16Gray900 = TextStyle(
|
|
color: ColorConstant.gray900,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w400,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18 = TextStyle(
|
|
color: ColorConstant.black90001,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium16 = TextStyle(
|
|
color: ColorConstant.blueGray400,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroyMedium18Bluegray600 = TextStyle(
|
|
color: ColorConstant.blueGray600,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w500,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold16Bluegray700 = TextStyle(
|
|
color: ColorConstant.blueGray700,
|
|
fontSize: getFontSize(
|
|
16,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Gray90002 = TextStyle(
|
|
color: ColorConstant.gray90002,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
|
|
static TextStyle txtGilroySemiBold18Gray90001 = TextStyle(
|
|
color: ColorConstant.gray90001,
|
|
fontSize: getFontSize(
|
|
18,
|
|
),
|
|
fontFamily: 'Gilroy',
|
|
fontWeight: FontWeight.w600,
|
|
);
|
|
}
|