Change themed icon colors in dark theme

Close #462
This commit is contained in:
MM20 2023-07-12 20:56:54 +02:00
parent f99c404e7c
commit 167bdc751b
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -122,7 +122,7 @@ fun ShapedLauncherIcon(
size = defaultIconSize.toPixels().toInt(),
fgThemeColor = MaterialTheme.colorScheme.onPrimaryContainer.toArgb(),
bgThemeColor = if (LocalDarkTheme.current) {
MaterialTheme.colorScheme.outlineVariant.toArgb()
MaterialTheme.colorScheme.surfaceContainerLow.toArgb()
} else {
MaterialTheme.colorScheme.primaryContainer.toArgb()
},