fix colors on showcase text

This commit is contained in:
zypherift 2024-04-29 21:05:05 +02:00
parent 8115d89bf5
commit ee0c2d708c

View File

@ -157,9 +157,8 @@ class LoginScreenState extends State<LoginScreen> {
children: [ children: [
Text( Text(
"welcome_title_$i".i18n, "welcome_title_$i".i18n,
style: TextStyle( style: const TextStyle(
color: AppColors.of(context) color: Color(0xFF050B15),
.loginPrimary,
fontSize: 19, fontSize: 19,
fontFamily: 'Montserrat', fontFamily: 'Montserrat',
fontWeight: FontWeight.w700, fontWeight: FontWeight.w700,
@ -173,6 +172,7 @@ class LoginScreenState extends State<LoginScreen> {
child: Text( child: Text(
"welcome_text_$i".i18n, "welcome_text_$i".i18n,
style: const TextStyle( style: const TextStyle(
color: Color(0xFF050B15),
fontFamily: 'FigTree', fontFamily: 'FigTree',
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
fontSize: 17, fontSize: 17,