light_plus.json 2.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
				"support.type",
				"entity.name.type",
A
Alex Dima 已提交
22 23
				"entity.name.class",

24
				"storage.type.cs",
A
Alex Dima 已提交
25 26 27 28 29 30
				"storage.type.generic.cs",
				"storage.type.modifier.cs",
				"storage.type.variable.cs",

				"storage.type.annotation.java",
				"storage.type.generic.java",
M
Martin Aeschlimann 已提交
31
				"storage.type.java",
A
Alex Dima 已提交
32 33 34 35 36 37 38 39 40 41 42 43
				"storage.type.object.array.java",
				"storage.type.primitive.array.java",
				"storage.type.primitive.java",
				"storage.type.token.java",

				"storage.type.groovy",
				"storage.type.annotation.groovy",
				"storage.type.parameters.groovy",
				"storage.type.generic.groovy",
				"storage.type.object.array.groovy",
				"storage.type.primitive.array.groovy",
				"storage.type.primitive.groovy"
44
			],
45 46 47 48
			"settings": {
				"foreground": "#267f99"
			}
		},
49 50 51 52 53
		{
			"name": "Types declaration and references, TS grammar specific",
			"scope": [
				"meta.return.type",
				"meta.type.cast.expr",
54 55 56 57
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
				"support.constant.json"
58 59 60 61 62
			],
			"settings": {
				"foreground": "#267f99"
			}
		},
63 64 65 66 67 68 69 70
		{
			"name": "Control flow keywords",
			"scope": "keyword.control",
			"settings": {
				"foreground": "#AF00DB"
			}
		},
		{
71
			"name": "Variable and parameter name",
72 73
			"scope": [
				"variable",
A
Alex Dima 已提交
74
				"meta.definition.variable.name",
75
				"support.variable"
76
			],
77 78 79
			"settings": {
				"foreground": "#001080"
			}
M
Martin Aeschlimann 已提交
80
		},
81
		{
A
Alex Dima 已提交
82 83 84 85 86
			"name": "Object keys, TS grammar specific",
			"scope": [
				"meta.object-literal.key",
				"meta.object-literal.key entity.name.function"
			],
87 88 89 90
			"settings": {
				"foreground": "#001080"
			}
		},
M
Martin Aeschlimann 已提交
91 92 93
		{
			"name": "CSS property value",
			"scope": [
A
Alex Dima 已提交
94 95 96 97 98 99 100 101 102
				"constant.other.color.rgb-value.css",
				"constant.other.rgb-value.css",
				"meta.property-value.css support.function",
				"meta.property-value.css support",

				"constant.numeric.color.rgb-value.scss",
				"constant.rgb-value.scss",
				"meta.property-value.scss support.function",
				"meta.property-value.scss support"
M
Martin Aeschlimann 已提交
103 104 105 106
			],
			"settings": {
				"foreground": "#0451a5"
			}
107 108 109
		}
	]
}