Open html5cat opened 8 years ago
What would it take to support Markdown on this theme? I love the theme in VSCode for Python, but it makes editing Markdown awful.
Should be very easy to fix by adding the necessary scopes to the theme, e.g markup.heading.markdown
, etc.
Would that go in Chromodynamics.color-theme.json or somewhere else?
Yes. There.
In VSCode, I've added very rudimentary Markdown support by putting this in my global settings.json
"editor.tokenColorCustomizations": {
"[Chromodynamics]": {
"textMateRules": [
{
"scope": "markup.heading.markdown",
"settings": { "foreground": "#e8364f" },
}, {
"scope": "markup.inline.raw.string.markdown",
"settings": { "foreground": "#7c9f57" },
}, {
"scope": "markup.italic.markdown",
"settings": { "foreground": "#d3c970", "fontStyle": "italic" },
}, {
"scope": "markup.bold.markdown",
"settings": { "foreground": "#d3c970", "fontStyle": "bold" },
}
]
}
},
But it would be nice to have full Markdown support included in the theme.
😿