Skip to content

Instantly share code, notes, and snippets.

@chaojian-zhang
Created May 11, 2022 23:01
Show Gist options
  • Save chaojian-zhang/d553bec6cc4988d24ca5597513f0b272 to your computer and use it in GitHub Desktop.
Save chaojian-zhang/d553bec6cc4988d24ca5597513f0b272 to your computer and use it in GitHub Desktop.
Visual Studio Code - Settings & Customizations
{
# Put the following into user settings JSON file to change the sick annoying default bright red preformatted code text foreground color for Monokai Dimmed color theme
"editor.tokenColorCustomizations": {
"[Monokai Dimmed]": {
"textMateRules": [
{
"scope": "markup.inline.raw",
"settings": {
"foreground": "#675b5b",
}
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment