Meteor.js inspired theme themes for VS Code!
Created for JavaScript & Elixir, also works well with Ruby. Other languages not extensively tested -> PRs welcome.
If you want to play around with new colors, use the setting
workbench.colorCustomizations
to customize the currently selected theme. For
example, you can add this snippet in your "settings.json" file:
"workbench.colorCustomizations":{
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34"
}
or use the setting editor.tokenColorCustomizations
"editor.tokenColorCustomizations":{
"[Meteora]": {
"textMateRules": [
{
"scope":["source.elixir"],
"settings": {
"foreground": "#e06c75"
}
}
]
}
}
Please check the official documentation, Theme Color Reference and Theme Color, for more helpful information.