🛠️ Change colors in dynamicListItemColor

* Changed "surfaceContainerLow" to "tertiaryContainer"
This commit is contained in:
Acclorite 2025-02-18 10:48:22 +02:00
parent d32de071db
commit beb118f234

View file

@ -18,8 +18,8 @@ fun ColorScheme.dynamicListItemColor(
index: Int
): Color {
return when (index % 3) {
0 -> surfaceContainerLow
0 -> surfaceContainer
1 -> surfaceContainerHigh
else -> surfaceContainer
else -> tertiaryContainer
}
}