From 4da93b76309d3e0a847a9a60df54228e3593b95e Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 15 Jun 2022 14:44:38 -0700 Subject: [PATCH] fix chat opacity on dark theme Changelog-Fixed: Fix opacity for chat messages in dark theme Signed-off-by: William Casarin --- damus/Views/ChatView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/ChatView.swift b/damus/Views/ChatView.swift index 333d24b7..51d31551 100644 --- a/damus/Views/ChatView.swift +++ b/damus/Views/ChatView.swift @@ -126,7 +126,7 @@ struct ChatView: View { .padding(6) } .padding([.leading], 2) - .background(colorScheme == .light ? Color.secondary.opacity(0.1) : Color.secondary.opacity(0.25)) + .background(Color.secondary.opacity(0.1)) .cornerRadius(8.0) //.border(Color.red)