fix: readable field values on dark theme (0.4.1)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
PTah
2026-06-10 17:25:17 +10:00
parent 259b0128c9
commit 38965c1a82
2 changed files with 7 additions and 3 deletions
@@ -238,7 +238,11 @@ private fun DetailFrame(
private fun Field(label: String, value: String) {
Column(Modifier.fillMaxWidth()) {
Text(label, style = MaterialTheme.typography.labelMedium, color = MaterialTheme.colorScheme.primary)
Text(value, style = MaterialTheme.typography.bodyMedium)
Text(
value,
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurface,
)
}
}