Make the SIMPLEX contact-info action icons white

The round accent buttons in the contact-info screen (search, call, video,
mute) showed dark icons on the cyan fill on SIMPLEX. They are now white;
the other themes are unchanged.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
another-simple-pixel
2026-07-05 16:16:20 -07:00
co-authored by Claude Opus 4.8
parent 1941e8910d
commit 15cfaf21a3
@@ -1062,7 +1062,7 @@ fun InfoViewActionButton(
icon,
contentDescription = null,
Modifier.size(22.dp * fontSizeSqrtMultiplier),
tint = if (disabledLook) MaterialTheme.colors.secondary else MaterialTheme.colors.onPrimary
tint = if (disabledLook) MaterialTheme.colors.secondary else if (CurrentColors.value.base == DefaultTheme.SIMPLEX) Color.White else MaterialTheme.colors.onPrimary
)
}
}