From 1a40bf10657870d6454e6e84f20d39f289bded4e Mon Sep 17 00:00:00 2001 From: Etienne Roesch Date: Thu, 10 Apr 2025 13:36:17 +0100 Subject: [PATCH] FIX: forcing colour for text in case macos dark/light mode enabled --- MSG Desktop/ContentView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MSG Desktop/ContentView.swift b/MSG Desktop/ContentView.swift index 43965c1..dcaf585 100644 --- a/MSG Desktop/ContentView.swift +++ b/MSG Desktop/ContentView.swift @@ -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) }