FIX: forcing colour for text in case macos dark/light mode enabled

This commit is contained in:
Etienne Roesch 2025-04-10 13:36:17 +01:00
parent 2b61760d94
commit 1a40bf1065

View file

@ -54,6 +54,7 @@ struct ContentView: View {
ForEach(lines.indices, id: \.self) { index in
Text(lines[index])
.font(.system(.body, design: .monospaced))
.foregroundColor(.gray)
.frame(maxWidth: .infinity, alignment: .leading)
}