Revert themed icon color

This commit is contained in:
MM20 2023-07-15 21:36:42 +02:00
parent 87acb161c7
commit 234bfd51df
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -121,11 +121,7 @@ fun ShapedLauncherIcon(
val renderSettings = LauncherIconRenderSettings(
size = defaultIconSize.toPixels().toInt(),
fgThemeColor = MaterialTheme.colorScheme.onPrimaryContainer.toArgb(),
bgThemeColor = if (LocalDarkTheme.current) {
MaterialTheme.colorScheme.surfaceContainerLow.toArgb()
} else {
MaterialTheme.colorScheme.primaryContainer.toArgb()
},
bgThemeColor = MaterialTheme.colorScheme.primaryContainer.toArgb(),
fgTone = if (LocalDarkTheme.current) 90 else 10,
bgTone = if (LocalDarkTheme.current) 30 else 90,
)