From 03b70e2c2fc617b7ae806d09523d702dc5c3c2ae Mon Sep 17 00:00:00 2001 From: jack Date: Sat, 13 Sep 2025 22:51:36 +0200 Subject: [PATCH] Notes sheet: color #abcd suffix as darker green via opacity (match chat) --- bitchat/Views/LocationNotesView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchat/Views/LocationNotesView.swift b/bitchat/Views/LocationNotesView.swift index 2c89fc40..44c6a3bd 100644 --- a/bitchat/Views/LocationNotesView.swift +++ b/bitchat/Views/LocationNotesView.swift @@ -109,7 +109,7 @@ struct LocationNotesView: View { if !parts.1.isEmpty { Text(parts.1) .font(.system(size: 12, weight: .semibold, design: .monospaced)) - .foregroundColor(darkerTextColor) + .foregroundColor(textColor.opacity(0.6)) } } Text(timestampText(for: note.createdAt))