45 lines
851 B
Dart
45 lines
851 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
import 'app_colors.dart';
|
||
|
|
||
|
const regularTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
fontWeight: FontWeight.w400,
|
||
|
color: fontColor);
|
||
|
|
||
|
const italicTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
color: fontColor,
|
||
|
fontStyle: FontStyle.italic,
|
||
|
);
|
||
|
|
||
|
const mediumTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
fontWeight: FontWeight.w500,
|
||
|
color: fontColor,
|
||
|
);
|
||
|
|
||
|
const semiBoldTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
fontWeight: FontWeight.w600,
|
||
|
color: fontColor,
|
||
|
);
|
||
|
|
||
|
const boldTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
fontWeight: FontWeight.w700,
|
||
|
color: fontColor,
|
||
|
);
|
||
|
|
||
|
const extraBoldTextStyle = TextStyle(
|
||
|
fontFamily: 'Arial',
|
||
|
fontSize: 14,
|
||
|
fontWeight: FontWeight.w800,
|
||
|
color: fontColor,
|
||
|
);
|