add forest text styles

This commit is contained in:
sneurlax 2023-02-10 12:07:30 -06:00
parent 81c7b9f244
commit 92062fa14a

View file

@ -1123,6 +1123,12 @@ class STextStyles {
fontWeight: FontWeight.w600,
fontSize: 14,
);
case ThemeType.forest:
return GoogleFonts.inter(
color: _theme(context).textDark,
fontWeight: FontWeight.w600,
fontSize: 14,
);
}
}
@ -1158,6 +1164,12 @@ class STextStyles {
fontWeight: FontWeight.w500,
fontSize: 14,
);
case ThemeType.forest:
return GoogleFonts.inter(
color: _theme(context).textDark,
fontWeight: FontWeight.w500,
fontSize: 14,
);
}
}
@ -1234,6 +1246,12 @@ class STextStyles {
fontWeight: FontWeight.w500,
fontSize: 10,
);
case ThemeType.forest:
return GoogleFonts.inter(
color: _theme(context).textDark,
fontWeight: FontWeight.w500,
fontSize: 10,
);
}
}