hc_black.json 2.4 KB
Newer Older
1
{
2 3 4
	"$schema": "vscode://schemas/color-theme",
	"name": "Dark High Contrast",
	"include": "./hc_black_defaults.json",
5 6 7 8
	"colors": {
		"selection.background": "#008000",
		"editor.selectionBackground": "#FFFFFF"
	},
9
	"tokenColors": [
10
		{
11
			"name": "Function declarations",
12
			"scope": [
13 14 15
				"entity.name.function",
				"support.function",
				"support.constant.handlebars"
16
			],
17
			"settings": {
18
				"foreground": "#DCDCAA"
19 20 21
			}
		},
		{
22
			"name": "Types declaration and references",
A
Alex Dima 已提交
23
			"scope": [
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
				"meta.return-type",
				"support.class",
				"support.type",
				"entity.name.type",
				"entity.name.class",
				"storage.type.cs",
				"storage.type.generic.cs",
				"storage.type.modifier.cs",
				"storage.type.variable.cs",
				"storage.type.annotation.java",
				"storage.type.generic.java",
				"storage.type.java",
				"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"
A
Alex Dima 已提交
47
			],
48
			"settings": {
49
				"foreground": "#4EC9B0"
50 51 52
			}
		},
		{
53
			"name": "Types declaration and references, TS grammar specific",
A
Alex Dima 已提交
54
			"scope": [
55 56 57 58 59 60
				"meta.type.cast.expr",
				"meta.type.new.expr",
				"support.constant.math",
				"support.constant.dom",
				"support.constant.json",
				"entity.other.inherited-class"
A
Alex Dima 已提交
61
			],
62
			"settings": {
63
				"foreground": "#4EC9B0"
64 65 66
			}
		},
		{
67 68
			"name": "Control flow keywords",
			"scope": "keyword.control",
69
			"settings": {
70
				"foreground": "#C586C0"
71 72
			}
		},
73
		{
74
			"name": "Variable and parameter name",
A
Alex Dima 已提交
75
			"scope": [
76 77 78
				"variable",
				"meta.definition.variable.name",
				"support.variable"
A
Alex Dima 已提交
79
			],
80
			"settings": {
81
				"foreground": "#9CDCFE"
82 83
			}
		},
84
		{
85
			"name": "Object keys, TS grammar specific",
86
			"scope": [
87
				"meta.object-literal.key"
88
			],
89
			"settings": {
90
				"foreground": "#9CDCFE"
91 92 93
			}
		},
		{
94
			"name": "CSS property value",
95
			"scope": [
96 97 98 99 100 101 102
				"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"
103
			],
104
			"settings": {
105
				"foreground": "#CE9178"
M
Martin Aeschlimann 已提交
106
			}
107 108 109
		}
	]
}