Skip to content

Commit acde0db

Browse files
graycreateclaude
andauthored
fix: change post title color from bodyText to primaryText for better visibility (#22)
The post title in the detail page was using .bodyText color which has low opacity (0.75), making it appear empty or hard to see. Changed to .primaryText for better contrast and consistency with other text elements in the view. 🤖 Generated with Claude Code (https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
1 parent 331abf6 commit acde0db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

V2er/View/FeedDetail/AuthorInfoView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ struct AuthorInfoView: View {
6969
}
7070
Text(title)
7171
.font(.headline)
72-
.foregroundColor(.bodyText)
72+
.foregroundColor(.primaryText)
7373
.greedyWidth(.leading)
7474
.padding(.top, 10)
7575
.debug()

0 commit comments

Comments
 (0)