Skip to content

Commit

Permalink
Added es6 template string support
Browse files Browse the repository at this point in the history
  • Loading branch information
notgiorgi authored and azemoh committed Jun 19, 2017
1 parent 28c944f commit 5371773
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion themes/OneMonokai-color-theme.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"tokenColors": [{
"tokenColors": [
{
"settings": {
"background": "#282c34",
"foreground": "#abb2bf",
Expand Down Expand Up @@ -32,6 +33,27 @@
"foreground": "#e5c07b"
}
},
{
"name": "js template-expression",
"scope": "punctuation.definition.template-expression.begin.js,punctuation.definition.template-expression.end.js,punctuation.definition.template-expression.begin.ts,punctuation.definition.template-expression.end.ts",
"settings": {
"foreground": "#e06c75"
}
},
{
"name": "TemplateString",
"scope": "string.template.js",
"settings": {
"foreground": "#8bb271"
}
},
{
"name": "TemplateString",
"scope": "meta.template.expression.js",
"settings": {
"foreground": "#e06c75"
}
},
{
"name": "Number",
"scope": "constant.numeric",
Expand Down

0 comments on commit 5371773

Please # to comment.