Fix colors again

This commit is contained in:
Benoit Marty
2025-10-13 14:45:34 +02:00
committed by Benoit Marty
parent fe78c70625
commit b6991c05cb

View File

@@ -172,10 +172,10 @@ object ElementSearchBarDefaults {
focusedPlaceholderColor = ElementTheme.colors.textDisabled,
unfocusedTrailingIconColor = ElementTheme.colors.iconDisabled,
focusedTrailingIconColor = ElementTheme.colors.iconDisabled,
focusedContainerColor = Color.Transparent,
unfocusedContainerColor = Color.Transparent,
disabledContainerColor = Color.Transparent,
errorContainerColor = Color.Transparent,
focusedContainerColor = ElementTheme.colors.bgSubtleSecondary,
unfocusedContainerColor = ElementTheme.colors.bgSubtleSecondary,
disabledContainerColor = ElementTheme.colors.bgSubtleSecondary,
errorContainerColor = ElementTheme.colors.bgSubtleSecondary,
)
@OptIn(ExperimentalMaterial3Api::class)