Skip to content

Commit

Permalink
style: use textSecondary for message (#58)
Browse files Browse the repository at this point in the history
* style: use textSecondary for message

* style: use textPrimary for title

---------

Co-authored-by: Anton Yarmolenko <[email protected]>
  • Loading branch information
rnr and rnr authored Jul 30, 2024
1 parent 216b1a1 commit 5f92db6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Core/Core/View/Base/AppReview/AppReviewView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ public struct AppReviewView: View {
}
Text(viewModel.state.title)
.font(Theme.Fonts.titleMedium)
.foregroundColor(Theme.Colors.textPrimary)
Text(viewModel.state.description)
.font(Theme.Fonts.titleSmall)
.foregroundColor(Theme.Colors.avatarStroke)
.foregroundColor(Theme.Colors.textSecondary)
.multilineTextAlignment(.center)
switch viewModel.state {
case .vote:
Expand Down

0 comments on commit 5f92db6

Please sign in to comment.