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

166 167
	]
}