vscode/extensions/theme-defaults/themes/dark_plus.json

70 lines
1.2 KiB
JSON

{
"name": "Dark+",
"include": "./dark_vs.json",
"settings": [
{
"name": "Types declaration and references",
"scope": [
"meta.return-type",
"support.type",
"entity.name.class",
"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"
],
"settings": {
"foreground": "#4EC9B0"
}
},
{
"name": "Function declarations",
"scope": [
"entity.name.function"
],
"settings": {
"foreground": "#DCDCAA"
}
},
{
"name": "Control flow keywords",
"scope": "keyword.control",
"settings": {
"foreground": "#C586C0"
}
},
{
"name": "Variable and parameter name",
"scope": [
"variable.parameter",
"variable",
"variable.name"
],
"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"
}
}
]
}