Skip to content

Commit

Permalink
Fix text color in light mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey committed Sep 2, 2024
1 parent 337bc30 commit 93d1256
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Sources/Site/Blog/BlogList.swift
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ struct BlogList: View {
}
}
}
.textColor(.white)
.textColor(.text, darkness: 950)
.textColor(.text, darkness: 200, condition: .dark)
}
.padding(.bottom, 16)
}
Expand Down

0 comments on commit 93d1256

Please sign in to comment.