text_style_ms.dart 4.8 KB
import 'package:flutter/cupertino.dart';
import '../common/colors.dart';

class TextStyleMs {
  static const TextStyle color66_16 = TextStyle(
    color: ColorConfig.color66,
    fontSize: 16,
  );
  static const TextStyle color66_16_500 = TextStyle(
    color: ColorConfig.color66,
    fontSize: 16,
    fontWeight: FontWeight.w500,
  );
  static const TextStyle color66_18_400 = TextStyle(
    color: ColorConfig.color66,
    fontSize: 18,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color203152_18_600 = TextStyle(
    color: ColorConfig.color203152,
    fontSize: 18,
    fontWeight: FontWeight.w600,
  );

  static const TextStyle color66_14 = TextStyle(
    color: ColorConfig.color66,
    fontSize: 14,
  );
  static const TextStyle color66_12 = TextStyle(
    color: ColorConfig.color66,
    fontSize: 12,
  );

  static const TextStyle color33_14_500 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 14,
    fontWeight: FontWeight.w500,
  );

  static const TextStyle color33_12_400 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 12,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color33_14_400 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color33_16_500 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 14,
    fontWeight: FontWeight.w500,
  );
  static const TextStyle color33_20_600 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 20,
    fontWeight: FontWeight.w600,
  );
  static const TextStyle colorEF2329_20_600 = TextStyle(
    color: ColorConfig.colorEF2329,
    fontSize: 20,
    fontWeight: FontWeight.w600,
  );
  static const TextStyle color00_16_600 = TextStyle(
    color: ColorConfig.color00,
    fontSize: 16,
    fontWeight: FontWeight.w600,
  );
  static const TextStyle color00_20_400 = TextStyle(
    color: ColorConfig.color00,
    fontSize: 20,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color33_16_400 = TextStyle(
    color: ColorConfig.color33,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color99_14_400 = TextStyle(
    color: ColorConfig.color_999,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color99_14_500 = TextStyle(
    color: ColorConfig.color_999,
    fontSize: 14,
    fontWeight: FontWeight.w500,
  );
  static const TextStyle color99_14_300 = TextStyle(
    color: ColorConfig.color_999,
    fontSize: 14,
    fontWeight: FontWeight.w300,
  );
  static const TextStyle color99_10_400 = TextStyle(
    color: ColorConfig.color_999,
    fontSize: 10,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle colorBF_14_400 = TextStyle(
    color: ColorConfig.colorBFBFBF,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle color99_12_400 = TextStyle(
    color: ColorConfig.color_999,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle colorFF8F24_12 = TextStyle(
    color: ColorConfig.colorFF8F24,
    fontSize: 12,
  );

  static const TextStyle colorFF761E_12_500 = TextStyle(
    color: ColorConfig.colorFF761E,
    fontSize: 12,
    fontWeight: FontWeight.w500,
  );

  static const TextStyle colorFF761E_12_400 = TextStyle(
    color: ColorConfig.colorFF761E,
    fontSize: 12,
    fontWeight: FontWeight.w400,
  );
  static const TextStyle colorFF761E_16_400 = TextStyle(
    color: ColorConfig.colorFF761E,
    fontSize: 16,
    fontWeight: FontWeight.w400,
  );

  static const TextStyle colorFF761E_16_500 = TextStyle(
    color: ColorConfig.colorFF761E,
    fontSize: 16,
    fontWeight: FontWeight.w500,
  );

  static const TextStyle colorFF761E_14_400 = TextStyle(
    color: ColorConfig.colorFF761E,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );

  static const TextStyle white_20_600 = TextStyle(
    color: ColorConfig.white,
    fontSize: 20,
    fontWeight: FontWeight.w600,
  );

  static const TextStyle white_10 = TextStyle(
    color: ColorConfig.white,
    fontSize: 10,
  );
  static const TextStyle white_12 = TextStyle(
    color: ColorConfig.white,
    fontSize: 12,
  );

  static const TextStyle white_16 = TextStyle(
    color: ColorConfig.white,
    fontSize: 16,
    fontWeight: FontWeight.w500,
  );

  static const TextStyle white_16_600 = TextStyle(
    color: ColorConfig.white,
    fontSize: 16,
    fontWeight: FontWeight.w600,
  );

  static const TextStyle white_18 = TextStyle(
    color: ColorConfig.white,
    fontSize: 18,
    fontWeight: FontWeight.w500,
  );
  static const TextStyle white_14 = TextStyle(
    color: ColorConfig.white,
    fontSize: 14,
    fontWeight: FontWeight.w500,
  );
  static const TextStyle colorF9F9F9_14_400 = TextStyle(
    color: ColorConfig.colorF9F9F9,
    fontSize: 14,
    fontWeight: FontWeight.w400,
  );
}