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

75 lines
1.3 KiB
JSON
Raw Normal View History

2016-03-12 21:49:13 +00:00
{
"name": "Light+",
2016-03-13 17:32:18 +00:00
"include": "./light_vs.json",
2016-03-12 21:49:13 +00:00
"settings": [
{
"name": "Function declarations",
"scope": [
2016-10-14 16:02:14 +00:00
"entity.name.function",
"support.function"
],
"settings": {
"foreground": "#795E26"
}
},
2016-03-12 21:49:13 +00:00
{
"name": "Types declaration and references",
2016-03-13 17:32:18 +00:00
"scope": [
"meta.return-type",
"support.class",
2016-03-13 17:32:18 +00:00
"support.type",
"entity.name.type",
"storage.type.cs",
"storage.type.java"
],
2016-03-12 21:49:13 +00:00
"settings": {
"foreground": "#267f99"
}
},
{
"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": "#267f99"
}
},
2016-03-12 21:49:13 +00:00
{
"name": "Control flow keywords",
"scope": "keyword.control",
"settings": {
"foreground": "#AF00DB"
}
},
{
"name": "Variable and parameter name",
2016-03-13 17:32:18 +00:00
"scope": [
"variable.parameter",
"variable",
"variable.name",
"support.variable"
2016-03-13 17:32:18 +00:00
],
2016-03-12 21:49:13 +00:00
"settings": {
"foreground": "#001080"
}
2016-10-14 16:02:14 +00:00
},
{
"name": "CSS property value",
"scope": [
"support.property-value",
"constant.rgb-value",
"support.property-value.scss",
"constant.rgb-value.scss"
],
"settings": {
"foreground": "#0451a5"
}
2016-03-12 21:49:13 +00:00
}
]
}