mast-syntaxes README
For mast language.
// mast language setting
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "mast:keyword section",
"scope": "keyword.section.sin",
"settings": {
"fontStyle": " italic",
"foreground": "#E68A8AE6"
}
},
{
"name": "mast:keyword mast keyword",
"scope": "keyword.storage.sin",
"settings": {
"fontStyle": " bold",
"foreground": "#114FD6"
}
},
{
"name": "mast:keyword function",
"scope": "keyword.func.sin",
"settings": {
"fontStyle": " bold",
"foreground": "#9932CC"
}
},
{
"name": "mast:keyword unit",
"scope": "keyword.unit.sin",
"settings": {
"foreground": "#DDA0DD"
}
},
{
"name": "mast:comment",
"scope": "comment.sin",
"settings": {
"foreground": "#648fcf"
}
},
{
"name": "mast:control",
"scope": "keyword.control.sin",
"settings": {
"foreground": "#b35076"
}
},
{
"name": "mast:numeric",
"scope": "constant.numeric.sin",
"settings": {
"foreground": "#64cf88"
}
},
{
"scope":"keyword.operator.sin",
"settings": {
"foreground": "#f051a0",
}
},
]
},