From 5371773a8f3ffc022d34ffefec19cae4eafb2673 Mon Sep 17 00:00:00 2001 From: Giorgi Bagdavadze Date: Mon, 19 Jun 2017 13:03:59 +0400 Subject: [PATCH] Added es6 template string support --- themes/OneMonokai-color-theme.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/themes/OneMonokai-color-theme.json b/themes/OneMonokai-color-theme.json index 8ea95f6..25cf5e9 100644 --- a/themes/OneMonokai-color-theme.json +++ b/themes/OneMonokai-color-theme.json @@ -1,5 +1,6 @@ { - "tokenColors": [{ + "tokenColors": [ + { "settings": { "background": "#282c34", "foreground": "#abb2bf", @@ -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",