Skip to content

Instantly share code, notes, and snippets.

@misode
Created November 5, 2019 09:53
Show Gist options
  • Save misode/530ae72633121003771c69b6f8f5debe to your computer and use it in GitHub Desktop.
Save misode/530ae72633121003771c69b6f8f5debe to your computer and use it in GitHub Desktop.
{
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"source.mcfunction",
"string.unquoted.mcfunction"
],
"settings": {
"foreground": "#bbbbbb"
}
},
{
"scope": [
"comment.line.mcfunction",
],
"settings": {
"foreground": "#688684",
"fontStyle": "italic"
}
},
{
"scope": [
"keyword.control.mcfunction",
"meta.command.token.root_redirect.mcfunction"
],
"settings": {
"foreground": "#ffffff"
}
},
{
"scope": [
"meta.command.token.selector_with_arguments.mcfunction",
"meta.command.token.selector_without_arguments.mcfunction",
"meta.block_predicate.argument.mcfunction",
"meta.selector.argument.mcfunction",
"support.class.mcfunction"
],
"settings": {
"foreground": "#94f894"
}
},
{
"scope": [
"variable.other.mcfunction"
],
"settings": {
"foreground": "#3bbb3b"
}
},
{
"scope": [
"constant.numeric.mcfunction",
"meta.command.token.range.mcfunction"
],
"settings": {
"foreground": "#eb3f3f"
}
},
{
"scope": [
"entity.name.function.mcfunction"
],
"settings": {
"foreground": "#d385fe"
}
},
{
"scope": [
"meta.selector.argument.nbt_compound.mcfunction",
"meta.command.token.nbt_compound.mcfunction",
"meta.command.token.nbt_list.mcfunction",
"variable.language.mcfunction"
],
"settings": {
"foreground": "#8c95dd"
}
},
{
"scope": [
"string.interpolated.mcfunction"
],
"settings": {
"foreground": "#5b6eee"
}
},
{
"scope": [
"string.quoted.mcfunction",
"constant.character.escape.mcfunction"
],
"settings": {
"foreground": "#eeb84d"
}
},
{
"scope": [
"meta.command.token.nbt_path.mcfunction"
],
"settings": {
"foreground": "#8594fe"
}
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment