diff --git a/lib/util/constants/font_const.dart b/lib/util/constants/font_const.dart index a80df69..d9802ce 100644 --- a/lib/util/constants/font_const.dart +++ b/lib/util/constants/font_const.dart @@ -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 = @@ -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 = diff --git a/lib/util/constants/theme_const.dart b/lib/util/constants/theme_const.dart index c726bdd..29b43a6 100644 --- a/lib/util/constants/theme_const.dart +++ b/lib/util/constants/theme_const.dart @@ -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,