light_plus.json 1.3 KB
Newer Older
1 2
{
	"name": "Light+",
3
	"include": "./light_vs.json",
4
	"settings": [
5 6 7
		{
			"name": "Function declarations",
			"scope": [
M
Martin Aeschlimann 已提交
8 9
				"entity.name.function",
				"support.function"
10 11 12 13 14
			],
			"settings": {
				"foreground": "#795E26"
			}
		},
15 16
		{
			"name": "Types declaration and references",
17 18
			"scope": [
				"meta.return-type",
19
				"support.class",
20 21 22 23 24
				"support.type",
				"entity.name.type",
				"storage.type.cs",
				"storage.type.java"
			],
25 26 27 28
			"settings": {
				"foreground": "#267f99"
			}
		},
29 30 31 32 33
		{
			"name": "Types declaration and references, TS grammar specific",
			"scope": [
				"meta.return.type",
				"meta.type.cast.expr",
34 35 36 37
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
				"support.constant.json"
38 39 40 41 42
			],
			"settings": {
				"foreground": "#267f99"
			}
		},
43 44 45 46 47 48 49 50
		{
			"name": "Control flow keywords",
			"scope": "keyword.control",
			"settings": {
				"foreground": "#AF00DB"
			}
		},
		{
51
			"name": "Variable and parameter name",
52 53 54
			"scope": [
				"variable.parameter",
				"variable",
55 56
				"variable.name",
				"support.variable"
57
			],
58 59 60
			"settings": {
				"foreground": "#001080"
			}
M
Martin Aeschlimann 已提交
61 62 63 64 65 66 67 68 69 70 71 72
		},
		{
			"name": "CSS property value",
			"scope": [
				"support.property-value",
				"constant.rgb-value",
				"support.property-value.scss",
				"constant.rgb-value.scss"
			],
			"settings": {
				"foreground": "#0451a5"
			}
73 74 75
		}
	]
}