Tweak contrast on author

This commit is contained in:
Jackson Harper
2023-10-02 22:21:59 +08:00
parent 9c9b91d853
commit e80f2457ad

View File

@ -203,7 +203,7 @@ public struct LibraryItemCard: View {
var byLine: some View {
Text(bylineStr)
.font(.caption2)
.foregroundColor(Color.isDarkMode ? Color.themeLightGray : Color.themeLightestGray)
.foregroundColor(Color.isDarkMode ? Color.themeDarkWhiteGray : Color.themeMiddleGray)
.frame(maxWidth: .infinity, alignment: .leading)
.lineLimit(1)
}