ChatInfoImage: LIGHT default avatar at midpoint of white card and gray canvas

Was at 0.91 mix (~#E8) — designed to sit 'below' the white card, but on the
~#F0 canvas it nearly blended (delta ~8). Switch to 0.97 mix (~#F7), which
is the geometric midpoint between #FF (white card) and ~#F0 (canvas) and so
sits at equal absolute contrast against either background.
This commit is contained in:
another-simple-pixel
2026-05-18 06:53:50 -07:00
parent afa57462a1
commit 05fbd6e0b1
@@ -27,7 +27,7 @@ import kotlin.math.max
@Composable
private fun defaultProfileIconColor(): Color =
if (CurrentColors.value.base == DefaultTheme.LIGHT)
MaterialTheme.colors.background.mixWith(MaterialTheme.colors.onBackground, 0.91f)
MaterialTheme.colors.background.mixWith(MaterialTheme.colors.onBackground, 0.97f)
else
MaterialTheme.colors.secondaryVariant