yaml and md
This commit is contained in:
@@ -26,28 +26,21 @@
|
|||||||
"tokenColors": [
|
"tokenColors": [
|
||||||
{
|
{
|
||||||
"name": "Source",
|
"name": "Source",
|
||||||
"scope": [
|
"scope": ["source"],
|
||||||
"source"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#bcbec4",
|
"foreground": "#bcbec4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Quoted String",
|
"name": "Quoted String",
|
||||||
"scope": [
|
"scope": ["string.quoted", "string.template", "markup.inline.raw.string"],
|
||||||
"string.quoted",
|
|
||||||
"string.template"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#6aab73",
|
"foreground": "#6aab73"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Quoted Docstring",
|
"name": "Quoted Docstring",
|
||||||
"scope": [
|
"scope": ["string.quoted.docstring"],
|
||||||
"string.quoted.docstring"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#5f826b",
|
"foreground": "#5f826b",
|
||||||
"fontStyle": "italic"
|
"fontStyle": "italic"
|
||||||
@@ -55,11 +48,9 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Comment",
|
"name": "Comment",
|
||||||
"scope": [
|
"scope": ["comment"],
|
||||||
"comment"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#7a7e85",
|
"foreground": "#7a7e85"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -68,111 +59,87 @@
|
|||||||
"keyword.control",
|
"keyword.control",
|
||||||
"keyword.other",
|
"keyword.other",
|
||||||
"keyword.operator.logical",
|
"keyword.operator.logical",
|
||||||
"keyword.operator.new",
|
"keyword.operator.new"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Numeric constant",
|
"name": "Numeric constant",
|
||||||
"scope": [
|
"scope": ["constant.numeric"],
|
||||||
"constant.numeric"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#2aacb8",
|
"foreground": "#2aacb8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Language constants",
|
"name": "Language constants",
|
||||||
"scope": [
|
"scope": ["constant.language"],
|
||||||
"constant.language"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Builtin function call",
|
"name": "Builtin function call",
|
||||||
"scope": [
|
"scope": ["support.function.builtin", "support.type"],
|
||||||
"support.function.builtin",
|
|
||||||
"support.type"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#8888c6",
|
"foreground": "#8888c6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Format placeholder",
|
"name": "Format placeholder",
|
||||||
"scope": [
|
"scope": ["constant.character.format.placeholder"],
|
||||||
"constant.character.format.placeholder"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Function meta storage",
|
"name": "Function meta storage",
|
||||||
"scope": [
|
"scope": ["storage.type.function"],
|
||||||
"storage.type.function",
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Function entity",
|
"name": "Function entity",
|
||||||
"scope": [
|
"scope": ["entity.name.function"],
|
||||||
"entity.name.function"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#56a8f5",
|
"foreground": "#56a8f5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Decorator",
|
"name": "Decorator",
|
||||||
"scope": [
|
"scope": ["entity.name.function.decorator"],
|
||||||
"entity.name.function.decorator"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#b3ae60"
|
"foreground": "#b3ae60"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Function call named parameters",
|
"name": "Function call named parameters",
|
||||||
"scope": [
|
"scope": ["variable.parameter.function-call"],
|
||||||
"variable.parameter.function-call"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#aa4926",
|
"foreground": "#aa4926"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Import variable alias",
|
"name": "Import variable alias",
|
||||||
"scope": [
|
"scope": ["variable.other.readwrite.alias"],
|
||||||
"variable.other.readwrite.alias"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#56a8f5",
|
"foreground": "#56a8f5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Storage type",
|
"name": "Storage type",
|
||||||
"scope": [
|
"scope": ["storage.type", "storage.modifier"],
|
||||||
"storage.type",
|
|
||||||
"storage.modifier"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Object literal key",
|
"name": "Object literal key",
|
||||||
"scope": [
|
"scope": ["meta.object-literal.key"],
|
||||||
"meta.object-literal.key"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#c77dbb",
|
"foreground": "#c77dbb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -183,63 +150,82 @@
|
|||||||
"variable.object.property"
|
"variable.object.property"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#c77dbb",
|
"foreground": "#c77dbb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Function arrow",
|
"name": "Function arrow",
|
||||||
"scope": [
|
"scope": ["storage.type.function.arrow"],
|
||||||
"storage.type.function.arrow"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#bcbec4",
|
"foreground": "#bcbec4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Template meta expression",
|
"name": "Template meta expression",
|
||||||
"scope": [
|
"scope": ["meta.template.expression"],
|
||||||
"meta.template.expression"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#bcbec4",
|
"foreground": "#bcbec4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tag entity",
|
"name": "Tag entity",
|
||||||
"scope": [
|
"scope": ["entity.name.tag", "punctuation.definition.tag"],
|
||||||
"entity.name.tag",
|
|
||||||
"punctuation.definition.tag"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#d5b778",
|
"foreground": "#d5b778"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Tag entity TOML",
|
"name": "Tag entity TOML",
|
||||||
"scope": [
|
"scope": ["entity.name.tag.toml", "punctuation.definition.tag"],
|
||||||
"entity.name.tag.toml",
|
|
||||||
"punctuation.definition.tag"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#cf8e6d",
|
"foreground": "#cf8e6d"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Attribute name",
|
"name": "Attribute name",
|
||||||
"scope": [
|
"scope": ["entity.other.attribute-name"],
|
||||||
"entity.other.attribute-name"
|
|
||||||
],
|
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#c77dbb",
|
"foreground": "#c77dbb"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Component",
|
"name": "Component",
|
||||||
|
"scope": ["support.class.component"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2fbaa3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "markdown name",
|
||||||
"scope": [
|
"scope": [
|
||||||
"support.class.component"
|
"entity.name.section.markdown",
|
||||||
|
"punctuation.definition.heading",
|
||||||
|
"meta.separator",
|
||||||
|
"punctuation.definition.list.begin.markdown"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"foreground": "#2fbaa3",
|
"foreground": "#cf8e6d"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Links",
|
||||||
|
"scope": [
|
||||||
|
"punctuation.definition.link",
|
||||||
|
"string.other.link",
|
||||||
|
"markup.underline.link",
|
||||||
|
"meta.link"
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#56a8f5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "YAML entity tag",
|
||||||
|
"scope": [
|
||||||
|
"entity.name.tag.yaml"
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#cf8e6d",
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user