From 6593c9456d35389dd4a794854c48d57790ebcf02 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Tue, 3 Jan 2023 23:49:02 -0800 Subject: [PATCH] profile: show white circle on buttons in dark mode --- damus/Views/ProfileView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damus/Views/ProfileView.swift b/damus/Views/ProfileView.swift index 02f7ff6c..35ed2304 100644 --- a/damus/Views/ProfileView.swift +++ b/damus/Views/ProfileView.swift @@ -146,7 +146,7 @@ struct ProfileView: View { }) { Image(systemName: "bolt.circle") .symbolRenderingMode(.palette) - .foregroundStyle(colorScheme == .dark ? .white : .black, .black) + .foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black) .font(.system(size: 32).weight(.thin)) .contextMenu { Button { @@ -174,7 +174,7 @@ struct ProfileView: View { Image(systemName: "bubble.left.circle") .symbolRenderingMode(.palette) .font(.system(size: 32).weight(.thin)) - .foregroundStyle(colorScheme == .dark ? .white : .black, .black) + .foregroundStyle(colorScheme == .dark ? .white : .black, colorScheme == .dark ? .white : .black) } }