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

158 159
	]
}