Fix text color

This commit is contained in:
Benoit Marty 2023-07-18 02:00:31 +02:00 committed by Benoit Marty
parent d6980025ca
commit 9a76adcd5e
2 changed files with 10 additions and 1 deletions

View file

@ -76,12 +76,14 @@ fun WelcomeView(
modifier = Modifier.testTag(TestTags.welcomeScreenTitle),
text = stringResource(R.string.screen_welcome_title, applicationName),
style = ElementTheme.typography.fontHeadingLgBold,
color = ElementTheme.colors.textPrimary,
textAlign = TextAlign.Center,
)
Spacer(modifier = Modifier.height(8.dp))
Text(
text = stringResource(R.string.screen_welcome_subtitle),
style = ElementTheme.typography.fontBodyMdRegular,
color = ElementTheme.colors.textPrimary,
textAlign = TextAlign.Center,
)
Spacer(modifier = Modifier.height(40.dp))