Revert "markdown: Apply theme syntax color to inline code in rendered markdown" (#54504)

Bennet Bo Fenner created

Reverts zed-industries/zed#54475

This causes inline code blocks to look strange in some themes

Change summary

crates/markdown/src/markdown.rs | 5 -----
1 file changed, 5 deletions(-)

Detailed changes

crates/markdown/src/markdown.rs 🔗

@@ -196,11 +196,6 @@ impl MarkdownStyle {
                 font_size: Some(buffer_font_size.into()),
                 font_weight: Some(buffer_font_weight),
                 background_color: Some(colors.editor_foreground.opacity(0.08)),
-                color: cx
-                    .theme()
-                    .syntax()
-                    .style_for_name("text.literal")
-                    .and_then(|style| style.color),
                 ..Default::default()
             },
             link: TextStyleRefinement {