Adopt new vscode textmate

This commit is contained in:
Alex Dima
2017-01-03 15:36:08 +02:00
parent 9cebde963a
commit 8998f7a53d
9 changed files with 299 additions and 72 deletions

View File

@@ -1,6 +1,12 @@
{
"name": "Dark Visual Studio",
"settings": [
{
"settings": {
"foreground": "#FFFFFF",
"background": "#000000"
}
},
{
"scope": "emphasis",
"settings": {
@@ -14,7 +20,7 @@
}
},
{
"scope": "header",
"scope": "meta.diff.header",
"settings": {
"foreground": "#000080"
}
@@ -45,7 +51,11 @@
}
},
{
"scope": "constant.rgb-value",
"scope": [
"constant.other.color.rgb-value.css",
"constant.numeric.color.rgb-value.scss",
"constant.other.rgb-value.css"
],
"settings": {
"foreground": "#d4d4d4"
}
@@ -57,7 +67,7 @@
}
},
{
"scope": "entity.name.selector",
"scope": "entity.name.tag.css",
"settings": {
"foreground": "#d7ba7d"
}
@@ -69,7 +79,19 @@
}
},
{
"scope": "entity.other.attribute-name.css",
"scope": [
"entity.other.attribute-name.class.css",
"entity.other.attribute-name.class.mixin.css",
"entity.other.attribute-name.id.css",
"entity.other.attribute-name.parent-selector.css",
"entity.other.attribute-name.pseudo-class.css",
"entity.other.attribute-name.pseudo-element.css",
"source.css.less entity.other.attribute-name.id",
"entity.other.attribute-name.attribute.scss",
"entity.other.attribute-name.scss"
],
"settings": {
"foreground": "#d7ba7d"
}
@@ -130,7 +152,9 @@
},
{
"name": "brackets of XML/HTML tags",
"scope": "punctuation.definition.tag",
"scope": [
"punctuation.definition.tag"
],
"settings": {
"foreground": "#808080"
}
@@ -203,7 +227,10 @@
},
{
"name": "JavaScript string interpolation ${}",
"scope": "string.template-expression",
"scope": [
"punctuation.definition.template-expression.begin.ts",
"punctuation.definition.template-expression.end.ts"
],
"settings": {
"foreground": "#569cd6"
}
@@ -265,7 +292,7 @@
},
{
"name": "coloring of the TS this",
"scope": "variable.this",
"scope": "variable.language.this",
"settings": {
"foreground": "#569cd6"
}