hc_black.json 2.5 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
			"name": "Control flow keywords",
A
Alex Ross 已提交
68 69 70 71
			"scope": [
				"keyword.control",
				"keyword.operator.new.cpp",
				"keyword.operator.delete.cpp",
72 73
				"keyword.other.using",
				"keyword.other.operator"
A
Alex Ross 已提交
74
			],
75
			"settings": {
76
				"foreground": "#C586C0"
77 78
			}
		},
79
		{
80
			"name": "Variable and parameter name",
A
Alex Dima 已提交
81
			"scope": [
82 83 84
				"variable",
				"meta.definition.variable.name",
				"support.variable"
A
Alex Dima 已提交
85
			],
86
			"settings": {
87
				"foreground": "#9CDCFE"
88 89
			}
		},
90
		{
91
			"name": "Object keys, TS grammar specific",
92
			"scope": [
93
				"meta.object-literal.key"
94
			],
95
			"settings": {
96
				"foreground": "#9CDCFE"
97 98 99
			}
		},
		{
100
			"name": "CSS property value",
101
			"scope": [
102 103 104 105 106 107 108
				"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"
109
			],
110
			"settings": {
111
				"foreground": "#CE9178"
M
Martin Aeschlimann 已提交
112
			}
113 114 115
		}
	]
}