mjbvz / vscode-github-markdown-preview-style

VS Code extension that changes the built-in markdown preview to match Github's styling
https://marketplace.visualstudio.com/items?itemName=bierner.markdown-preview-github-styles
MIT License
301 stars 57 forks source link

Light theme can't see code body, terrible! #131

Closed blaoke closed 5 months ago

blaoke commented 5 months ago

2024-03-11 16-36-27 的屏幕截图 Look this picture, My theme is light, but the font of some codes in the picture is too shallow, which makes it difficult to see clearly, which is too uncomfortable to see, and I don't want to change the theme to dark. How can I solve this problem?

mjbvz commented 5 months ago

Please share the markdown text, vscode version, and extension version

blaoke commented 5 months ago

Markdown text likes below picture 2024-03-12 09-31-17 的屏幕截图

By the way, I'm not install theme extentions like one-dark, my vscode theme is Default Dark+

mjbvz commented 5 months ago

As text please

jjspace commented 5 months ago

@mjbvz I opened a quick PR for it, #132

Minimal code that reproduces it:

#include <cstdin>

int main () {
  int x = 0;
  std::thread t1(inc, std::ref(x), 1);
  std::thread t2(inc, std::ref(x), 2);
  std::thread t3(inc, std::ref(x), 3);
  std::thread t4(inc, std::ref(x), 4);
}
blaoke commented 5 months ago

@jjspace How can I test these changes in my environment to make sure these changes really fix the problem, could you show the preview in picture? and will a new version be released?