Skip to content

Commit

Permalink
fix: acknowledgments tab was hard to read in dark mode (closes #4019)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed Dec 24, 2024
1 parent 982a6dd commit 4481d94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api-wrappers/Markdown.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class Markdown {
.underlineStyle: NSUnderlineStyle.single.rawValue
]
private static let baseAttributes: [NSAttributedString.Key: Any] = [
.font: NSFont.systemFont(ofSize: 13)
.font: NSFont.systemFont(ofSize: 13),
.foregroundColor: NSColor.labelColor,
]
private static let linkRegex = try! NSRegularExpression(pattern: "\\[(.*?)\\]\\((.*?)\\)")
private static let boldRegex = try! NSRegularExpression(pattern: "\\*\\*(.*?)\\*\\*")
Expand Down

0 comments on commit 4481d94

Please sign in to comment.