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

69 lines
1.2 KiB
JSON
Raw Normal View History

2016-03-12 21:49:13 +00:00
{
"name": "Dark+",
2016-03-13 17:32:18 +00:00
"include": "./dark_vs.json",
2016-03-12 21:49:13 +00:00
"settings": [
{
"name": "Types declaration and references",
2016-03-13 17:32:18 +00:00
"scope": [
"meta.return-type",
"support.type",
"entity.name.type",
"storage.type.cs",
"storage.type.java"
],
2016-03-12 21:49:13 +00:00
"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"
}
},
2016-03-12 21:49:13 +00:00
{
"name": "Function declarations",
2016-03-13 17:32:18 +00:00
"scope": [
"entity.name.function"
2016-03-13 17:32:18 +00:00
],
2016-03-12 21:49:13 +00:00
"settings": {
"foreground": "#DCDCAA"
}
},
{
"name": "Control flow keywords",
"scope": "keyword.control",
"settings": {
"foreground": "#C586C0"
}
},
{
"name": "Variable and parameter name",
2016-03-13 17:32:18 +00:00
"scope": [
"variable.parameter",
"variable",
"variable.name"
],
2016-03-12 21:49:13 +00:00
"settings": {
"foreground": "#9CDCFE"
}
},
{
"name": "CSS property value",
2016-03-13 17:32:18 +00:00
"scope": [
"support.property-value",
"constant.rgb-value",
"support.property-value.scss",
"constant.rgb-value.scss"
2016-03-13 17:32:18 +00:00
],
2016-03-12 21:49:13 +00:00
"settings": {
"foreground": "#CE9178"
}
}
]
}