Fixed welcome page on dark theme

This commit is contained in:
Abdelilah El Aissaoui 2021-11-12 23:54:52 +01:00
parent 58da603bbf
commit 61464a02ba

View File

@ -45,6 +45,7 @@ fun WelcomePage(gitManager: GitManager) {
Text( Text(
text = "Gitnuro", text = "Gitnuro",
fontSize = 32.sp, fontSize = 32.sp,
color = MaterialTheme.colors.primaryTextColor,
modifier = Modifier modifier = Modifier
.padding(bottom = 16.dp), .padding(bottom = 16.dp),
) )
@ -76,6 +77,7 @@ fun WelcomePage(gitManager: GitManager) {
Text( Text(
text = "About Gitnuro", text = "About Gitnuro",
fontSize = 18.sp, fontSize = 18.sp,
color = MaterialTheme.colors.primaryTextColor,
modifier = Modifier modifier = Modifier
.padding(top = 16.dp, bottom = 8.dp), .padding(top = 16.dp, bottom = 8.dp),
) )