commit 185732a6337457fc3ba48ed0e9ca294f812fbf8c parent b585e8c21ca8059a6dcf4e1012309ae2576bbd79 Author: William Casarin <jb55@jb55.com> Date: Wed, 5 Apr 2023 11:15:19 -0700 Change reply color from red to blue Diffstat:
M | damus/Views/ActionBar/EventActionBar.swift | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/damus/Views/ActionBar/EventActionBar.swift b/damus/Views/ActionBar/EventActionBar.swift @@ -48,13 +48,13 @@ struct EventActionBar: View { HStack { if damus_state.keypair.privkey != nil { HStack(spacing: 4) { - EventActionButton(img: "bubble.left", col: bar.replied ? Color.pink : Color.gray) { + EventActionButton(img: "bubble.left", col: bar.replied ? Color.blue : Color.gray) { notify(.reply, event) } .accessibilityLabel(NSLocalizedString("Reply", comment: "Accessibility label for reply button")) Text(verbatim: "\(bar.replies > 0 ? "\(bar.replies)" : "")") .font(.footnote.weight(.medium)) - .foregroundColor(bar.replied ? Color.pink : Color.gray) + .foregroundColor(bar.replied ? Color.blue : Color.gray) } } Spacer()