light_plus.json 2.8 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 83 84 85
			"name": "Object keys, TS grammar specific",
			"scope": [
				"meta.object-literal.key",
				"meta.object-literal.key entity.name.function"
			],
86 87 88 89
			"settings": {
				"foreground": "#001080"
			}
		},
M
Martin Aeschlimann 已提交
90 91 92
		{
			"name": "CSS property value",
			"scope": [
93 94 95 96 97 98 99
				"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 已提交
100 101 102 103
			],
			"settings": {
				"foreground": "#0451a5"
			}
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
		},
		{
			"scope": [
				"punctuation.definition.group.regexp",
				"punctuation.definition.group.assertion.regexp",
				"punctuation.definition.character-class.regexp",
				"keyword.operator.negation.regexp"
			],
			"settings": {
				"foreground": "#ff0000"
			}
		},
		{
			"scope": "keyword.operator.quantifier.regexp",
			"settings": {
				"foreground": "#0000ff"
			}
		},
		{
			"scope": "keyword.control.anchor.regexp",
			"settings": {
				"foreground": "#09885a"
			}
127 128 129
		}
	]
}