2017-05-05 17:34:02 +02:00
|
|
|
{
|
|
|
|
"name": "{{variant.name}}",
|
2017-05-16 22:53:18 +02:00
|
|
|
"type": "{{variant.type}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"tokenColors": [
|
|
|
|
{
|
|
|
|
"settings": {
|
|
|
|
"background": "{{variant.scheme.background}}",
|
|
|
|
"foreground": "{{variant.scheme.base.white}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Comment",
|
|
|
|
"scope": [
|
|
|
|
"comment",
|
|
|
|
"punctuation.definition.comment"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.comments}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Variables",
|
|
|
|
"scope": [
|
|
|
|
"variable",
|
|
|
|
"string constant.other.placeholder"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.foreground}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Colors",
|
|
|
|
"scope": [
|
|
|
|
"constant.other.color"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.white}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Invalid",
|
|
|
|
"scope": [
|
|
|
|
"invalid",
|
2017-05-16 22:22:43 +02:00
|
|
|
"invalid.illegal"
|
2017-05-05 17:34:02 +02:00
|
|
|
],
|
|
|
|
"settings": {
|
2017-05-16 22:22:43 +02:00
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
2017-05-05 17:34:02 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Invalid deprecated",
|
|
|
|
"scope": [
|
|
|
|
"invalid.deprecated"
|
|
|
|
],
|
|
|
|
"settings": {
|
2017-05-16 22:22:43 +02:00
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
2017-05-05 17:34:02 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Keyword, Storage",
|
|
|
|
"scope": [
|
|
|
|
"keyword",
|
|
|
|
"storage.type",
|
|
|
|
"storage.modifier"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Keyword, Storage",
|
|
|
|
"scope": [
|
|
|
|
"Keyword",
|
|
|
|
"Storage"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Operator, Misc",
|
|
|
|
"scope": [
|
|
|
|
"keyword.control",
|
|
|
|
"constant.other.color",
|
|
|
|
"punctuation",
|
|
|
|
"meta.tag",
|
|
|
|
"punctuation.definition.tag",
|
|
|
|
"punctuation.separator.inheritance.php",
|
|
|
|
"punctuation.definition.tag.html",
|
|
|
|
"punctuation.definition.tag.begin.html",
|
|
|
|
"punctuation.definition.tag.end.html",
|
|
|
|
"punctuation.section.embedded",
|
|
|
|
"keyword.other.template",
|
|
|
|
"keyword.other.substitution"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.cyan}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Tag",
|
|
|
|
"scope": [
|
|
|
|
"entity.name.tag",
|
|
|
|
"meta.tag.sgml",
|
|
|
|
"markup.deleted.git_gutter"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2017-05-16 21:28:04 +02:00
|
|
|
"name": "Function, Special Method",
|
2017-05-05 17:34:02 +02:00
|
|
|
"scope": [
|
|
|
|
"entity.name.function",
|
|
|
|
"meta.function-call",
|
|
|
|
"variable.function",
|
|
|
|
"support.function",
|
2017-05-16 21:28:04 +02:00
|
|
|
"keyword.other.special-method"
|
2017-05-05 17:34:02 +02:00
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
2017-05-16 21:28:04 +02:00
|
|
|
{
|
2017-05-18 10:47:25 +02:00
|
|
|
"name": "C-related Block Level Variables",
|
2017-05-16 21:28:04 +02:00
|
|
|
"scope": [
|
2017-05-18 10:47:25 +02:00
|
|
|
"source.cpp meta.block variable.other"
|
2017-05-16 21:28:04 +02:00
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
2017-05-05 17:34:02 +02:00
|
|
|
{
|
|
|
|
"name": "Other Variable, String Link",
|
|
|
|
"scope": [
|
|
|
|
"support.other.variable",
|
|
|
|
"string.other.link"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Number, Constant, Function Argument, Tag Attribute, Embedded",
|
|
|
|
"scope": [
|
|
|
|
"constant.numeric",
|
|
|
|
"constant.language",
|
|
|
|
"support.constant",
|
|
|
|
"constant.character",
|
2017-05-16 21:57:56 +02:00
|
|
|
"constant.escape",
|
2017-05-05 17:34:02 +02:00
|
|
|
"variable.parameter",
|
2017-05-16 22:22:43 +02:00
|
|
|
"keyword.other.unit",
|
2017-05-16 21:57:56 +02:00
|
|
|
"keyword.other"
|
2017-05-05 17:34:02 +02:00
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.orange}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "String, Symbols, Inherited Class, Markup Heading",
|
|
|
|
"scope": [
|
|
|
|
"string",
|
|
|
|
"constant.other.symbol",
|
|
|
|
"constant.other.key",
|
|
|
|
"entity.other.inherited-class",
|
|
|
|
"markup.heading",
|
|
|
|
"markup.inserted.git_gutter",
|
|
|
|
"meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "normal",
|
|
|
|
"foreground": "{{variant.scheme.base.green}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Class, Support",
|
|
|
|
"scope": [
|
2017-05-16 21:57:56 +02:00
|
|
|
"entity.name",
|
2017-05-05 17:34:02 +02:00
|
|
|
"support.type",
|
|
|
|
"support.class",
|
|
|
|
"support.orther.namespace.use.php",
|
|
|
|
"meta.use.php",
|
|
|
|
"support.other.namespace.php",
|
|
|
|
"markup.changed.git_gutter",
|
|
|
|
"support.type.sys-types"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.yellow}}"
|
|
|
|
}
|
|
|
|
},
|
2017-05-16 21:57:56 +02:00
|
|
|
{
|
|
|
|
"name": "Entity Types",
|
|
|
|
"scope": [
|
|
|
|
"support.type"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.paleblue}}"
|
|
|
|
}
|
|
|
|
},
|
2017-05-05 17:34:02 +02:00
|
|
|
{
|
|
|
|
"name": "CSS Class and Support",
|
|
|
|
"scope": [
|
|
|
|
"source.css support.type.property-name",
|
|
|
|
"source.sass support.type.property-name",
|
|
|
|
"source.scss support.type.property-name",
|
|
|
|
"source.less support.type.property-name",
|
|
|
|
"source.stylus support.type.property-name",
|
|
|
|
"source.postcss support.type.property-name"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.paleblue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Sub-methods",
|
|
|
|
"scope": [
|
|
|
|
"entity.name.module.js",
|
|
|
|
"variable.import.parameter.js",
|
|
|
|
"variable.other.class.js"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Language methods",
|
|
|
|
"scope": [
|
|
|
|
"variable.language"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "entity.name.method.js",
|
|
|
|
"scope": [
|
|
|
|
"entity.name.method.js"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "meta.method.js",
|
|
|
|
"scope": [
|
|
|
|
"meta.class-method.js entity.name.function.js",
|
|
|
|
"variable.function.constructor"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Attributes",
|
|
|
|
"scope": [
|
|
|
|
"entity.other.attribute-name"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "HTML Attributes",
|
|
|
|
"scope": [
|
|
|
|
"text.html.basic entity.other.attribute-name.html",
|
|
|
|
"text.html.basic entity.other.attribute-name"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.yellow}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "CSS Classes",
|
|
|
|
"scope": [
|
|
|
|
"entity.other.attribute-name.class"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.yellow}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "CSS ID's",
|
|
|
|
"scope": [
|
|
|
|
"source.sass keyword.control"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Inserted",
|
|
|
|
"scope": [
|
|
|
|
"markup.inserted"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.green}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Deleted",
|
|
|
|
"scope": [
|
|
|
|
"markup.deleted"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Changed",
|
|
|
|
"scope": [
|
|
|
|
"markup.changed"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Regular Expressions",
|
|
|
|
"scope": [
|
|
|
|
"string.regexp"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.cyan}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Escape Characters",
|
|
|
|
"scope": [
|
|
|
|
"constant.character.escape"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.cyan}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "URL",
|
|
|
|
"scope": [
|
|
|
|
"*url*",
|
|
|
|
"*link*",
|
|
|
|
"*uri*"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "underline"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Decorators",
|
|
|
|
"scope": [
|
|
|
|
"tag.decorator.js entity.name.tag.js",
|
|
|
|
"tag.decorator.js punctuation.definition.tag.js"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "ES7 Bind Operator",
|
|
|
|
"scope": [
|
|
|
|
"source.js constant.other.object.key.js string.unquoted.label.js"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 0",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 1",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.yellow}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 2",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.orange}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 3",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.red}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 4",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.brown}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 5",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 6",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 7",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "JSON Key - Level 8",
|
|
|
|
"scope": [
|
|
|
|
"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.green}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Plain",
|
|
|
|
"scope": [
|
|
|
|
"text.html.markdown",
|
|
|
|
"punctuation.definition.list_item.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.foreground}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Markup Raw Inline",
|
|
|
|
"scope": [
|
|
|
|
"text.html.markdown markup.inline.raw.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Markup Raw Inline Punctuation",
|
|
|
|
"scope": [
|
|
|
|
"text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.invisibles}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Line Break",
|
|
|
|
"scope": [
|
|
|
|
"text.html.markdown meta.dummy.line-break"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": ""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Heading",
|
|
|
|
"scope": [
|
|
|
|
"markdown.heading",
|
|
|
|
"markup.heading | markup.heading entity.name",
|
|
|
|
"markup.heading.markdown punctuation.definition.heading.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.green}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Italic",
|
|
|
|
"scope": [
|
|
|
|
"markup.italic"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Bold",
|
|
|
|
"scope": [
|
|
|
|
"markup.bold",
|
|
|
|
"markup.bold string"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "bold",
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Bold-Italic",
|
|
|
|
"scope": [
|
|
|
|
"markup.bold markup.italic",
|
|
|
|
"markup.italic markup.bold",
|
|
|
|
"markup.quote markup.bold",
|
|
|
|
"markup.bold markup.italic string",
|
|
|
|
"markup.italic markup.bold string",
|
|
|
|
"markup.quote markup.bold string"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "bold",
|
|
|
|
"foreground": "{{variant.scheme.base.pink}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Underline",
|
|
|
|
"scope": [
|
|
|
|
"markup.underline"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "underline",
|
|
|
|
"foreground": "{{variant.scheme.base.orange}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Strike",
|
|
|
|
"scope": [
|
|
|
|
"markup.strike"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "strike",
|
|
|
|
"foreground": ""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Blockquote",
|
|
|
|
"scope": [
|
|
|
|
"markup.quote punctuation.definition.blockquote.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"background": "{{variant.scheme.invisibles}}",
|
|
|
|
"foreground": "{{variant.scheme.invisibles}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Quote",
|
|
|
|
"scope": [
|
|
|
|
"markup.quote"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "italic",
|
|
|
|
"foreground": ""
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Link",
|
|
|
|
"scope": [
|
|
|
|
"string.other.link.title.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.blue}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Link Description",
|
|
|
|
"scope": [
|
|
|
|
"string.other.link.description.title.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Link Anchor",
|
|
|
|
"scope": [
|
|
|
|
"constant.other.reference.link.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.yellow}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Raw Block",
|
|
|
|
"scope": [
|
|
|
|
"markup.raw.block"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.base.purple}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Raw Block Fenced",
|
|
|
|
"scope": [
|
|
|
|
"markup.raw.block.fenced.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "#00000050"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Fenced Bode Block",
|
|
|
|
"scope": [
|
|
|
|
"punctuation.definition.fenced.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "#00000050"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Fenced Bode Block Variable",
|
|
|
|
"scope": [
|
|
|
|
"markup.raw.block.fenced.markdown",
|
|
|
|
"variable.language.fenced.markdown",
|
|
|
|
"punctuation.section.class.end"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.foreground}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Fenced Language",
|
|
|
|
"scope": [
|
|
|
|
"variable.language.fenced.markdown"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.invisibles}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markdown - Separator",
|
|
|
|
"scope": [
|
|
|
|
"meta.separator"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"fontStyle": "bold",
|
|
|
|
"background": "#00000050",
|
|
|
|
"foreground": "{{variant.scheme.invisibles}}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Markup - Table",
|
|
|
|
"scope": [
|
|
|
|
"markup.table"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"foreground": "{{variant.scheme.foreground}}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"colors": {
|
2017-05-08 09:09:19 +02:00
|
|
|
"focusBorder": "{{variant.scheme.focusBorder}}00",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editorCursor.foreground": "{{variant.scheme.caret}}",
|
2017-05-16 21:14:16 +02:00
|
|
|
"scrollbar.shadow": "{{variant.scheme.background}}00",
|
2017-05-12 10:04:50 +02:00
|
|
|
"editorLink.activeForeground": "{{variant.scheme.foreground}}",
|
|
|
|
"selection.background": "{{variant.scheme.foreground}}",
|
2017-05-16 23:27:17 +02:00
|
|
|
"editorLineNumber.foreground": "{{variant.scheme.lineNumbers}}",
|
|
|
|
"editorBracketMatch.border": "{{variant.scheme.caret}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editor.background": "{{variant.scheme.background}}",
|
|
|
|
"editor.foreground": "{{variant.scheme.foreground}}",
|
|
|
|
"editor.lineHighlightBackground": "{{variant.scheme.lineHighlight}}50",
|
|
|
|
"editor.selectionBackground": "{{variant.scheme.selection}}",
|
2017-05-16 22:32:56 +02:00
|
|
|
"editor.selectionHighlightBackground": "{{variant.scheme.caret}}20",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editorHoverWidget.background": "{{variant.scheme.background}}",
|
2017-05-17 15:04:56 +02:00
|
|
|
"editorHoverWidget.border": "{{variant.scheme.inputBorder}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editorIndentGuide.background": "{{variant.scheme.guides}}",
|
|
|
|
"editorGroupHeader.tabsBackground": "{{variant.scheme.background}}",
|
|
|
|
"editorGroup.border": "{{variant.scheme.shadow}}",
|
|
|
|
"tab.inactiveBackground": "{{variant.scheme.background}}",
|
|
|
|
"tab.inactiveForeground": "{{variant.scheme.comments}}",
|
|
|
|
"tab.border": "{{variant.scheme.background}}",
|
|
|
|
"statusBar.background": "{{variant.scheme.background}}",
|
2017-05-06 10:33:07 +02:00
|
|
|
"statusBar.noFolderBackground": "{{variant.scheme.background}}",
|
2017-05-16 23:27:17 +02:00
|
|
|
"statusBar.foreground": "{{variant.scheme.statusbarForeground}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"activityBar.background": "{{variant.scheme.background}}",
|
|
|
|
"activityBar.foreground": "{{variant.scheme.foreground}}",
|
2017-05-10 09:37:48 +02:00
|
|
|
"activityBarBadge.background": "{{commons.accents.teal}}",
|
|
|
|
"activityBarBadge.foreground": "{{variant.scheme.base.black}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"titleBar.activeBackground": "{{variant.scheme.background}}",
|
|
|
|
"titleBar.activeForeground": "{{variant.scheme.comments}}",
|
|
|
|
"titleBar.inactiveBackground": "{{variant.scheme.background}}",
|
|
|
|
"titleBar.inactiveForeground": "{{variant.scheme.comments}}",
|
|
|
|
"sideBar.background": "{{variant.scheme.background}}",
|
|
|
|
"sideBarTitle.foreground": "{{variant.scheme.foreground}}",
|
|
|
|
"sideBarSectionHeader.background": "{{variant.scheme.background}}",
|
|
|
|
"input.background": "{{variant.scheme.inputBackground}}",
|
|
|
|
"input.foreground": "{{variant.scheme.inputForeground}}",
|
2017-05-10 09:03:44 +02:00
|
|
|
"input.placeholderForeground": "{{variant.scheme.foreground}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"input.border": "{{variant.scheme.inputBorder}}",
|
|
|
|
"inputValidation.errorBorder": "{{variant.scheme.base.red}}",
|
|
|
|
"inputValidation.infoBorder": "{{variant.scheme.base.blue}}",
|
|
|
|
"inputValidation.warningBorder": "{{variant.scheme.base.yellow}}",
|
|
|
|
"dropdown.background": "{{variant.scheme.background}}",
|
|
|
|
"dropdown.border": "{{variant.scheme.inputBorder}}",
|
2017-05-16 23:08:56 +02:00
|
|
|
"list.hoverBackground": "{{variant.scheme.foreground}}10",
|
2017-05-05 17:34:02 +02:00
|
|
|
"list.activeSelectionBackground": "{{variant.scheme.lineHighlight}}50",
|
2017-05-05 21:44:46 +02:00
|
|
|
"list.activeSelectionForeground": "{{commons.accents.teal}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"list.inactiveSelectionBackground": "{{variant.scheme.lineHighlight}}50",
|
2017-05-05 21:44:46 +02:00
|
|
|
"list.highlightForeground": "{{commons.accents.teal}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"list.focusBackground": "{{variant.scheme.lineNumbers}}",
|
|
|
|
"terminal.ansiWhite": "{{variant.scheme.base.white}}",
|
|
|
|
"terminal.ansiBlack": "{{variant.scheme.comments}}",
|
|
|
|
"terminal.ansiBlue": "{{variant.scheme.base.blue}}",
|
|
|
|
"terminal.ansiCyan": "{{variant.scheme.base.cyan}}",
|
|
|
|
"terminal.ansiGreen": "{{variant.scheme.base.green}}",
|
|
|
|
"terminal.ansiMagenta": "{{variant.scheme.base.purple}}",
|
|
|
|
"terminal.ansiRed": "{{variant.scheme.base.red}}",
|
|
|
|
"terminal.ansiYellow": "{{variant.scheme.base.yellow}}",
|
|
|
|
"terminal.ansiBrightWhite": "{{variant.scheme.base.white}}",
|
|
|
|
"terminal.ansiBrightBlack": "{{variant.scheme.comments}}",
|
|
|
|
"terminal.ansiBrightBlue": "{{variant.scheme.base.blue}}",
|
|
|
|
"terminal.ansiBrightCyan": "{{variant.scheme.base.cyan}}",
|
|
|
|
"terminal.ansiBrightGreen": "{{variant.scheme.base.green}}",
|
|
|
|
"terminal.ansiBrightMagenta": "{{variant.scheme.base.purple}}",
|
|
|
|
"terminal.ansiBrightRed": "{{variant.scheme.base.red}}",
|
|
|
|
"terminal.ansiBrightYellow": "{{variant.scheme.base.yellow}}",
|
|
|
|
"scrollbarSlider.background": "{{variant.scheme.scrollbars}}",
|
|
|
|
"scrollbarSlider.hoverBackground": "{{variant.scheme.scrollbarsHover}}",
|
2017-05-12 10:04:50 +02:00
|
|
|
"scrollbarSlider.activeBackground": "{{commons.accents.teal}}50",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editorSuggestWidget.background": "{{variant.scheme.background}}",
|
|
|
|
"editorSuggestWidget.foreground": "{{variant.scheme.foreground}}",
|
2017-05-05 21:44:46 +02:00
|
|
|
"editorSuggestWidget.highlightForeground": "{{commons.accents.teal}}",
|
2017-05-05 17:34:02 +02:00
|
|
|
"editorSuggestWidget.selectedBackground": "{{variant.scheme.lineHighlight}}50",
|
|
|
|
"editorSuggestWidget.border": "{{variant.scheme.inputBorder}}",
|
2017-05-17 15:04:56 +02:00
|
|
|
|
2017-05-05 17:34:02 +02:00
|
|
|
"widget.shadow": "{{variant.scheme.shadow}}",
|
|
|
|
"editorWidget.background": "{{variant.scheme.background}}",
|
|
|
|
"panel.border": "{{variant.scheme.background}}",
|
|
|
|
"panelTitle.activeForeground": "{{variant.scheme.foreground}}",
|
|
|
|
"diffEditor.insertedTextBackground": "{{variant.scheme.base.green}}15",
|
|
|
|
"diffEditor.removedTextBackground": "{{variant.scheme.base.red}}20",
|
|
|
|
"notification.background": "{{variant.scheme.background}}",
|
2017-05-16 22:48:17 +02:00
|
|
|
"notification.foreground": "{{variant.scheme.foreground}}",
|
2017-05-10 09:03:44 +02:00
|
|
|
"badge.background": "{{variant.scheme.lineHighlight}}30",
|
2017-05-16 23:04:33 +02:00
|
|
|
"badge.foreground": "{{variant.scheme.comments}}",
|
|
|
|
"button.background": "{{variant.scheme.selection}}"
|
2017-05-05 17:34:02 +02:00
|
|
|
}
|
|
|
|
}
|