light_plus.json 4.0 KB
Newer Older
1
{
2 3
	"$schema": "vscode://schemas/color-theme",
	"name": "Light+ (default light)",
4
	"include": "./light_vs.json",
5
	"tokenColors": [
6 7 8
		{
			"name": "Function declarations",
			"scope": [
M
Martin Aeschlimann 已提交
9
				"entity.name.function",
10
				"support.function",
11 12
				"support.constant.handlebars",
				"source.powershell variable.other.member"
13 14 15 16 17
			],
			"settings": {
				"foreground": "#795E26"
			}
		},
18 19
		{
			"name": "Types declaration and references",
20 21
			"scope": [
				"meta.return-type",
22
				"support.class",
23 24
				"support.type",
				"entity.name.type",
25
				"entity.name.namespace",
26
				"entity.other.attribute",
27
				"entity.name.scope-resolution",
A
Alex Dima 已提交
28
				"entity.name.class",
29 30 31 32 33
				"storage.type.numeric.go",
				"storage.type.byte.go",
				"storage.type.boolean.go",
				"storage.type.string.go",
				"storage.type.uintptr.go",
34 35
				"storage.type.error.go",
				"storage.type.rune.go",
36
				"storage.type.cs",
A
Alex Dima 已提交
37 38 39 40 41
				"storage.type.generic.cs",
				"storage.type.modifier.cs",
				"storage.type.variable.cs",
				"storage.type.annotation.java",
				"storage.type.generic.java",
M
Martin Aeschlimann 已提交
42
				"storage.type.java",
A
Alex Dima 已提交
43 44 45 46 47 48 49 50 51 52 53
				"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"
54
			],
55 56 57 58
			"settings": {
				"foreground": "#267f99"
			}
		},
59 60 61 62
		{
			"name": "Types declaration and references, TS grammar specific",
			"scope": [
				"meta.type.cast.expr",
63 64 65
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
66 67
				"support.constant.json",
				"entity.other.inherited-class"
68 69 70 71 72
			],
			"settings": {
				"foreground": "#267f99"
			}
		},
73
		{
74
			"name": "Control flow / Special keywords",
A
Alex Ross 已提交
75 76
			"scope": [
				"keyword.control",
77 78
				"source.cpp keyword.operator.new",
				"source.cpp keyword.operator.delete",
79
				"keyword.other.using",
80 81
				"keyword.other.operator",
				"entity.name.operator"
A
Alex Ross 已提交
82
			],
83 84 85 86 87
			"settings": {
				"foreground": "#AF00DB"
			}
		},
		{
88
			"name": "Variable and parameter name",
89 90
			"scope": [
				"variable",
A
Alex Dima 已提交
91
				"meta.definition.variable.name",
92 93
				"support.variable",
				"entity.name.variable"
94
			],
95 96 97
			"settings": {
				"foreground": "#001080"
			}
M
Martin Aeschlimann 已提交
98
		},
99
		{
A
Alex Dima 已提交
100 101
			"name": "Object keys, TS grammar specific",
			"scope": [
102
				"meta.object-literal.key"
A
Alex Dima 已提交
103
			],
104 105 106 107
			"settings": {
				"foreground": "#001080"
			}
		},
M
Martin Aeschlimann 已提交
108 109 110
		{
			"name": "CSS property value",
			"scope": [
111 112 113 114 115 116 117
				"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 已提交
118 119 120 121
			],
			"settings": {
				"foreground": "#0451a5"
			}
122 123
		},
		{
124
			"name": "Regular expression groups",
125 126 127 128
			"scope": [
				"punctuation.definition.group.regexp",
				"punctuation.definition.group.assertion.regexp",
				"punctuation.definition.character-class.regexp",
129 130
				"punctuation.character.set.begin.regexp",
				"punctuation.character.set.end.regexp",
131
				"keyword.operator.negation.regexp",
132
				"support.other.parenthesis.regexp"
133 134
			],
			"settings": {
135 136 137 138 139 140 141 142 143 144 145 146
				"foreground": "#d16969"
			}
		},
		{
			"scope": [
				"constant.character.character-class.regexp",
				"constant.other.character-class.set.regexp",
				"constant.other.character-class.regexp",
				"constant.character.set.regexp"
			],
			"settings": {
				"foreground": "#811f3f"
147 148 149 150 151
			}
		},
		{
			"scope": "keyword.operator.quantifier.regexp",
			"settings": {
152
				"foreground": "#000000"
153 154 155
			}
		},
		{
156 157 158 159
			"scope": [
				"keyword.operator.or.regexp",
				"keyword.control.anchor.regexp"
			],
160
			"settings": {
161
				"foreground": "#ff0000"
162
			}
163 164 165 166 167 168 169 170 171 172
		},
		{
			"scope": "constant.character",
			"settings": {
				"foreground": "#0000ff"
			}
		},
		{
			"scope": "constant.character.escape",
			"settings": {
173
				"foreground": "#ff0000"
174
			}
175 176
		},
		{
177
			"scope": "entity.name.label",
178 179 180
			"settings": {
				"foreground": "#000000"
			}
181 182
		}
	]
183
}