mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
89 lines
1.7 KiB
JSON
89 lines
1.7 KiB
JSON
{
|
|
"name": "Dark+",
|
|
"include": "./dark_vs.json",
|
|
"settings": [
|
|
{
|
|
"name": "Function declarations",
|
|
"scope": [
|
|
"entity.name.function",
|
|
"support.function"
|
|
],
|
|
"settings": {
|
|
"foreground": "#DCDCAA"
|
|
}
|
|
},
|
|
{
|
|
"name": "Types declaration and references",
|
|
"scope": [
|
|
"meta.return-type",
|
|
"support.class",
|
|
"support.type",
|
|
"entity.name.type",
|
|
"storage.type.cs",
|
|
"storage.type.java"
|
|
],
|
|
"settings": {
|
|
"foreground": "#4EC9B0"
|
|
}
|
|
},
|
|
{
|
|
"name": "Types declaration and references, TS grammar specific",
|
|
"scope": [
|
|
"meta.return.type",
|
|
"meta.type.cast.expr",
|
|
"meta.type.new.expr",
|
|
"support.constant.math",
|
|
"support.constant.dom",
|
|
"support.constant.json"
|
|
],
|
|
"settings": {
|
|
"foreground": "#4EC9B0"
|
|
}
|
|
},
|
|
{
|
|
"name": "Control flow keywords",
|
|
"scope": "keyword.control",
|
|
"settings": {
|
|
"foreground": "#C586C0"
|
|
}
|
|
},
|
|
{
|
|
"name": "Variable and parameter name",
|
|
"scope": [
|
|
"variable.parameter",
|
|
"variable",
|
|
"variable.name",
|
|
"support.variable"
|
|
],
|
|
"settings": {
|
|
"foreground": "#9CDCFE"
|
|
}
|
|
},
|
|
{
|
|
"name": "Object keys, TS gammar specific",
|
|
"scope": "object-literal.member.key",
|
|
"settings": {
|
|
"foreground": "#9CDCFE"
|
|
}
|
|
},
|
|
{
|
|
"name": "CSS property value",
|
|
"scope": [
|
|
"support.property-value",
|
|
"constant.rgb-value",
|
|
"support.property-value.scss",
|
|
"constant.rgb-value.scss"
|
|
],
|
|
"settings": {
|
|
"foreground": "#CE9178"
|
|
}
|
|
},
|
|
{
|
|
"name": "JSX Tag names, workaround for flattening match with function",
|
|
"scope": "entity.name.function.tag",
|
|
"settings": {
|
|
"foreground": "#569cd6"
|
|
}
|
|
}
|
|
]
|
|
} |