yaml and md

This commit is contained in:
hhh
2024-09-17 19:47:50 +03:00
parent 786440d524
commit 4cc3313faf

View File

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