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