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
				"entity.name.function",
9 10 11
				"support.function",

				"support.constant.handlebars"
12 13 14 15 16
			],
			"settings": {
				"foreground": "#795E26"
			}
		},
17 18
		{
			"name": "Types declaration and references",
19 20
			"scope": [
				"meta.return-type",
21
				"support.class",
22 23
				"support.type",
				"entity.name.type",
A
Alex Dima 已提交
24 25
				"entity.name.class",

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

				"storage.type.annotation.java",
				"storage.type.generic.java",
M
Martin Aeschlimann 已提交
33
				"storage.type.java",
A
Alex Dima 已提交
34 35 36 37 38 39 40 41 42 43 44 45
				"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"
46
			],
47 48 49 50
			"settings": {
				"foreground": "#267f99"
			}
		},
51 52 53 54 55
		{
			"name": "Types declaration and references, TS grammar specific",
			"scope": [
				"meta.return.type",
				"meta.type.cast.expr",
56 57 58
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
59 60 61
				"support.constant.json",

				"entity.other.inherited-class"
62 63 64 65 66
			],
			"settings": {
				"foreground": "#267f99"
			}
		},
67 68 69 70 71 72 73 74
		{
			"name": "Control flow keywords",
			"scope": "keyword.control",
			"settings": {
				"foreground": "#AF00DB"
			}
		},
		{
75
			"name": "Variable and parameter name",
76 77
			"scope": [
				"variable",
A
Alex Dima 已提交
78
				"meta.definition.variable.name",
79
				"support.variable"
80
			],
81 82 83
			"settings": {
				"foreground": "#001080"
			}
M
Martin Aeschlimann 已提交
84
		},
85
		{
A
Alex Dima 已提交
86 87 88 89 90
			"name": "Object keys, TS grammar specific",
			"scope": [
				"meta.object-literal.key",
				"meta.object-literal.key entity.name.function"
			],
91 92 93 94
			"settings": {
				"foreground": "#001080"
			}
		},
M
Martin Aeschlimann 已提交
95 96 97
		{
			"name": "CSS property value",
			"scope": [
98 99 100 101 102 103 104
				"support.constant.property-value",
				"support.constant.font-name",
				"support.constant.media-type",
				"support.constant.media",
				"constant.other.color.rgb-value",
				"constant.other.rgb-value",
				"support.constant.color"
M
Martin Aeschlimann 已提交
105 106 107 108
			],
			"settings": {
				"foreground": "#0451a5"
			}
109 110 111
		}
	]
}