Skip to content

Commit

Permalink
Fix MD code font in dark standalone theme (#436)
Browse files Browse the repository at this point in the history
We were using the default by mistake
  • Loading branch information
rock3r committed Jul 6, 2024
1 parent a1a3a33 commit 8928c77
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public fun MarkdownStyling.Companion.dark(
paragraph: Paragraph = Paragraph.dark(inlinesStyling),
heading: Heading = Heading.dark(baseTextStyle),
blockQuote: BlockQuote = BlockQuote.dark(textColor = baseTextStyle.color),
code: Code = Code.dark(baseTextStyle),
code: Code = Code.dark(editorTextStyle),
list: List = List.dark(baseTextStyle),
image: Image = Image.default(),
thematicBreak: ThematicBreak = ThematicBreak.dark(),
Expand Down

0 comments on commit 8928c77

Please sign in to comment.