Skip to content

Commit

Permalink
~ Changed FontSize
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashhas committed Aug 19, 2021
1 parent 04555e4 commit 45c0e7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions lib/util/constants/font_const.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class FontConst {

//Numbers TextStyle
static final numberSmallRegularTextBlack =
REGULAR.copyWith(fontSize: 17, color: Colors.black);
REGULAR.copyWith(fontSize: 16, color: Colors.black);
static final numberSmallRegularTextWhite =
REGULAR.copyWith(fontSize: 17, color: Colors.white);
REGULAR.copyWith(fontSize: 16, color: Colors.white);
static final numberBigBoldTextWhite =
BOLD.copyWith(fontSize: 25, color: Colors.white);
static final numberMidBoldTextWhite =
Expand All @@ -41,8 +41,10 @@ class FontConst {
MEDIUM.copyWith(fontSize: 20, color: Colors.white);

//WeightUnit TextStyle
static final smallBoldTextGreyOpacity =
BOLD.copyWith(fontSize: 15, color: Colors.grey.withOpacity(0.6));
static final smallBoldTextWhiteOpacity =
BOLD.copyWith(fontSize: 15, color: Colors.white.withOpacity(0.6));
BOLD.copyWith(fontSize: 15, color: Colors.white.withOpacity(0.6));

//SubTitle TextStyle
static final subtitleBigTextBlack =
Expand Down
2 changes: 1 addition & 1 deletion lib/util/constants/theme_const.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AppTheme {
headline1: FontConst.numberBigBoldTextWhite,
headline2: FontConst.numberMidBoldTextWhite,
headline3: FontConst.titleViewTextBlack,
headline4: FontConst.smallBoldTextWhiteOpacity,
headline4: FontConst.smallBoldTextGreyOpacity,
headline5: FontConst.numberSmallRegularTextBlack,
subtitle1: FontConst.subtitleBigTextWhite,
subtitle2: FontConst.subtitleSmallTextBlack,
Expand Down

0 comments on commit 45c0e7a

Please sign in to comment.