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