From bba651b37cdfa18e1633d2470f31a7eb5cfce1bf Mon Sep 17 00:00:00 2001 From: ericholguin Date: Sat, 26 Oct 2024 21:55:28 -0600 Subject: [PATCH] ui: reduce bold font in side menu This PR simply reduces the bold font in the side menu labels. Changelog-Changed: Changed boldness of font in side menu labels. Signed-off-by: ericholguin --- damus/Views/SideMenuView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damus/Views/SideMenuView.swift b/damus/Views/SideMenuView.swift index 4257b896..af77ae1d 100644 --- a/damus/Views/SideMenuView.swift +++ b/damus/Views/SideMenuView.swift @@ -51,7 +51,7 @@ struct SideMenuView: View { Image("nostr-hashtag") Text("Purple") .foregroundColor(DamusColors.purple) - .font(.title2.weight(.bold)) + .font(.title2.weight(.semibold)) } .frame(maxWidth: .infinity, alignment: .leading) } @@ -218,7 +218,7 @@ struct SideMenuView: View { .tint(DamusColors.adaptableBlack) Text(title) - .font(.title2.weight(.bold)) + .font(.title2.weight(.semibold)) .foregroundColor(DamusColors.adaptableBlack) .frame(maxWidth: .infinity, alignment: .leading) .dynamicTypeSize(.xSmall)