Skip to content

Commit 4481d94

Browse files
committed
fix: acknowledgments tab was hard to read in dark mode (closes #4019)
1 parent 982a6dd commit 4481d94

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/api-wrappers/Markdown.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ class Markdown {
2222
.underlineStyle: NSUnderlineStyle.single.rawValue
2323
]
2424
private static let baseAttributes: [NSAttributedString.Key: Any] = [
25-
.font: NSFont.systemFont(ofSize: 13)
25+
.font: NSFont.systemFont(ofSize: 13),
26+
.foregroundColor: NSColor.labelColor,
2627
]
2728
private static let linkRegex = try! NSRegularExpression(pattern: "\\[(.*?)\\]\\((.*?)\\)")
2829
private static let boldRegex = try! NSRegularExpression(pattern: "\\*\\*(.*?)\\*\\*")

0 commit comments

Comments
 (0)