MagicStack / Chromodynamics

Sublime Text & Atom color scheme.
Other
96 stars 7 forks source link

Markdown not supported (.md) #4

Open html5cat opened 8 years ago

html5cat commented 8 years ago

😿

joshtemple commented 4 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.

elprans commented 4 years ago

Should be very easy to fix by adding the necessary scopes to the theme, e.g markup.heading.markdown, etc.

joshtemple commented 4 years ago

Would that go in Chromodynamics.color-theme.json or somewhere else?

elprans commented 4 years ago

Yes. There.

andy-preston commented 6 months ago

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.